graphql-c_parser 1.1.0 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ext/graphql_c_parser_ext/graphql_c_parser_ext.c +3 -3
- data/ext/graphql_c_parser_ext/lexer.c +149 -104
- data/ext/graphql_c_parser_ext/lexer.h +1 -1
- data/ext/graphql_c_parser_ext/parser.c +435 -428
- data/lib/graphql/c_parser/version.rb +1 -1
- data/lib/graphql/c_parser.rb +27 -12
- metadata +3 -3
@@ -1,6 +1,6 @@
|
|
1
1
|
#ifndef Graphql_lexer_h
|
2
2
|
#define Graphql_lexer_h
|
3
3
|
#include <ruby.h>
|
4
|
-
VALUE tokenize(VALUE query_rbstr, int fstring_identifiers);
|
4
|
+
VALUE tokenize(VALUE query_rbstr, int fstring_identifiers, int reject_numbers_followed_by_names, int max_tokens);
|
5
5
|
void setup_static_token_variables();
|
6
6
|
#endif
|