Skip to content

Commit 75bc67d

Browse files
committed
Update TODO comments
1 parent 7735ebc commit 75bc67d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

GraphQLGrammar.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1070,7 +1070,8 @@ struct build_ast<grammar::directive_definition>
10701070

10711071
// TODO: The GraphQLParser AST only has support for TypeExtensionDefinition, so we can't implement all of the
10721072
// extension types in the grammar's type_system_extension. I'm going to wait until I implement my own AST to
1073-
// generate them, I don't support them in the SchemaGenerator anyway.
1073+
// generate them, I don't support them in the SchemaGenerator anyway. Alternatively, maybe I can bypass the AST
1074+
// entirely and drive the whole service based on pegtl actions.
10741075

10751076
template <>
10761077
struct build_ast<grammar::document>

SchemaGenerator.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ Generator::Generator()
4242
, _filenamePrefix("Introspection")
4343
, _schemaNamespace(s_introspectionNamespace)
4444
{
45+
// TODO: Double check that this still matches the spec
4546
auto ast = service::parseString(R"gql(
4647
# Introspection Schema
4748

0 commit comments

Comments
 (0)