File tree 10 files changed +962
-892
lines changed
10 files changed +962
-892
lines changed Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -339,7 +339,7 @@ extern int yylex \
339
339
#undef YY_DECL
340
340
#endif
341
341
342
- #line 155 "lexer.lpp"
342
+ #line 156 "lexer.lpp"
343
343
344
344
345
345
#line 346 "lexer.h"
Original file line number Diff line number Diff line change @@ -115,6 +115,7 @@ notnewline [^\n\r]
115
115
null { yylval->str = yytext; *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_NULL; }
116
116
on { yylval->str = yytext; *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_ON; }
117
117
query { yylval->str = yytext; *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_QUERY; }
118
+ subscription { yylval->str = yytext; *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_SUBSCRIPTION; }
118
119
true { yylval->str = yytext; *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_TRUE; }
119
120
120
121
{INTEGER} { yylval->str = yytext; *yylloc = yyextra->loc; return yy::GraphQLParserImpl::token::TOK_INTEGER; }
Original file line number Diff line number Diff line change 31
31
// version 2.2 of Bison.
32
32
33
33
/* *
34
- ** \file location.hh
34
+ ** \file /Users/swolchok/libgraphqlparser/ location.hh
35
35
** Define the yy::location class.
36
36
*/
37
37
38
- #ifndef YY_YY_LOCATION_HH_INCLUDED
39
- # define YY_YY_LOCATION_HH_INCLUDED
38
+ #ifndef YY_YY_USERS_SWOLCHOK_LIBGRAPHQLPARSER_LOCATION_HH_INCLUDED
39
+ # define YY_YY_USERS_SWOLCHOK_LIBGRAPHQLPARSER_LOCATION_HH_INCLUDED
40
40
41
41
# include " position.hh"
42
42
43
43
44
44
namespace yy {
45
- #line 46 "location.hh" // location.cc:337
45
+ #line 46 "/Users/swolchok/libgraphqlparser/ location.hh" // location.cc:337
46
46
// / Abstract a location.
47
47
class location
48
48
{
@@ -188,5 +188,5 @@ namespace yy {
188
188
189
189
190
190
} // yy
191
- #line 192 "location.hh" // location.cc:337
192
- #endif // !YY_YY_LOCATION_HH_INCLUDED
191
+ #line 192 "/Users/swolchok/libgraphqlparser/ location.hh" // location.cc:337
192
+ #endif // !YY_YY_USERS_SWOLCHOK_LIBGRAPHQLPARSER_LOCATION_HH_INCLUDED
You can’t perform that action at this time.
0 commit comments