@aml-org/amf-antlr-parsers 0.0.1

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.
Files changed (32) hide show
  1. package/index.js +9 -0
  2. package/lib/internal/graphql/GraphQL.interp +223 -0
  3. package/lib/internal/graphql/GraphQL.tokens +130 -0
  4. package/lib/internal/graphql/GraphQLLexer.interp +239 -0
  5. package/lib/internal/graphql/GraphQLLexer.js +264 -0
  6. package/lib/internal/graphql/GraphQLLexer.tokens +130 -0
  7. package/lib/internal/graphql/GraphQLListener.js +727 -0
  8. package/lib/internal/graphql/GraphQLParser.js +8018 -0
  9. package/lib/internal/graphqlcb.js +90 -0
  10. package/lib/internal/graphqlcb.m.js +34 -0
  11. package/lib/internal/graphqlfederation/GraphQLFederation.interp +253 -0
  12. package/lib/internal/graphqlfederation/GraphQLFederation.tokens +148 -0
  13. package/lib/internal/graphqlfederation/GraphQLFederationLexer.interp +344 -0
  14. package/lib/internal/graphqlfederation/GraphQLFederationLexer.js +300 -0
  15. package/lib/internal/graphqlfederation/GraphQLFederationLexer.tokens +152 -0
  16. package/lib/internal/graphqlfederation/GraphQLFederationListener.js +823 -0
  17. package/lib/internal/graphqlfederation/GraphQLFederationParser.interp +324 -0
  18. package/lib/internal/graphqlfederation/GraphQLFederationParser.js +12033 -0
  19. package/lib/internal/graphqlfederation/GraphQLFederationParser.tokens +152 -0
  20. package/lib/internal/graphqlfederation/GraphQLFederationParserListener.js +975 -0
  21. package/lib/internal/graphqlfederationcb.js +90 -0
  22. package/lib/internal/graphqlfederationcb.m.js +35 -0
  23. package/lib/internal/proto3/Protobuf3.interp +200 -0
  24. package/lib/internal/proto3/Protobuf3.tokens +128 -0
  25. package/lib/internal/proto3/Protobuf3Lexer.interp +234 -0
  26. package/lib/internal/proto3/Protobuf3Lexer.js +262 -0
  27. package/lib/internal/proto3/Protobuf3Lexer.tokens +128 -0
  28. package/lib/internal/proto3/Protobuf3Listener.js +575 -0
  29. package/lib/internal/proto3/Protobuf3Parser.js +6767 -0
  30. package/lib/internal/protobuf3cb.js +90 -0
  31. package/lib/internal/protobuf3cb.m.js +34 -0
  32. package/package.json +23 -0
@@ -0,0 +1,90 @@
1
+ "use strict";
2
+
3
+ function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
4
+
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.GraphqlFederationASTBuilderCB = void 0;
9
+
10
+ var _antlr = _interopRequireDefault(require("antlr4"));
11
+
12
+ var _GraphQLFederationLexer = _interopRequireDefault(require("./graphqlfederation/GraphQLFederationLexer.js"));
13
+
14
+ var _GraphQLFederationParser = _interopRequireDefault(require("./graphqlfederation/GraphQLFederationParser.js"));
15
+
16
+ var _GraphQLFederationListener = _interopRequireDefault(require("./graphqlfederation/GraphQLFederationListener.js"));
17
+
18
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
19
+
20
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
21
+
22
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
23
+
24
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
25
+
26
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
27
+
28
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
29
+
30
+ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
31
+
32
+ function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
33
+
34
+ function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
35
+
36
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
37
+
38
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
39
+
40
+ var GraphqlFederationASTBuilderCB = /*#__PURE__*/function (_GraphqlFederationLis) {
41
+ _inherits(GraphqlFederationASTBuilderCB, _GraphqlFederationLis);
42
+
43
+ var _super = _createSuper(GraphqlFederationASTBuilderCB);
44
+
45
+ function GraphqlFederationASTBuilderCB() {
46
+ _classCallCheck(this, GraphqlFederationASTBuilderCB);
47
+
48
+ return _super.apply(this, arguments);
49
+ }
50
+
51
+ _createClass(GraphqlFederationASTBuilderCB, [{
52
+ key: "visitTerminal",
53
+ value: function visitTerminal(node) {
54
+ this.cb.visitTerminal(node, this.parser);
55
+ }
56
+ }, {
57
+ key: "visitErrorNode",
58
+ value: function visitErrorNode(node) {
59
+ this.cb.visitErrorNode(node, this.parser);
60
+ }
61
+ }, {
62
+ key: "enterEveryRule",
63
+ value: function enterEveryRule(node) {
64
+ this.cb.enterEveryRule(node, this.parser);
65
+ }
66
+ }, {
67
+ key: "exitEveryRule",
68
+ value: function exitEveryRule(node) {
69
+ this.cb.exitEveryRule();
70
+ }
71
+ }, {
72
+ key: "run",
73
+ value: function run(input, cb) {
74
+ this.cb = cb;
75
+ var chars = new _antlr["default"].InputStream(input);
76
+ var lexer = new _GraphQLFederationLexer["default"](chars);
77
+ var tokens = new _antlr["default"].CommonTokenStream(lexer);
78
+ this.parser = new _GraphQLFederationParser["default"](tokens);
79
+ this.parser.buildParseTrees = true;
80
+ var tree = this.parser.document();
81
+
82
+ _antlr["default"].tree.ParseTreeWalker.DEFAULT.walk(this, tree);
83
+ }
84
+ }]);
85
+
86
+ return GraphqlFederationASTBuilderCB;
87
+ }(_GraphQLFederationListener["default"]);
88
+
89
+ exports.GraphqlFederationASTBuilderCB = GraphqlFederationASTBuilderCB;
90
+
@@ -0,0 +1,35 @@
1
+ import antlr4 from 'antlr4';
2
+ import GraphqlFederationLexer from './graphqlfederation/GraphQLFederationLexer.js';
3
+ import GraphqlFederationParser from './graphqlfederation/GraphQLFederationParser.js';
4
+ import GraphqlFederationListener from './graphqlfederation/GraphQLFederationListener.js';
5
+
6
+ export class GraphqlFederationASTBuilderCB extends GraphqlFederationListener {
7
+
8
+ visitTerminal(node) {
9
+ this.cb.visitTerminal(node, this.parser)
10
+ }
11
+
12
+ visitErrorNode(node) {
13
+ this.cb.visitErrorNode(node, this.parser)
14
+ }
15
+
16
+ enterEveryRule(node) {
17
+ this.cb.enterEveryRule(node, this.parser)
18
+ }
19
+
20
+
21
+ exitEveryRule(node) {
22
+ this.cb.exitEveryRule()
23
+ }
24
+
25
+ run(input, cb) {
26
+ this.cb = cb;
27
+ const chars = new antlr4.InputStream(input);
28
+ const lexer = new GraphqlFederationLexer(chars);
29
+ const tokens = new antlr4.CommonTokenStream(lexer);
30
+ this.parser = new GraphqlFederationParser(tokens);
31
+ this.parser.buildParseTrees = true;
32
+ const tree = this.parser.document();
33
+ antlr4.tree.ParseTreeWalker.DEFAULT.walk(this, tree);
34
+ }
35
+ }
@@ -0,0 +1,200 @@
1
+ token literal names:
2
+ null
3
+ 'google.protobuf.FieldOptions'
4
+ 'google.protobuf.EnumOptions'
5
+ 'google.protobuf.EnumValueOptions'
6
+ 'google.protobuf.ExtensionRangeOptions'
7
+ 'google.protobuf.MessageOptions'
8
+ 'google.protobuf.MethodOptions'
9
+ 'google.protobuf.ServiceOptions'
10
+ 'google.protobuf.FileOptions'
11
+ 'google.protobuf.OneofOptions'
12
+ 'syntax'
13
+ 'import'
14
+ 'extend'
15
+ 'weak'
16
+ 'public'
17
+ 'package'
18
+ 'option'
19
+ 'repeated'
20
+ 'oneof'
21
+ 'map'
22
+ 'int32'
23
+ 'int64'
24
+ 'uint32'
25
+ 'uint64'
26
+ 'sint32'
27
+ 'sint64'
28
+ 'fixed32'
29
+ 'fixed64'
30
+ 'sfixed32'
31
+ 'sfixed64'
32
+ 'bool'
33
+ 'string'
34
+ 'double'
35
+ 'float'
36
+ 'bytes'
37
+ 'reserved'
38
+ 'to'
39
+ 'max'
40
+ 'enum'
41
+ 'message'
42
+ 'service'
43
+ 'rpc'
44
+ 'stream'
45
+ 'returns'
46
+ '"proto3"'
47
+ '\'proto3\''
48
+ ';'
49
+ '='
50
+ '('
51
+ ')'
52
+ '['
53
+ ']'
54
+ '{'
55
+ '}'
56
+ '<'
57
+ '>'
58
+ '.'
59
+ ','
60
+ ':'
61
+ '+'
62
+ '-'
63
+ null
64
+ null
65
+ null
66
+ null
67
+ null
68
+ null
69
+ null
70
+ null
71
+
72
+ token symbolic names:
73
+ null
74
+ FIELD_OPTIONS
75
+ ENUM_OPTIONS
76
+ ENUM_VALUE_OPTIONS
77
+ EXTENSION_RANGE_OPTIONS
78
+ MESSAGE_OPTIONS
79
+ METHOD_OPTIONS
80
+ SERVICE_OPTIONS
81
+ FILE_OPTIONS
82
+ ONEOF_OPTIONS
83
+ SYNTAX
84
+ IMPORT
85
+ EXTEND
86
+ WEAK
87
+ PUBLIC
88
+ PACKAGE
89
+ OPTION
90
+ REPEATED
91
+ ONEOF
92
+ MAP
93
+ INT32
94
+ INT64
95
+ UINT32
96
+ UINT64
97
+ SINT32
98
+ SINT64
99
+ FIXED32
100
+ FIXED64
101
+ SFIXED32
102
+ SFIXED64
103
+ BOOL
104
+ STRING
105
+ DOUBLE
106
+ FLOAT
107
+ BYTES
108
+ RESERVED
109
+ TO
110
+ MAX
111
+ ENUM
112
+ MESSAGE
113
+ SERVICE
114
+ RPC
115
+ STREAM
116
+ RETURNS
117
+ PROTO3_LIT_SINGLE
118
+ PROTO3_LIT_DOBULE
119
+ SEMI
120
+ EQ
121
+ LP
122
+ RP
123
+ LB
124
+ RB
125
+ LC
126
+ RC
127
+ LT
128
+ GT
129
+ DOT
130
+ COMMA
131
+ COLON
132
+ PLUS
133
+ MINUS
134
+ STR_LIT
135
+ BOOL_LIT
136
+ FLOAT_LIT
137
+ INT_LIT
138
+ IDENTIFIER
139
+ WS
140
+ LINE_COMMENT
141
+ COMMENT
142
+
143
+ rule names:
144
+ proto
145
+ syntax
146
+ importStatement
147
+ packageStatement
148
+ optionStatement
149
+ optionName
150
+ extendsStatement
151
+ extendedIdentifier
152
+ field
153
+ fieldOptions
154
+ fieldOption
155
+ fieldNumber
156
+ oneof
157
+ oneofField
158
+ mapField
159
+ keyType
160
+ type_
161
+ reserved
162
+ ranges
163
+ range_
164
+ reservedFieldNames
165
+ topLevelDef
166
+ enumDef
167
+ enumBody
168
+ enumElement
169
+ enumField
170
+ enumValueOptions
171
+ enumValueOption
172
+ messageDef
173
+ messageBody
174
+ messageElement
175
+ serviceDef
176
+ serviceElement
177
+ rpc
178
+ constant
179
+ blockLit
180
+ emptyStatement
181
+ ident
182
+ fullIdent
183
+ messageName
184
+ enumName
185
+ fieldName
186
+ oneofName
187
+ mapName
188
+ serviceName
189
+ rpcName
190
+ messageType
191
+ enumType
192
+ intLit
193
+ strLit
194
+ boolLit
195
+ floatLit
196
+ keywords
197
+
198
+
199
+ atn:
200
+ [3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 70, 495, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 7, 2, 116, 10, 2, 12, 2, 14, 2, 119, 11, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 5, 4, 128, 10, 4, 3, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 5, 3, 5, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 5, 7, 149, 10, 7, 5, 7, 151, 10, 7, 3, 8, 3, 8, 3, 8, 3, 8, 6, 8, 157, 10, 8, 13, 8, 14, 8, 158, 3, 8, 3, 8, 5, 8, 163, 10, 8, 3, 9, 3, 9, 3, 10, 5, 10, 168, 10, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 5, 10, 178, 10, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 7, 11, 185, 10, 11, 12, 11, 14, 11, 188, 11, 11, 3, 12, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 7, 14, 202, 10, 14, 12, 14, 14, 14, 205, 11, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 5, 15, 217, 10, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 5, 16, 234, 10, 16, 3, 16, 3, 16, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 5, 18, 257, 10, 18, 3, 19, 3, 19, 3, 19, 5, 19, 262, 10, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 7, 20, 269, 10, 20, 12, 20, 14, 20, 272, 11, 20, 3, 21, 3, 21, 3, 21, 3, 21, 5, 21, 278, 10, 21, 5, 21, 280, 10, 21, 3, 22, 3, 22, 3, 22, 7, 22, 285, 10, 22, 12, 22, 14, 22, 288, 11, 22, 3, 23, 3, 23, 3, 23, 5, 23, 293, 10, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 7, 25, 301, 10, 25, 12, 25, 14, 25, 304, 11, 25, 3, 25, 3, 25, 3, 26, 3, 26, 3, 26, 5, 26, 311, 10, 26, 3, 27, 3, 27, 3, 27, 5, 27, 316, 10, 27, 3, 27, 3, 27, 5, 27, 320, 10, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 28, 7, 28, 328, 10, 28, 12, 28, 14, 28, 331, 11, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 31, 3, 31, 7, 31, 345, 10, 31, 12, 31, 14, 31, 348, 11, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 5, 32, 360, 10, 32, 3, 33, 3, 33, 3, 33, 3, 33, 7, 33, 366, 10, 33, 12, 33, 14, 33, 369, 11, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 5, 34, 376, 10, 34, 3, 35, 3, 35, 3, 35, 3, 35, 5, 35, 382, 10, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 5, 35, 389, 10, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 7, 35, 396, 10, 35, 12, 35, 14, 35, 399, 11, 35, 3, 35, 3, 35, 5, 35, 403, 10, 35, 3, 36, 3, 36, 5, 36, 407, 10, 36, 3, 36, 3, 36, 5, 36, 411, 10, 36, 3, 36, 3, 36, 3, 36, 3, 36, 5, 36, 417, 10, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 7, 37, 424, 10, 37, 12, 37, 14, 37, 427, 11, 37, 3, 37, 3, 37, 3, 38, 3, 38, 3, 39, 3, 39, 5, 39, 435, 10, 39, 3, 40, 3, 40, 3, 40, 7, 40, 440, 10, 40, 12, 40, 14, 40, 443, 11, 40, 3, 41, 3, 41, 3, 42, 3, 42, 3, 43, 3, 43, 3, 44, 3, 44, 3, 45, 3, 45, 3, 46, 3, 46, 3, 47, 3, 47, 3, 48, 5, 48, 460, 10, 48, 3, 48, 3, 48, 3, 48, 7, 48, 465, 10, 48, 12, 48, 14, 48, 468, 11, 48, 3, 48, 3, 48, 3, 49, 5, 49, 473, 10, 49, 3, 49, 3, 49, 3, 49, 7, 49, 478, 10, 49, 12, 49, 14, 49, 481, 11, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 51, 3, 51, 3, 52, 3, 52, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 2, 2, 55, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 2, 9, 3, 2, 46, 47, 3, 2, 15, 16, 3, 2, 3, 11, 3, 2, 22, 33, 3, 2, 61, 62, 4, 2, 46, 47, 63, 63, 5, 2, 12, 13, 15, 45, 64, 64, 2, 519, 2, 108, 3, 2, 2, 2, 4, 120, 3, 2, 2, 2, 6, 125, 3, 2, 2, 2, 8, 132, 3, 2, 2, 2, 10, 136, 3, 2, 2, 2, 12, 150, 3, 2, 2, 2, 14, 152, 3, 2, 2, 2, 16, 164, 3, 2, 2, 2, 18, 167, 3, 2, 2, 2, 20, 181, 3, 2, 2, 2, 22, 189, 3, 2, 2, 2, 24, 193, 3, 2, 2, 2, 26, 195, 3, 2, 2, 2, 28, 208, 3, 2, 2, 2, 30, 220, 3, 2, 2, 2, 32, 237, 3, 2, 2, 2, 34, 256, 3, 2, 2, 2, 36, 258, 3, 2, 2, 2, 38, 265, 3, 2, 2, 2, 40, 273, 3, 2, 2, 2, 42, 281, 3, 2, 2, 2, 44, 292, 3, 2, 2, 2, 46, 294, 3, 2, 2, 2, 48, 298, 3, 2, 2, 2, 50, 310, 3, 2, 2, 2, 52, 312, 3, 2, 2, 2, 54, 323, 3, 2, 2, 2, 56, 334, 3, 2, 2, 2, 58, 338, 3, 2, 2, 2, 60, 342, 3, 2, 2, 2, 62, 359, 3, 2, 2, 2, 64, 361, 3, 2, 2, 2, 66, 375, 3, 2, 2, 2, 68, 377, 3, 2, 2, 2, 70, 416, 3, 2, 2, 2, 72, 418, 3, 2, 2, 2, 74, 430, 3, 2, 2, 2, 76, 434, 3, 2, 2, 2, 78, 436, 3, 2, 2, 2, 80, 444, 3, 2, 2, 2, 82, 446, 3, 2, 2, 2, 84, 448, 3, 2, 2, 2, 86, 450, 3, 2, 2, 2, 88, 452, 3, 2, 2, 2, 90, 454, 3, 2, 2, 2, 92, 456, 3, 2, 2, 2, 94, 459, 3, 2, 2, 2, 96, 472, 3, 2, 2, 2, 98, 484, 3, 2, 2, 2, 100, 486, 3, 2, 2, 2, 102, 488, 3, 2, 2, 2, 104, 490, 3, 2, 2, 2, 106, 492, 3, 2, 2, 2, 108, 117, 5, 4, 3, 2, 109, 116, 5, 6, 4, 2, 110, 116, 5, 8, 5, 2, 111, 116, 5, 10, 6, 2, 112, 116, 5, 14, 8, 2, 113, 116, 5, 44, 23, 2, 114, 116, 5, 74, 38, 2, 115, 109, 3, 2, 2, 2, 115, 110, 3, 2, 2, 2, 115, 111, 3, 2, 2, 2, 115, 112, 3, 2, 2, 2, 115, 113, 3, 2, 2, 2, 115, 114, 3, 2, 2, 2, 116, 119, 3, 2, 2, 2, 117, 115, 3, 2, 2, 2, 117, 118, 3, 2, 2, 2, 118, 3, 3, 2, 2, 2, 119, 117, 3, 2, 2, 2, 120, 121, 7, 12, 2, 2, 121, 122, 7, 49, 2, 2, 122, 123, 9, 2, 2, 2, 123, 124, 7, 48, 2, 2, 124, 5, 3, 2, 2, 2, 125, 127, 7, 13, 2, 2, 126, 128, 9, 3, 2, 2, 127, 126, 3, 2, 2, 2, 127, 128, 3, 2, 2, 2, 128, 129, 3, 2, 2, 2, 129, 130, 5, 100, 51, 2, 130, 131, 7, 48, 2, 2, 131, 7, 3, 2, 2, 2, 132, 133, 7, 17, 2, 2, 133, 134, 5, 78, 40, 2, 134, 135, 7, 48, 2, 2, 135, 9, 3, 2, 2, 2, 136, 137, 7, 18, 2, 2, 137, 138, 5, 12, 7, 2, 138, 139, 7, 49, 2, 2, 139, 140, 5, 70, 36, 2, 140, 141, 7, 48, 2, 2, 141, 11, 3, 2, 2, 2, 142, 151, 5, 78, 40, 2, 143, 144, 7, 50, 2, 2, 144, 145, 5, 78, 40, 2, 145, 148, 7, 51, 2, 2, 146, 147, 7, 58, 2, 2, 147, 149, 5, 78, 40, 2, 148, 146, 3, 2, 2, 2, 148, 149, 3, 2, 2, 2, 149, 151, 3, 2, 2, 2, 150, 142, 3, 2, 2, 2, 150, 143, 3, 2, 2, 2, 151, 13, 3, 2, 2, 2, 152, 153, 7, 14, 2, 2, 153, 154, 5, 16, 9, 2, 154, 156, 7, 54, 2, 2, 155, 157, 5, 18, 10, 2, 156, 155, 3, 2, 2, 2, 157, 158, 3, 2, 2, 2, 158, 156, 3, 2, 2, 2, 158, 159, 3, 2, 2, 2, 159, 160, 3, 2, 2, 2, 160, 162, 7, 55, 2, 2, 161, 163, 7, 48, 2, 2, 162, 161, 3, 2, 2, 2, 162, 163, 3, 2, 2, 2, 163, 15, 3, 2, 2, 2, 164, 165, 9, 4, 2, 2, 165, 17, 3, 2, 2, 2, 166, 168, 7, 19, 2, 2, 167, 166, 3, 2, 2, 2, 167, 168, 3, 2, 2, 2, 168, 169, 3, 2, 2, 2, 169, 170, 5, 34, 18, 2, 170, 171, 5, 84, 43, 2, 171, 172, 7, 49, 2, 2, 172, 177, 5, 24, 13, 2, 173, 174, 7, 52, 2, 2, 174, 175, 5, 20, 11, 2, 175, 176, 7, 53, 2, 2, 176, 178, 3, 2, 2, 2, 177, 173, 3, 2, 2, 2, 177, 178, 3, 2, 2, 2, 178, 179, 3, 2, 2, 2, 179, 180, 7, 48, 2, 2, 180, 19, 3, 2, 2, 2, 181, 186, 5, 22, 12, 2, 182, 183, 7, 59, 2, 2, 183, 185, 5, 22, 12, 2, 184, 182, 3, 2, 2, 2, 185, 188, 3, 2, 2, 2, 186, 184, 3, 2, 2, 2, 186, 187, 3, 2, 2, 2, 187, 21, 3, 2, 2, 2, 188, 186, 3, 2, 2, 2, 189, 190, 5, 12, 7, 2, 190, 191, 7, 49, 2, 2, 191, 192, 5, 70, 36, 2, 192, 23, 3, 2, 2, 2, 193, 194, 5, 98, 50, 2, 194, 25, 3, 2, 2, 2, 195, 196, 7, 20, 2, 2, 196, 197, 5, 86, 44, 2, 197, 203, 7, 54, 2, 2, 198, 202, 5, 10, 6, 2, 199, 202, 5, 28, 15, 2, 200, 202, 5, 74, 38, 2, 201, 198, 3, 2, 2, 2, 201, 199, 3, 2, 2, 2, 201, 200, 3, 2, 2, 2, 202, 205, 3, 2, 2, 2, 203, 201, 3, 2, 2, 2, 203, 204, 3, 2, 2, 2, 204, 206, 3, 2, 2, 2, 205, 203, 3, 2, 2, 2, 206, 207, 7, 55, 2, 2, 207, 27, 3, 2, 2, 2, 208, 209, 5, 34, 18, 2, 209, 210, 5, 84, 43, 2, 210, 211, 7, 49, 2, 2, 211, 216, 5, 24, 13, 2, 212, 213, 7, 52, 2, 2, 213, 214, 5, 20, 11, 2, 214, 215, 7, 53, 2, 2, 215, 217, 3, 2, 2, 2, 216, 212, 3, 2, 2, 2, 216, 217, 3, 2, 2, 2, 217, 218, 3, 2, 2, 2, 218, 219, 7, 48, 2, 2, 219, 29, 3, 2, 2, 2, 220, 221, 7, 21, 2, 2, 221, 222, 7, 56, 2, 2, 222, 223, 5, 32, 17, 2, 223, 224, 7, 59, 2, 2, 224, 225, 5, 34, 18, 2, 225, 226, 7, 57, 2, 2, 226, 227, 5, 88, 45, 2, 227, 228, 7, 49, 2, 2, 228, 233, 5, 24, 13, 2, 229, 230, 7, 52, 2, 2, 230, 231, 5, 20, 11, 2, 231, 232, 7, 53, 2, 2, 232, 234, 3, 2, 2, 2, 233, 229, 3, 2, 2, 2, 233, 234, 3, 2, 2, 2, 234, 235, 3, 2, 2, 2, 235, 236, 7, 48, 2, 2, 236, 31, 3, 2, 2, 2, 237, 238, 9, 5, 2, 2, 238, 33, 3, 2, 2, 2, 239, 257, 7, 34, 2, 2, 240, 257, 7, 35, 2, 2, 241, 257, 7, 22, 2, 2, 242, 257, 7, 23, 2, 2, 243, 257, 7, 24, 2, 2, 244, 257, 7, 25, 2, 2, 245, 257, 7, 26, 2, 2, 246, 257, 7, 27, 2, 2, 247, 257, 7, 28, 2, 2, 248, 257, 7, 29, 2, 2, 249, 257, 7, 30, 2, 2, 250, 257, 7, 31, 2, 2, 251, 257, 7, 32, 2, 2, 252, 257, 7, 33, 2, 2, 253, 257, 7, 36, 2, 2, 254, 257, 5, 94, 48, 2, 255, 257, 5, 96, 49, 2, 256, 239, 3, 2, 2, 2, 256, 240, 3, 2, 2, 2, 256, 241, 3, 2, 2, 2, 256, 242, 3, 2, 2, 2, 256, 243, 3, 2, 2, 2, 256, 244, 3, 2, 2, 2, 256, 245, 3, 2, 2, 2, 256, 246, 3, 2, 2, 2, 256, 247, 3, 2, 2, 2, 256, 248, 3, 2, 2, 2, 256, 249, 3, 2, 2, 2, 256, 250, 3, 2, 2, 2, 256, 251, 3, 2, 2, 2, 256, 252, 3, 2, 2, 2, 256, 253, 3, 2, 2, 2, 256, 254, 3, 2, 2, 2, 256, 255, 3, 2, 2, 2, 257, 35, 3, 2, 2, 2, 258, 261, 7, 37, 2, 2, 259, 262, 5, 38, 20, 2, 260, 262, 5, 42, 22, 2, 261, 259, 3, 2, 2, 2, 261, 260, 3, 2, 2, 2, 262, 263, 3, 2, 2, 2, 263, 264, 7, 48, 2, 2, 264, 37, 3, 2, 2, 2, 265, 270, 5, 40, 21, 2, 266, 267, 7, 59, 2, 2, 267, 269, 5, 40, 21, 2, 268, 266, 3, 2, 2, 2, 269, 272, 3, 2, 2, 2, 270, 268, 3, 2, 2, 2, 270, 271, 3, 2, 2, 2, 271, 39, 3, 2, 2, 2, 272, 270, 3, 2, 2, 2, 273, 279, 5, 98, 50, 2, 274, 277, 7, 38, 2, 2, 275, 278, 5, 98, 50, 2, 276, 278, 7, 39, 2, 2, 277, 275, 3, 2, 2, 2, 277, 276, 3, 2, 2, 2, 278, 280, 3, 2, 2, 2, 279, 274, 3, 2, 2, 2, 279, 280, 3, 2, 2, 2, 280, 41, 3, 2, 2, 2, 281, 286, 5, 100, 51, 2, 282, 283, 7, 59, 2, 2, 283, 285, 5, 100, 51, 2, 284, 282, 3, 2, 2, 2, 285, 288, 3, 2, 2, 2, 286, 284, 3, 2, 2, 2, 286, 287, 3, 2, 2, 2, 287, 43, 3, 2, 2, 2, 288, 286, 3, 2, 2, 2, 289, 293, 5, 58, 30, 2, 290, 293, 5, 46, 24, 2, 291, 293, 5, 64, 33, 2, 292, 289, 3, 2, 2, 2, 292, 290, 3, 2, 2, 2, 292, 291, 3, 2, 2, 2, 293, 45, 3, 2, 2, 2, 294, 295, 7, 40, 2, 2, 295, 296, 5, 82, 42, 2, 296, 297, 5, 48, 25, 2, 297, 47, 3, 2, 2, 2, 298, 302, 7, 54, 2, 2, 299, 301, 5, 50, 26, 2, 300, 299, 3, 2, 2, 2, 301, 304, 3, 2, 2, 2, 302, 300, 3, 2, 2, 2, 302, 303, 3, 2, 2, 2, 303, 305, 3, 2, 2, 2, 304, 302, 3, 2, 2, 2, 305, 306, 7, 55, 2, 2, 306, 49, 3, 2, 2, 2, 307, 311, 5, 10, 6, 2, 308, 311, 5, 52, 27, 2, 309, 311, 5, 74, 38, 2, 310, 307, 3, 2, 2, 2, 310, 308, 3, 2, 2, 2, 310, 309, 3, 2, 2, 2, 311, 51, 3, 2, 2, 2, 312, 313, 5, 76, 39, 2, 313, 315, 7, 49, 2, 2, 314, 316, 7, 62, 2, 2, 315, 314, 3, 2, 2, 2, 315, 316, 3, 2, 2, 2, 316, 317, 3, 2, 2, 2, 317, 319, 5, 98, 50, 2, 318, 320, 5, 54, 28, 2, 319, 318, 3, 2, 2, 2, 319, 320, 3, 2, 2, 2, 320, 321, 3, 2, 2, 2, 321, 322, 7, 48, 2, 2, 322, 53, 3, 2, 2, 2, 323, 324, 7, 52, 2, 2, 324, 329, 5, 56, 29, 2, 325, 326, 7, 59, 2, 2, 326, 328, 5, 56, 29, 2, 327, 325, 3, 2, 2, 2, 328, 331, 3, 2, 2, 2, 329, 327, 3, 2, 2, 2, 329, 330, 3, 2, 2, 2, 330, 332, 3, 2, 2, 2, 331, 329, 3, 2, 2, 2, 332, 333, 7, 53, 2, 2, 333, 55, 3, 2, 2, 2, 334, 335, 5, 12, 7, 2, 335, 336, 7, 49, 2, 2, 336, 337, 5, 70, 36, 2, 337, 57, 3, 2, 2, 2, 338, 339, 7, 41, 2, 2, 339, 340, 5, 80, 41, 2, 340, 341, 5, 60, 31, 2, 341, 59, 3, 2, 2, 2, 342, 346, 7, 54, 2, 2, 343, 345, 5, 62, 32, 2, 344, 343, 3, 2, 2, 2, 345, 348, 3, 2, 2, 2, 346, 344, 3, 2, 2, 2, 346, 347, 3, 2, 2, 2, 347, 349, 3, 2, 2, 2, 348, 346, 3, 2, 2, 2, 349, 350, 7, 55, 2, 2, 350, 61, 3, 2, 2, 2, 351, 360, 5, 18, 10, 2, 352, 360, 5, 46, 24, 2, 353, 360, 5, 58, 30, 2, 354, 360, 5, 10, 6, 2, 355, 360, 5, 26, 14, 2, 356, 360, 5, 30, 16, 2, 357, 360, 5, 36, 19, 2, 358, 360, 5, 74, 38, 2, 359, 351, 3, 2, 2, 2, 359, 352, 3, 2, 2, 2, 359, 353, 3, 2, 2, 2, 359, 354, 3, 2, 2, 2, 359, 355, 3, 2, 2, 2, 359, 356, 3, 2, 2, 2, 359, 357, 3, 2, 2, 2, 359, 358, 3, 2, 2, 2, 360, 63, 3, 2, 2, 2, 361, 362, 7, 42, 2, 2, 362, 363, 5, 90, 46, 2, 363, 367, 7, 54, 2, 2, 364, 366, 5, 66, 34, 2, 365, 364, 3, 2, 2, 2, 366, 369, 3, 2, 2, 2, 367, 365, 3, 2, 2, 2, 367, 368, 3, 2, 2, 2, 368, 370, 3, 2, 2, 2, 369, 367, 3, 2, 2, 2, 370, 371, 7, 55, 2, 2, 371, 65, 3, 2, 2, 2, 372, 376, 5, 10, 6, 2, 373, 376, 5, 68, 35, 2, 374, 376, 5, 74, 38, 2, 375, 372, 3, 2, 2, 2, 375, 373, 3, 2, 2, 2, 375, 374, 3, 2, 2, 2, 376, 67, 3, 2, 2, 2, 377, 378, 7, 43, 2, 2, 378, 379, 5, 92, 47, 2, 379, 381, 7, 50, 2, 2, 380, 382, 7, 44, 2, 2, 381, 380, 3, 2, 2, 2, 381, 382, 3, 2, 2, 2, 382, 383, 3, 2, 2, 2, 383, 384, 5, 94, 48, 2, 384, 385, 7, 51, 2, 2, 385, 386, 7, 45, 2, 2, 386, 388, 7, 50, 2, 2, 387, 389, 7, 44, 2, 2, 388, 387, 3, 2, 2, 2, 388, 389, 3, 2, 2, 2, 389, 390, 3, 2, 2, 2, 390, 391, 5, 94, 48, 2, 391, 402, 7, 51, 2, 2, 392, 397, 7, 54, 2, 2, 393, 396, 5, 10, 6, 2, 394, 396, 5, 74, 38, 2, 395, 393, 3, 2, 2, 2, 395, 394, 3, 2, 2, 2, 396, 399, 3, 2, 2, 2, 397, 395, 3, 2, 2, 2, 397, 398, 3, 2, 2, 2, 398, 400, 3, 2, 2, 2, 399, 397, 3, 2, 2, 2, 400, 403, 7, 55, 2, 2, 401, 403, 7, 48, 2, 2, 402, 392, 3, 2, 2, 2, 402, 401, 3, 2, 2, 2, 403, 69, 3, 2, 2, 2, 404, 417, 5, 78, 40, 2, 405, 407, 9, 6, 2, 2, 406, 405, 3, 2, 2, 2, 406, 407, 3, 2, 2, 2, 407, 408, 3, 2, 2, 2, 408, 417, 5, 98, 50, 2, 409, 411, 9, 6, 2, 2, 410, 409, 3, 2, 2, 2, 410, 411, 3, 2, 2, 2, 411, 412, 3, 2, 2, 2, 412, 417, 5, 104, 53, 2, 413, 417, 5, 100, 51, 2, 414, 417, 5, 102, 52, 2, 415, 417, 5, 72, 37, 2, 416, 404, 3, 2, 2, 2, 416, 406, 3, 2, 2, 2, 416, 410, 3, 2, 2, 2, 416, 413, 3, 2, 2, 2, 416, 414, 3, 2, 2, 2, 416, 415, 3, 2, 2, 2, 417, 71, 3, 2, 2, 2, 418, 425, 7, 54, 2, 2, 419, 420, 5, 76, 39, 2, 420, 421, 7, 60, 2, 2, 421, 422, 5, 70, 36, 2, 422, 424, 3, 2, 2, 2, 423, 419, 3, 2, 2, 2, 424, 427, 3, 2, 2, 2, 425, 423, 3, 2, 2, 2, 425, 426, 3, 2, 2, 2, 426, 428, 3, 2, 2, 2, 427, 425, 3, 2, 2, 2, 428, 429, 7, 55, 2, 2, 429, 73, 3, 2, 2, 2, 430, 431, 7, 48, 2, 2, 431, 75, 3, 2, 2, 2, 432, 435, 7, 67, 2, 2, 433, 435, 5, 106, 54, 2, 434, 432, 3, 2, 2, 2, 434, 433, 3, 2, 2, 2, 435, 77, 3, 2, 2, 2, 436, 441, 5, 76, 39, 2, 437, 438, 7, 58, 2, 2, 438, 440, 5, 76, 39, 2, 439, 437, 3, 2, 2, 2, 440, 443, 3, 2, 2, 2, 441, 439, 3, 2, 2, 2, 441, 442, 3, 2, 2, 2, 442, 79, 3, 2, 2, 2, 443, 441, 3, 2, 2, 2, 444, 445, 5, 76, 39, 2, 445, 81, 3, 2, 2, 2, 446, 447, 5, 76, 39, 2, 447, 83, 3, 2, 2, 2, 448, 449, 5, 76, 39, 2, 449, 85, 3, 2, 2, 2, 450, 451, 5, 76, 39, 2, 451, 87, 3, 2, 2, 2, 452, 453, 5, 76, 39, 2, 453, 89, 3, 2, 2, 2, 454, 455, 5, 76, 39, 2, 455, 91, 3, 2, 2, 2, 456, 457, 5, 76, 39, 2, 457, 93, 3, 2, 2, 2, 458, 460, 7, 58, 2, 2, 459, 458, 3, 2, 2, 2, 459, 460, 3, 2, 2, 2, 460, 466, 3, 2, 2, 2, 461, 462, 5, 76, 39, 2, 462, 463, 7, 58, 2, 2, 463, 465, 3, 2, 2, 2, 464, 461, 3, 2, 2, 2, 465, 468, 3, 2, 2, 2, 466, 464, 3, 2, 2, 2, 466, 467, 3, 2, 2, 2, 467, 469, 3, 2, 2, 2, 468, 466, 3, 2, 2, 2, 469, 470, 5, 80, 41, 2, 470, 95, 3, 2, 2, 2, 471, 473, 7, 58, 2, 2, 472, 471, 3, 2, 2, 2, 472, 473, 3, 2, 2, 2, 473, 479, 3, 2, 2, 2, 474, 475, 5, 76, 39, 2, 475, 476, 7, 58, 2, 2, 476, 478, 3, 2, 2, 2, 477, 474, 3, 2, 2, 2, 478, 481, 3, 2, 2, 2, 479, 477, 3, 2, 2, 2, 479, 480, 3, 2, 2, 2, 480, 482, 3, 2, 2, 2, 481, 479, 3, 2, 2, 2, 482, 483, 5, 82, 42, 2, 483, 97, 3, 2, 2, 2, 484, 485, 7, 66, 2, 2, 485, 99, 3, 2, 2, 2, 486, 487, 9, 7, 2, 2, 487, 101, 3, 2, 2, 2, 488, 489, 7, 64, 2, 2, 489, 103, 3, 2, 2, 2, 490, 491, 7, 65, 2, 2, 491, 105, 3, 2, 2, 2, 492, 493, 9, 8, 2, 2, 493, 107, 3, 2, 2, 2, 47, 115, 117, 127, 148, 150, 158, 162, 167, 177, 186, 201, 203, 216, 233, 256, 261, 270, 277, 279, 286, 292, 302, 310, 315, 319, 329, 346, 359, 367, 375, 381, 388, 395, 397, 402, 406, 410, 416, 425, 434, 441, 459, 466, 472, 479]
@@ -0,0 +1,128 @@
1
+ FIELD_OPTIONS=1
2
+ ENUM_OPTIONS=2
3
+ ENUM_VALUE_OPTIONS=3
4
+ EXTENSION_RANGE_OPTIONS=4
5
+ MESSAGE_OPTIONS=5
6
+ METHOD_OPTIONS=6
7
+ SERVICE_OPTIONS=7
8
+ FILE_OPTIONS=8
9
+ ONEOF_OPTIONS=9
10
+ SYNTAX=10
11
+ IMPORT=11
12
+ EXTEND=12
13
+ WEAK=13
14
+ PUBLIC=14
15
+ PACKAGE=15
16
+ OPTION=16
17
+ REPEATED=17
18
+ ONEOF=18
19
+ MAP=19
20
+ INT32=20
21
+ INT64=21
22
+ UINT32=22
23
+ UINT64=23
24
+ SINT32=24
25
+ SINT64=25
26
+ FIXED32=26
27
+ FIXED64=27
28
+ SFIXED32=28
29
+ SFIXED64=29
30
+ BOOL=30
31
+ STRING=31
32
+ DOUBLE=32
33
+ FLOAT=33
34
+ BYTES=34
35
+ RESERVED=35
36
+ TO=36
37
+ MAX=37
38
+ ENUM=38
39
+ MESSAGE=39
40
+ SERVICE=40
41
+ RPC=41
42
+ STREAM=42
43
+ RETURNS=43
44
+ PROTO3_LIT_SINGLE=44
45
+ PROTO3_LIT_DOBULE=45
46
+ SEMI=46
47
+ EQ=47
48
+ LP=48
49
+ RP=49
50
+ LB=50
51
+ RB=51
52
+ LC=52
53
+ RC=53
54
+ LT=54
55
+ GT=55
56
+ DOT=56
57
+ COMMA=57
58
+ COLON=58
59
+ PLUS=59
60
+ MINUS=60
61
+ STR_LIT=61
62
+ BOOL_LIT=62
63
+ FLOAT_LIT=63
64
+ INT_LIT=64
65
+ IDENTIFIER=65
66
+ WS=66
67
+ LINE_COMMENT=67
68
+ COMMENT=68
69
+ 'google.protobuf.FieldOptions'=1
70
+ 'google.protobuf.EnumOptions'=2
71
+ 'google.protobuf.EnumValueOptions'=3
72
+ 'google.protobuf.ExtensionRangeOptions'=4
73
+ 'google.protobuf.MessageOptions'=5
74
+ 'google.protobuf.MethodOptions'=6
75
+ 'google.protobuf.ServiceOptions'=7
76
+ 'google.protobuf.FileOptions'=8
77
+ 'google.protobuf.OneofOptions'=9
78
+ 'syntax'=10
79
+ 'import'=11
80
+ 'extend'=12
81
+ 'weak'=13
82
+ 'public'=14
83
+ 'package'=15
84
+ 'option'=16
85
+ 'repeated'=17
86
+ 'oneof'=18
87
+ 'map'=19
88
+ 'int32'=20
89
+ 'int64'=21
90
+ 'uint32'=22
91
+ 'uint64'=23
92
+ 'sint32'=24
93
+ 'sint64'=25
94
+ 'fixed32'=26
95
+ 'fixed64'=27
96
+ 'sfixed32'=28
97
+ 'sfixed64'=29
98
+ 'bool'=30
99
+ 'string'=31
100
+ 'double'=32
101
+ 'float'=33
102
+ 'bytes'=34
103
+ 'reserved'=35
104
+ 'to'=36
105
+ 'max'=37
106
+ 'enum'=38
107
+ 'message'=39
108
+ 'service'=40
109
+ 'rpc'=41
110
+ 'stream'=42
111
+ 'returns'=43
112
+ '"proto3"'=44
113
+ '\'proto3\''=45
114
+ ';'=46
115
+ '='=47
116
+ '('=48
117
+ ')'=49
118
+ '['=50
119
+ ']'=51
120
+ '{'=52
121
+ '}'=53
122
+ '<'=54
123
+ '>'=55
124
+ '.'=56
125
+ ','=57
126
+ ':'=58
127
+ '+'=59
128
+ '-'=60