blend-kit 1.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.
- package/dist/helper/ApiHelper.js +0 -0
- package/dist/helper/BasicHelper.js +28 -0
- package/dist/helper/CommonHelper.js +10 -0
- package/dist/helper/DataHelper.js +241 -0
- package/dist/helper/ExpressHelper.js +728 -0
- package/dist/helper/FrontEndApiHelper.js +485 -0
- package/dist/helper/FrontEndReactApiHelper.js +483 -0
- package/dist/helper/MongoHelper.js +143 -0
- package/dist/helper/RNHelper.js +560 -0
- package/dist/helper/ReactHelper.js +524 -0
- package/dist/helper/SectionHelper.js +152 -0
- package/dist/helper/fileHelper.js +127 -0
- package/dist/helper/grammarHelper/BlendApiGrammarHelper.js +48 -0
- package/dist/helper/grammarHelper/BlendBasicGrammarHelper.js +98 -0
- package/dist/helper/grammarHelper/BlendDataGrammarHelper.js +47 -0
- package/dist/helper/grammarHelper/BlendMDPGrammarHelper.js +29 -0
- package/dist/helper/grammarHelper/BlendMongoGrammarHelper.js +51 -0
- package/dist/helper/grammarHelper/BlendRNGrammarHelper.js +56 -0
- package/dist/helper/grammarHelper/BlendReactGrammarHelper.js +55 -0
- package/dist/helper/grammarHelper/GrammarErrorHelper.js +16 -0
- package/dist/index.js +159 -0
- package/dist/parser/blendApi/src/grammar/BlendApiLexer.js +201 -0
- package/dist/parser/blendApi/src/grammar/BlendApiListener.js +3 -0
- package/dist/parser/blendApi/src/grammar/BlendApiParser.js +961 -0
- package/dist/parser/blendData/src/grammar/BlendDataLexer.js +154 -0
- package/dist/parser/blendData/src/grammar/BlendDataListener.js +3 -0
- package/dist/parser/blendData/src/grammar/BlendDataParser.js +641 -0
- package/dist/parser/blendMDP/src/grammar/BlendMDPLexer.js +151 -0
- package/dist/parser/blendMDP/src/grammar/BlendMDPListener.js +3 -0
- package/dist/parser/blendMDP/src/grammar/BlendMDPParser.js +490 -0
- package/dist/parser/blendMongo/src/grammar/BlendMongoLexer.js +187 -0
- package/dist/parser/blendMongo/src/grammar/BlendMongoListener.js +3 -0
- package/dist/parser/blendMongo/src/grammar/BlendMongoParser.js +848 -0
- package/dist/parser/blendRN/src/grammar/BlendRNLexer.js +172 -0
- package/dist/parser/blendRN/src/grammar/BlendRNListener.js +3 -0
- package/dist/parser/blendRN/src/grammar/BlendRNParser.js +657 -0
- package/dist/parser/blendReact/src/grammar/BlendReactLexer.js +159 -0
- package/dist/parser/blendReact/src/grammar/BlendReactListener.js +3 -0
- package/dist/parser/blendReact/src/grammar/BlendReactParser.js +644 -0
- package/dist/parser/blendbasic/src/grammar/BlendBasicLexer.js +147 -0
- package/dist/parser/blendbasic/src/grammar/BlendBasicListener.js +3 -0
- package/dist/parser/blendbasic/src/grammar/BlendBasicParser.js +747 -0
- package/dist/src/app.js +76 -0
- package/dist/src/app.ts +54 -0
- package/dist/types/apiOperationTypes.js +13 -0
- package/dist/types/basicOperationTypes.js +2 -0
- package/dist/types/dataOperationTypes.js +2 -0
- package/dist/types/frontendOperationTypes.js +4 -0
- package/dist/types/generalTypes.js +0 -0
- package/dist/types/mongoOperationTypes.js +12 -0
- package/package.json +29 -0
- package/src/grammar/.antlr/ApiModuleLexer.interp +71 -0
- package/src/grammar/.antlr/ApiModuleLexer.java +194 -0
- package/src/grammar/.antlr/ApiModuleLexer.tokens +32 -0
- package/src/grammar/.antlr/BlendApi.interp +70 -0
- package/src/grammar/.antlr/BlendApi.tokens +44 -0
- package/src/grammar/.antlr/BlendApiLexer.interp +89 -0
- package/src/grammar/.antlr/BlendApiLexer.java +237 -0
- package/src/grammar/.antlr/BlendApiLexer.tokens +44 -0
- package/src/grammar/.antlr/BlendApiParser.java +767 -0
- package/src/grammar/.antlr/BlendBasic.interp +41 -0
- package/src/grammar/.antlr/BlendBasic.tokens +20 -0
- package/src/grammar/.antlr/BlendBasicLexer.interp +50 -0
- package/src/grammar/.antlr/BlendBasicLexer.java +179 -0
- package/src/grammar/.antlr/BlendBasicLexer.tokens +20 -0
- package/src/grammar/.antlr/BlendBasicParser.java +599 -0
- package/src/grammar/.antlr/BlendData.interp +50 -0
- package/src/grammar/.antlr/BlendData.tokens +29 -0
- package/src/grammar/.antlr/BlendDataLexer.interp +65 -0
- package/src/grammar/.antlr/BlendDataLexer.java +181 -0
- package/src/grammar/.antlr/BlendDataLexer.tokens +29 -0
- package/src/grammar/.antlr/BlendDataParser.java +520 -0
- package/src/grammar/.antlr/BlendMDP.interp +45 -0
- package/src/grammar/.antlr/BlendMDP.tokens +25 -0
- package/src/grammar/.antlr/BlendMDPLexer.interp +59 -0
- package/src/grammar/.antlr/BlendMDPLexer.java +178 -0
- package/src/grammar/.antlr/BlendMDPLexer.tokens +25 -0
- package/src/grammar/.antlr/BlendMDPParser.java +386 -0
- package/src/grammar/.antlr/BlendMongo.interp +65 -0
- package/src/grammar/.antlr/BlendMongo.tokens +41 -0
- package/src/grammar/.antlr/BlendMongoLexer.interp +83 -0
- package/src/grammar/.antlr/BlendMongoLexer.java +219 -0
- package/src/grammar/.antlr/BlendMongoLexer.tokens +41 -0
- package/src/grammar/.antlr/BlendMongoParser.java +669 -0
- package/src/grammar/.antlr/BlendRN.interp +53 -0
- package/src/grammar/.antlr/BlendRN.tokens +31 -0
- package/src/grammar/.antlr/BlendRNLexer.interp +71 -0
- package/src/grammar/.antlr/BlendRNLexer.java +202 -0
- package/src/grammar/.antlr/BlendRNLexer.tokens +31 -0
- package/src/grammar/.antlr/BlendRNParser.java +542 -0
- package/src/grammar/.antlr/BlendReact.interp +49 -0
- package/src/grammar/.antlr/BlendReact.tokens +28 -0
- package/src/grammar/.antlr/BlendReactLexer.interp +65 -0
- package/src/grammar/.antlr/BlendReactLexer.java +188 -0
- package/src/grammar/.antlr/BlendReactLexer.tokens +28 -0
- package/src/grammar/.antlr/BlendReactParser.java +530 -0
- package/src/grammar/BlendApi.g4 +26 -0
- package/src/grammar/BlendBasic.g4 +16 -0
- package/src/grammar/BlendData.g4 +24 -0
- package/src/grammar/BlendMDP.g4 +12 -0
- package/src/grammar/BlendMongo.g4 +24 -0
- package/src/grammar/BlendRN.g4 +18 -0
- package/src/grammar/BlendReact.g4 +16 -0
- package/src/helper/BasicHelper.ts +35 -0
- package/src/helper/CommonHelper.ts +5 -0
- package/src/helper/DataHelper.ts +268 -0
- package/src/helper/ExpressHelper.ts +807 -0
- package/src/helper/FrontEndApiHelper.ts +526 -0
- package/src/helper/FrontEndReactApiHelper.ts +532 -0
- package/src/helper/MongoHelper.ts +165 -0
- package/src/helper/RNHelper.ts +651 -0
- package/src/helper/ReactHelper.ts +597 -0
- package/src/helper/SectionHelper.ts +154 -0
- package/src/helper/fileHelper.ts +111 -0
- package/src/helper/grammarHelper/BlendApiGrammarHelper.ts +45 -0
- package/src/helper/grammarHelper/BlendBasicGrammarHelper.ts +101 -0
- package/src/helper/grammarHelper/BlendDataGrammarHelper.ts +49 -0
- package/src/helper/grammarHelper/BlendMDPGrammarHelper.ts +33 -0
- package/src/helper/grammarHelper/BlendMongoGrammarHelper.ts +50 -0
- package/src/helper/grammarHelper/BlendRNGrammarHelper.ts +65 -0
- package/src/helper/grammarHelper/BlendReactGrammarHelper.ts +65 -0
- package/src/helper/grammarHelper/GrammarErrorHelper.ts +13 -0
- package/src/index.ts +168 -0
- package/src/parser/blendApi/src/grammar/BlendApi.interp +70 -0
- package/src/parser/blendApi/src/grammar/BlendApi.tokens +44 -0
- package/src/parser/blendApi/src/grammar/BlendApiLexer.interp +89 -0
- package/src/parser/blendApi/src/grammar/BlendApiLexer.tokens +44 -0
- package/src/parser/blendApi/src/grammar/BlendApiLexer.ts +193 -0
- package/src/parser/blendApi/src/grammar/BlendApiListener.ts +145 -0
- package/src/parser/blendApi/src/grammar/BlendApiParser.ts +968 -0
- package/src/parser/blendData/src/grammar/BlendData.interp +50 -0
- package/src/parser/blendData/src/grammar/BlendData.tokens +29 -0
- package/src/parser/blendData/src/grammar/BlendDataLexer.interp +65 -0
- package/src/parser/blendData/src/grammar/BlendDataLexer.tokens +29 -0
- package/src/parser/blendData/src/grammar/BlendDataLexer.ts +146 -0
- package/src/parser/blendData/src/grammar/BlendDataListener.ts +97 -0
- package/src/parser/blendData/src/grammar/BlendDataParser.ts +641 -0
- package/src/parser/blendMDP/src/grammar/BlendMDP.interp +45 -0
- package/src/parser/blendMDP/src/grammar/BlendMDP.tokens +25 -0
- package/src/parser/blendMDP/src/grammar/BlendMDPLexer.interp +59 -0
- package/src/parser/blendMDP/src/grammar/BlendMDPLexer.tokens +25 -0
- package/src/parser/blendMDP/src/grammar/BlendMDPLexer.ts +143 -0
- package/src/parser/blendMDP/src/grammar/BlendMDPListener.ts +85 -0
- package/src/parser/blendMDP/src/grammar/BlendMDPParser.ts +483 -0
- package/src/parser/blendMongo/src/grammar/BlendMongo.interp +65 -0
- package/src/parser/blendMongo/src/grammar/BlendMongo.tokens +41 -0
- package/src/parser/blendMongo/src/grammar/BlendMongoLexer.interp +83 -0
- package/src/parser/blendMongo/src/grammar/BlendMongoLexer.tokens +41 -0
- package/src/parser/blendMongo/src/grammar/BlendMongoLexer.ts +179 -0
- package/src/parser/blendMongo/src/grammar/BlendMongoListener.ts +133 -0
- package/src/parser/blendMongo/src/grammar/BlendMongoParser.ts +849 -0
- package/src/parser/blendRN/src/grammar/BlendRN.interp +53 -0
- package/src/parser/blendRN/src/grammar/BlendRN.tokens +31 -0
- package/src/parser/blendRN/src/grammar/BlendRNLexer.interp +71 -0
- package/src/parser/blendRN/src/grammar/BlendRNLexer.tokens +31 -0
- package/src/parser/blendRN/src/grammar/BlendRNLexer.ts +164 -0
- package/src/parser/blendRN/src/grammar/BlendRNListener.ts +85 -0
- package/src/parser/blendRN/src/grammar/BlendRNParser.ts +659 -0
- package/src/parser/blendReact/src/grammar/BlendReact.interp +49 -0
- package/src/parser/blendReact/src/grammar/BlendReact.tokens +28 -0
- package/src/parser/blendReact/src/grammar/BlendReactLexer.interp +65 -0
- package/src/parser/blendReact/src/grammar/BlendReactLexer.tokens +28 -0
- package/src/parser/blendReact/src/grammar/BlendReactLexer.ts +151 -0
- package/src/parser/blendReact/src/grammar/BlendReactListener.ts +85 -0
- package/src/parser/blendReact/src/grammar/BlendReactParser.ts +646 -0
- package/src/parser/blendbasic/src/grammar/BlendBasic.interp +41 -0
- package/src/parser/blendbasic/src/grammar/BlendBasic.tokens +20 -0
- package/src/parser/blendbasic/src/grammar/BlendBasicLexer.interp +50 -0
- package/src/parser/blendbasic/src/grammar/BlendBasicLexer.tokens +20 -0
- package/src/parser/blendbasic/src/grammar/BlendBasicLexer.ts +139 -0
- package/src/parser/blendbasic/src/grammar/BlendBasicListener.ts +109 -0
- package/src/parser/blendbasic/src/grammar/BlendBasicParser.ts +747 -0
- package/src/types/apiOperationTypes.ts +43 -0
- package/src/types/basicOperationTypes.ts +15 -0
- package/src/types/dataOperationTypes.ts +20 -0
- package/src/types/frontendOperationTypes.ts +92 -0
- package/src/types/generalTypes.ts +0 -0
- package/src/types/mongoOperationTypes.ts +36 -0
- package/template/.env.dev +1 -0
- package/template/package.json +36 -0
- package/template/src/app.js +76 -0
- package/template/src/app.ts +54 -0
- package/template/src/config/app.config.js +0 -0
- package/template/src/config/app.config.ts +0 -0
- package/template/src/config/database.config.js +6 -0
- package/template/src/config/database.config.ts +4 -0
- package/template/src/data/interfaces.js +2 -0
- package/template/src/data/interfaces.ts +23 -0
- package/template/src/middlewares/auth.js +22 -0
- package/template/src/middlewares/auth.ts +21 -0
- package/template/src/models/Database.js +10 -0
- package/template/src/models/Database.ts +8 -0
- package/template/src/models/User/Permission.model.js +13 -0
- package/template/src/models/User/Permission.model.ts +14 -0
- package/template/src/models/User/Role.model.js +13 -0
- package/template/src/models/User/Role.model.ts +14 -0
- package/template/src/models/User/User.model.js +17 -0
- package/template/src/models/User/User.model.ts +18 -0
- package/template/src/routes/User.routes.js +47 -0
- package/template/src/routes/User.routes.ts +41 -0
- package/template/src/routes/common/common.routes.config.js +14 -0
- package/template/src/routes/common/common.routes.config.ts +15 -0
- package/template/src/services/User/User.service.js +75 -0
- package/template/src/services/User/User.service.ts +68 -0
- package/template/src/services/User/api.data.js +72 -0
- package/template/src/services/User/api.data.ts +79 -0
- package/template/src/services/User/api.interface.js +3 -0
- package/template/src/services/User/api.interface.ts +10 -0
- package/template/tsconfig.json +10 -0
- package/tsconfig.json +13 -0
|
@@ -0,0 +1,669 @@
|
|
|
1
|
+
// Generated from /Users/govindve/govi/Projects/NodeProjects/blend-cli/src/grammar/BlendMongo.g4 by ANTLR 4.13.1
|
|
2
|
+
import org.antlr.v4.runtime.atn.*;
|
|
3
|
+
import org.antlr.v4.runtime.dfa.DFA;
|
|
4
|
+
import org.antlr.v4.runtime.*;
|
|
5
|
+
import org.antlr.v4.runtime.misc.*;
|
|
6
|
+
import org.antlr.v4.runtime.tree.*;
|
|
7
|
+
import java.util.List;
|
|
8
|
+
import java.util.Iterator;
|
|
9
|
+
import java.util.ArrayList;
|
|
10
|
+
|
|
11
|
+
@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast", "CheckReturnValue"})
|
|
12
|
+
public class BlendMongoParser extends Parser {
|
|
13
|
+
static { RuntimeMetaData.checkVersion("4.13.1", RuntimeMetaData.VERSION); }
|
|
14
|
+
|
|
15
|
+
protected static final DFA[] _decisionToDFA;
|
|
16
|
+
protected static final PredictionContextCache _sharedContextCache =
|
|
17
|
+
new PredictionContextCache();
|
|
18
|
+
public static final int
|
|
19
|
+
T__0=1, T__1=2, T__2=3, T__3=4, T__4=5, T__5=6, T__6=7, T__7=8, T__8=9,
|
|
20
|
+
T__9=10, T__10=11, T__11=12, T__12=13, T__13=14, T__14=15, T__15=16, T__16=17,
|
|
21
|
+
T__17=18, T__18=19, IDENTIFIER=20, CAPITAL_IDENTIFIER=21, WS=22;
|
|
22
|
+
public static final int
|
|
23
|
+
RULE_program = 0, RULE_moduleDefinition = 1, RULE_collectionDefinition = 2,
|
|
24
|
+
RULE_property = 3, RULE_propertyChars = 4, RULE_reference = 5, RULE_mongoChars = 6,
|
|
25
|
+
RULE_type = 7, RULE_baseType = 8, RULE_primitiveType = 9;
|
|
26
|
+
private static String[] makeRuleNames() {
|
|
27
|
+
return new String[] {
|
|
28
|
+
"program", "moduleDefinition", "collectionDefinition", "property", "propertyChars",
|
|
29
|
+
"reference", "mongoChars", "type", "baseType", "primitiveType"
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
public static final String[] ruleNames = makeRuleNames();
|
|
33
|
+
|
|
34
|
+
private static String[] makeLiteralNames() {
|
|
35
|
+
return new String[] {
|
|
36
|
+
null, "'module'", "'collection'", "'{'", "','", "'}'", "'property'",
|
|
37
|
+
"':'", "'('", "')'", "'reference'", "'unique'", "'index'", "'[]'", "'?'",
|
|
38
|
+
"'String'", "'Number'", "'Boolean'", "'any'", "'Object'"
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
private static final String[] _LITERAL_NAMES = makeLiteralNames();
|
|
42
|
+
private static String[] makeSymbolicNames() {
|
|
43
|
+
return new String[] {
|
|
44
|
+
null, null, null, null, null, null, null, null, null, null, null, null,
|
|
45
|
+
null, null, null, null, null, null, null, null, "IDENTIFIER", "CAPITAL_IDENTIFIER",
|
|
46
|
+
"WS"
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames();
|
|
50
|
+
public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES);
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* @deprecated Use {@link #VOCABULARY} instead.
|
|
54
|
+
*/
|
|
55
|
+
@Deprecated
|
|
56
|
+
public static final String[] tokenNames;
|
|
57
|
+
static {
|
|
58
|
+
tokenNames = new String[_SYMBOLIC_NAMES.length];
|
|
59
|
+
for (int i = 0; i < tokenNames.length; i++) {
|
|
60
|
+
tokenNames[i] = VOCABULARY.getLiteralName(i);
|
|
61
|
+
if (tokenNames[i] == null) {
|
|
62
|
+
tokenNames[i] = VOCABULARY.getSymbolicName(i);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
if (tokenNames[i] == null) {
|
|
66
|
+
tokenNames[i] = "<INVALID>";
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
@Override
|
|
72
|
+
@Deprecated
|
|
73
|
+
public String[] getTokenNames() {
|
|
74
|
+
return tokenNames;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
@Override
|
|
78
|
+
|
|
79
|
+
public Vocabulary getVocabulary() {
|
|
80
|
+
return VOCABULARY;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
@Override
|
|
84
|
+
public String getGrammarFileName() { return "BlendMongo.g4"; }
|
|
85
|
+
|
|
86
|
+
@Override
|
|
87
|
+
public String[] getRuleNames() { return ruleNames; }
|
|
88
|
+
|
|
89
|
+
@Override
|
|
90
|
+
public String getSerializedATN() { return _serializedATN; }
|
|
91
|
+
|
|
92
|
+
@Override
|
|
93
|
+
public ATN getATN() { return _ATN; }
|
|
94
|
+
|
|
95
|
+
public BlendMongoParser(TokenStream input) {
|
|
96
|
+
super(input);
|
|
97
|
+
_interp = new ParserATNSimulator(this,_ATN,_decisionToDFA,_sharedContextCache);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
@SuppressWarnings("CheckReturnValue")
|
|
101
|
+
public static class ProgramContext extends ParserRuleContext {
|
|
102
|
+
public ModuleDefinitionContext moduleDefinition() {
|
|
103
|
+
return getRuleContext(ModuleDefinitionContext.class,0);
|
|
104
|
+
}
|
|
105
|
+
public List<CollectionDefinitionContext> collectionDefinition() {
|
|
106
|
+
return getRuleContexts(CollectionDefinitionContext.class);
|
|
107
|
+
}
|
|
108
|
+
public CollectionDefinitionContext collectionDefinition(int i) {
|
|
109
|
+
return getRuleContext(CollectionDefinitionContext.class,i);
|
|
110
|
+
}
|
|
111
|
+
public ProgramContext(ParserRuleContext parent, int invokingState) {
|
|
112
|
+
super(parent, invokingState);
|
|
113
|
+
}
|
|
114
|
+
@Override public int getRuleIndex() { return RULE_program; }
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
public final ProgramContext program() throws RecognitionException {
|
|
118
|
+
ProgramContext _localctx = new ProgramContext(_ctx, getState());
|
|
119
|
+
enterRule(_localctx, 0, RULE_program);
|
|
120
|
+
int _la;
|
|
121
|
+
try {
|
|
122
|
+
enterOuterAlt(_localctx, 1);
|
|
123
|
+
{
|
|
124
|
+
setState(20);
|
|
125
|
+
moduleDefinition();
|
|
126
|
+
setState(22);
|
|
127
|
+
_errHandler.sync(this);
|
|
128
|
+
_la = _input.LA(1);
|
|
129
|
+
do {
|
|
130
|
+
{
|
|
131
|
+
{
|
|
132
|
+
setState(21);
|
|
133
|
+
collectionDefinition();
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
setState(24);
|
|
137
|
+
_errHandler.sync(this);
|
|
138
|
+
_la = _input.LA(1);
|
|
139
|
+
} while ( _la==T__1 );
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
catch (RecognitionException re) {
|
|
143
|
+
_localctx.exception = re;
|
|
144
|
+
_errHandler.reportError(this, re);
|
|
145
|
+
_errHandler.recover(this, re);
|
|
146
|
+
}
|
|
147
|
+
finally {
|
|
148
|
+
exitRule();
|
|
149
|
+
}
|
|
150
|
+
return _localctx;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
@SuppressWarnings("CheckReturnValue")
|
|
154
|
+
public static class ModuleDefinitionContext extends ParserRuleContext {
|
|
155
|
+
public TerminalNode CAPITAL_IDENTIFIER() { return getToken(BlendMongoParser.CAPITAL_IDENTIFIER, 0); }
|
|
156
|
+
public ModuleDefinitionContext(ParserRuleContext parent, int invokingState) {
|
|
157
|
+
super(parent, invokingState);
|
|
158
|
+
}
|
|
159
|
+
@Override public int getRuleIndex() { return RULE_moduleDefinition; }
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
public final ModuleDefinitionContext moduleDefinition() throws RecognitionException {
|
|
163
|
+
ModuleDefinitionContext _localctx = new ModuleDefinitionContext(_ctx, getState());
|
|
164
|
+
enterRule(_localctx, 2, RULE_moduleDefinition);
|
|
165
|
+
try {
|
|
166
|
+
enterOuterAlt(_localctx, 1);
|
|
167
|
+
{
|
|
168
|
+
setState(26);
|
|
169
|
+
match(T__0);
|
|
170
|
+
setState(27);
|
|
171
|
+
match(CAPITAL_IDENTIFIER);
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
catch (RecognitionException re) {
|
|
175
|
+
_localctx.exception = re;
|
|
176
|
+
_errHandler.reportError(this, re);
|
|
177
|
+
_errHandler.recover(this, re);
|
|
178
|
+
}
|
|
179
|
+
finally {
|
|
180
|
+
exitRule();
|
|
181
|
+
}
|
|
182
|
+
return _localctx;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
@SuppressWarnings("CheckReturnValue")
|
|
186
|
+
public static class CollectionDefinitionContext extends ParserRuleContext {
|
|
187
|
+
public TerminalNode CAPITAL_IDENTIFIER() { return getToken(BlendMongoParser.CAPITAL_IDENTIFIER, 0); }
|
|
188
|
+
public List<PropertyContext> property() {
|
|
189
|
+
return getRuleContexts(PropertyContext.class);
|
|
190
|
+
}
|
|
191
|
+
public PropertyContext property(int i) {
|
|
192
|
+
return getRuleContext(PropertyContext.class,i);
|
|
193
|
+
}
|
|
194
|
+
public List<ReferenceContext> reference() {
|
|
195
|
+
return getRuleContexts(ReferenceContext.class);
|
|
196
|
+
}
|
|
197
|
+
public ReferenceContext reference(int i) {
|
|
198
|
+
return getRuleContext(ReferenceContext.class,i);
|
|
199
|
+
}
|
|
200
|
+
public CollectionDefinitionContext(ParserRuleContext parent, int invokingState) {
|
|
201
|
+
super(parent, invokingState);
|
|
202
|
+
}
|
|
203
|
+
@Override public int getRuleIndex() { return RULE_collectionDefinition; }
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
public final CollectionDefinitionContext collectionDefinition() throws RecognitionException {
|
|
207
|
+
CollectionDefinitionContext _localctx = new CollectionDefinitionContext(_ctx, getState());
|
|
208
|
+
enterRule(_localctx, 4, RULE_collectionDefinition);
|
|
209
|
+
int _la;
|
|
210
|
+
try {
|
|
211
|
+
int _alt;
|
|
212
|
+
enterOuterAlt(_localctx, 1);
|
|
213
|
+
{
|
|
214
|
+
setState(29);
|
|
215
|
+
match(T__1);
|
|
216
|
+
setState(30);
|
|
217
|
+
match(CAPITAL_IDENTIFIER);
|
|
218
|
+
setState(31);
|
|
219
|
+
match(T__2);
|
|
220
|
+
setState(32);
|
|
221
|
+
property();
|
|
222
|
+
setState(37);
|
|
223
|
+
_errHandler.sync(this);
|
|
224
|
+
_alt = getInterpreter().adaptivePredict(_input,1,_ctx);
|
|
225
|
+
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
|
|
226
|
+
if ( _alt==1 ) {
|
|
227
|
+
{
|
|
228
|
+
{
|
|
229
|
+
setState(33);
|
|
230
|
+
match(T__3);
|
|
231
|
+
setState(34);
|
|
232
|
+
property();
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
setState(39);
|
|
237
|
+
_errHandler.sync(this);
|
|
238
|
+
_alt = getInterpreter().adaptivePredict(_input,1,_ctx);
|
|
239
|
+
}
|
|
240
|
+
setState(49);
|
|
241
|
+
_errHandler.sync(this);
|
|
242
|
+
_la = _input.LA(1);
|
|
243
|
+
if (_la==T__3) {
|
|
244
|
+
{
|
|
245
|
+
setState(40);
|
|
246
|
+
match(T__3);
|
|
247
|
+
setState(41);
|
|
248
|
+
reference();
|
|
249
|
+
setState(46);
|
|
250
|
+
_errHandler.sync(this);
|
|
251
|
+
_la = _input.LA(1);
|
|
252
|
+
while (_la==T__3) {
|
|
253
|
+
{
|
|
254
|
+
{
|
|
255
|
+
setState(42);
|
|
256
|
+
match(T__3);
|
|
257
|
+
setState(43);
|
|
258
|
+
reference();
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
setState(48);
|
|
262
|
+
_errHandler.sync(this);
|
|
263
|
+
_la = _input.LA(1);
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
setState(51);
|
|
269
|
+
match(T__4);
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
catch (RecognitionException re) {
|
|
273
|
+
_localctx.exception = re;
|
|
274
|
+
_errHandler.reportError(this, re);
|
|
275
|
+
_errHandler.recover(this, re);
|
|
276
|
+
}
|
|
277
|
+
finally {
|
|
278
|
+
exitRule();
|
|
279
|
+
}
|
|
280
|
+
return _localctx;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
@SuppressWarnings("CheckReturnValue")
|
|
284
|
+
public static class PropertyContext extends ParserRuleContext {
|
|
285
|
+
public TerminalNode IDENTIFIER() { return getToken(BlendMongoParser.IDENTIFIER, 0); }
|
|
286
|
+
public TypeContext type() {
|
|
287
|
+
return getRuleContext(TypeContext.class,0);
|
|
288
|
+
}
|
|
289
|
+
public PropertyCharsContext propertyChars() {
|
|
290
|
+
return getRuleContext(PropertyCharsContext.class,0);
|
|
291
|
+
}
|
|
292
|
+
public PropertyContext(ParserRuleContext parent, int invokingState) {
|
|
293
|
+
super(parent, invokingState);
|
|
294
|
+
}
|
|
295
|
+
@Override public int getRuleIndex() { return RULE_property; }
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
public final PropertyContext property() throws RecognitionException {
|
|
299
|
+
PropertyContext _localctx = new PropertyContext(_ctx, getState());
|
|
300
|
+
enterRule(_localctx, 6, RULE_property);
|
|
301
|
+
int _la;
|
|
302
|
+
try {
|
|
303
|
+
enterOuterAlt(_localctx, 1);
|
|
304
|
+
{
|
|
305
|
+
setState(53);
|
|
306
|
+
match(T__5);
|
|
307
|
+
setState(54);
|
|
308
|
+
match(IDENTIFIER);
|
|
309
|
+
setState(55);
|
|
310
|
+
match(T__6);
|
|
311
|
+
setState(56);
|
|
312
|
+
type();
|
|
313
|
+
setState(58);
|
|
314
|
+
_errHandler.sync(this);
|
|
315
|
+
_la = _input.LA(1);
|
|
316
|
+
if (_la==T__7) {
|
|
317
|
+
{
|
|
318
|
+
setState(57);
|
|
319
|
+
propertyChars();
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
catch (RecognitionException re) {
|
|
326
|
+
_localctx.exception = re;
|
|
327
|
+
_errHandler.reportError(this, re);
|
|
328
|
+
_errHandler.recover(this, re);
|
|
329
|
+
}
|
|
330
|
+
finally {
|
|
331
|
+
exitRule();
|
|
332
|
+
}
|
|
333
|
+
return _localctx;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
@SuppressWarnings("CheckReturnValue")
|
|
337
|
+
public static class PropertyCharsContext extends ParserRuleContext {
|
|
338
|
+
public List<MongoCharsContext> mongoChars() {
|
|
339
|
+
return getRuleContexts(MongoCharsContext.class);
|
|
340
|
+
}
|
|
341
|
+
public MongoCharsContext mongoChars(int i) {
|
|
342
|
+
return getRuleContext(MongoCharsContext.class,i);
|
|
343
|
+
}
|
|
344
|
+
public PropertyCharsContext(ParserRuleContext parent, int invokingState) {
|
|
345
|
+
super(parent, invokingState);
|
|
346
|
+
}
|
|
347
|
+
@Override public int getRuleIndex() { return RULE_propertyChars; }
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
public final PropertyCharsContext propertyChars() throws RecognitionException {
|
|
351
|
+
PropertyCharsContext _localctx = new PropertyCharsContext(_ctx, getState());
|
|
352
|
+
enterRule(_localctx, 8, RULE_propertyChars);
|
|
353
|
+
int _la;
|
|
354
|
+
try {
|
|
355
|
+
enterOuterAlt(_localctx, 1);
|
|
356
|
+
{
|
|
357
|
+
setState(60);
|
|
358
|
+
match(T__7);
|
|
359
|
+
setState(61);
|
|
360
|
+
mongoChars();
|
|
361
|
+
setState(66);
|
|
362
|
+
_errHandler.sync(this);
|
|
363
|
+
_la = _input.LA(1);
|
|
364
|
+
while (_la==T__3) {
|
|
365
|
+
{
|
|
366
|
+
{
|
|
367
|
+
setState(62);
|
|
368
|
+
match(T__3);
|
|
369
|
+
setState(63);
|
|
370
|
+
mongoChars();
|
|
371
|
+
}
|
|
372
|
+
}
|
|
373
|
+
setState(68);
|
|
374
|
+
_errHandler.sync(this);
|
|
375
|
+
_la = _input.LA(1);
|
|
376
|
+
}
|
|
377
|
+
setState(69);
|
|
378
|
+
match(T__8);
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
catch (RecognitionException re) {
|
|
382
|
+
_localctx.exception = re;
|
|
383
|
+
_errHandler.reportError(this, re);
|
|
384
|
+
_errHandler.recover(this, re);
|
|
385
|
+
}
|
|
386
|
+
finally {
|
|
387
|
+
exitRule();
|
|
388
|
+
}
|
|
389
|
+
return _localctx;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
@SuppressWarnings("CheckReturnValue")
|
|
393
|
+
public static class ReferenceContext extends ParserRuleContext {
|
|
394
|
+
public TerminalNode IDENTIFIER() { return getToken(BlendMongoParser.IDENTIFIER, 0); }
|
|
395
|
+
public TerminalNode CAPITAL_IDENTIFIER() { return getToken(BlendMongoParser.CAPITAL_IDENTIFIER, 0); }
|
|
396
|
+
public PropertyCharsContext propertyChars() {
|
|
397
|
+
return getRuleContext(PropertyCharsContext.class,0);
|
|
398
|
+
}
|
|
399
|
+
public ReferenceContext(ParserRuleContext parent, int invokingState) {
|
|
400
|
+
super(parent, invokingState);
|
|
401
|
+
}
|
|
402
|
+
@Override public int getRuleIndex() { return RULE_reference; }
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
public final ReferenceContext reference() throws RecognitionException {
|
|
406
|
+
ReferenceContext _localctx = new ReferenceContext(_ctx, getState());
|
|
407
|
+
enterRule(_localctx, 10, RULE_reference);
|
|
408
|
+
int _la;
|
|
409
|
+
try {
|
|
410
|
+
enterOuterAlt(_localctx, 1);
|
|
411
|
+
{
|
|
412
|
+
setState(71);
|
|
413
|
+
match(T__9);
|
|
414
|
+
setState(72);
|
|
415
|
+
match(IDENTIFIER);
|
|
416
|
+
setState(73);
|
|
417
|
+
match(T__6);
|
|
418
|
+
setState(74);
|
|
419
|
+
match(CAPITAL_IDENTIFIER);
|
|
420
|
+
setState(76);
|
|
421
|
+
_errHandler.sync(this);
|
|
422
|
+
_la = _input.LA(1);
|
|
423
|
+
if (_la==T__7) {
|
|
424
|
+
{
|
|
425
|
+
setState(75);
|
|
426
|
+
propertyChars();
|
|
427
|
+
}
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
}
|
|
431
|
+
}
|
|
432
|
+
catch (RecognitionException re) {
|
|
433
|
+
_localctx.exception = re;
|
|
434
|
+
_errHandler.reportError(this, re);
|
|
435
|
+
_errHandler.recover(this, re);
|
|
436
|
+
}
|
|
437
|
+
finally {
|
|
438
|
+
exitRule();
|
|
439
|
+
}
|
|
440
|
+
return _localctx;
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
@SuppressWarnings("CheckReturnValue")
|
|
444
|
+
public static class MongoCharsContext extends ParserRuleContext {
|
|
445
|
+
public MongoCharsContext(ParserRuleContext parent, int invokingState) {
|
|
446
|
+
super(parent, invokingState);
|
|
447
|
+
}
|
|
448
|
+
@Override public int getRuleIndex() { return RULE_mongoChars; }
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
public final MongoCharsContext mongoChars() throws RecognitionException {
|
|
452
|
+
MongoCharsContext _localctx = new MongoCharsContext(_ctx, getState());
|
|
453
|
+
enterRule(_localctx, 12, RULE_mongoChars);
|
|
454
|
+
int _la;
|
|
455
|
+
try {
|
|
456
|
+
enterOuterAlt(_localctx, 1);
|
|
457
|
+
{
|
|
458
|
+
setState(78);
|
|
459
|
+
_la = _input.LA(1);
|
|
460
|
+
if ( !(_la==T__10 || _la==T__11) ) {
|
|
461
|
+
_errHandler.recoverInline(this);
|
|
462
|
+
}
|
|
463
|
+
else {
|
|
464
|
+
if ( _input.LA(1)==Token.EOF ) matchedEOF = true;
|
|
465
|
+
_errHandler.reportMatch(this);
|
|
466
|
+
consume();
|
|
467
|
+
}
|
|
468
|
+
}
|
|
469
|
+
}
|
|
470
|
+
catch (RecognitionException re) {
|
|
471
|
+
_localctx.exception = re;
|
|
472
|
+
_errHandler.reportError(this, re);
|
|
473
|
+
_errHandler.recover(this, re);
|
|
474
|
+
}
|
|
475
|
+
finally {
|
|
476
|
+
exitRule();
|
|
477
|
+
}
|
|
478
|
+
return _localctx;
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
@SuppressWarnings("CheckReturnValue")
|
|
482
|
+
public static class TypeContext extends ParserRuleContext {
|
|
483
|
+
public BaseTypeContext baseType() {
|
|
484
|
+
return getRuleContext(BaseTypeContext.class,0);
|
|
485
|
+
}
|
|
486
|
+
public TypeContext(ParserRuleContext parent, int invokingState) {
|
|
487
|
+
super(parent, invokingState);
|
|
488
|
+
}
|
|
489
|
+
@Override public int getRuleIndex() { return RULE_type; }
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
public final TypeContext type() throws RecognitionException {
|
|
493
|
+
TypeContext _localctx = new TypeContext(_ctx, getState());
|
|
494
|
+
enterRule(_localctx, 14, RULE_type);
|
|
495
|
+
try {
|
|
496
|
+
setState(87);
|
|
497
|
+
_errHandler.sync(this);
|
|
498
|
+
switch ( getInterpreter().adaptivePredict(_input,7,_ctx) ) {
|
|
499
|
+
case 1:
|
|
500
|
+
enterOuterAlt(_localctx, 1);
|
|
501
|
+
{
|
|
502
|
+
setState(80);
|
|
503
|
+
baseType();
|
|
504
|
+
}
|
|
505
|
+
break;
|
|
506
|
+
case 2:
|
|
507
|
+
enterOuterAlt(_localctx, 2);
|
|
508
|
+
{
|
|
509
|
+
setState(81);
|
|
510
|
+
baseType();
|
|
511
|
+
setState(82);
|
|
512
|
+
match(T__12);
|
|
513
|
+
}
|
|
514
|
+
break;
|
|
515
|
+
case 3:
|
|
516
|
+
enterOuterAlt(_localctx, 3);
|
|
517
|
+
{
|
|
518
|
+
setState(84);
|
|
519
|
+
baseType();
|
|
520
|
+
setState(85);
|
|
521
|
+
match(T__13);
|
|
522
|
+
}
|
|
523
|
+
break;
|
|
524
|
+
}
|
|
525
|
+
}
|
|
526
|
+
catch (RecognitionException re) {
|
|
527
|
+
_localctx.exception = re;
|
|
528
|
+
_errHandler.reportError(this, re);
|
|
529
|
+
_errHandler.recover(this, re);
|
|
530
|
+
}
|
|
531
|
+
finally {
|
|
532
|
+
exitRule();
|
|
533
|
+
}
|
|
534
|
+
return _localctx;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
@SuppressWarnings("CheckReturnValue")
|
|
538
|
+
public static class BaseTypeContext extends ParserRuleContext {
|
|
539
|
+
public PrimitiveTypeContext primitiveType() {
|
|
540
|
+
return getRuleContext(PrimitiveTypeContext.class,0);
|
|
541
|
+
}
|
|
542
|
+
public BaseTypeContext(ParserRuleContext parent, int invokingState) {
|
|
543
|
+
super(parent, invokingState);
|
|
544
|
+
}
|
|
545
|
+
@Override public int getRuleIndex() { return RULE_baseType; }
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
public final BaseTypeContext baseType() throws RecognitionException {
|
|
549
|
+
BaseTypeContext _localctx = new BaseTypeContext(_ctx, getState());
|
|
550
|
+
enterRule(_localctx, 16, RULE_baseType);
|
|
551
|
+
try {
|
|
552
|
+
enterOuterAlt(_localctx, 1);
|
|
553
|
+
{
|
|
554
|
+
setState(89);
|
|
555
|
+
primitiveType();
|
|
556
|
+
}
|
|
557
|
+
}
|
|
558
|
+
catch (RecognitionException re) {
|
|
559
|
+
_localctx.exception = re;
|
|
560
|
+
_errHandler.reportError(this, re);
|
|
561
|
+
_errHandler.recover(this, re);
|
|
562
|
+
}
|
|
563
|
+
finally {
|
|
564
|
+
exitRule();
|
|
565
|
+
}
|
|
566
|
+
return _localctx;
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
@SuppressWarnings("CheckReturnValue")
|
|
570
|
+
public static class PrimitiveTypeContext extends ParserRuleContext {
|
|
571
|
+
public PrimitiveTypeContext(ParserRuleContext parent, int invokingState) {
|
|
572
|
+
super(parent, invokingState);
|
|
573
|
+
}
|
|
574
|
+
@Override public int getRuleIndex() { return RULE_primitiveType; }
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
public final PrimitiveTypeContext primitiveType() throws RecognitionException {
|
|
578
|
+
PrimitiveTypeContext _localctx = new PrimitiveTypeContext(_ctx, getState());
|
|
579
|
+
enterRule(_localctx, 18, RULE_primitiveType);
|
|
580
|
+
int _la;
|
|
581
|
+
try {
|
|
582
|
+
enterOuterAlt(_localctx, 1);
|
|
583
|
+
{
|
|
584
|
+
setState(91);
|
|
585
|
+
_la = _input.LA(1);
|
|
586
|
+
if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 1015808L) != 0)) ) {
|
|
587
|
+
_errHandler.recoverInline(this);
|
|
588
|
+
}
|
|
589
|
+
else {
|
|
590
|
+
if ( _input.LA(1)==Token.EOF ) matchedEOF = true;
|
|
591
|
+
_errHandler.reportMatch(this);
|
|
592
|
+
consume();
|
|
593
|
+
}
|
|
594
|
+
}
|
|
595
|
+
}
|
|
596
|
+
catch (RecognitionException re) {
|
|
597
|
+
_localctx.exception = re;
|
|
598
|
+
_errHandler.reportError(this, re);
|
|
599
|
+
_errHandler.recover(this, re);
|
|
600
|
+
}
|
|
601
|
+
finally {
|
|
602
|
+
exitRule();
|
|
603
|
+
}
|
|
604
|
+
return _localctx;
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
public static final String _serializedATN =
|
|
608
|
+
"\u0004\u0001\u0016^\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001\u0002"+
|
|
609
|
+
"\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002\u0004\u0007\u0004\u0002"+
|
|
610
|
+
"\u0005\u0007\u0005\u0002\u0006\u0007\u0006\u0002\u0007\u0007\u0007\u0002"+
|
|
611
|
+
"\b\u0007\b\u0002\t\u0007\t\u0001\u0000\u0001\u0000\u0004\u0000\u0017\b"+
|
|
612
|
+
"\u0000\u000b\u0000\f\u0000\u0018\u0001\u0001\u0001\u0001\u0001\u0001\u0001"+
|
|
613
|
+
"\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0005"+
|
|
614
|
+
"\u0002$\b\u0002\n\u0002\f\u0002\'\t\u0002\u0001\u0002\u0001\u0002\u0001"+
|
|
615
|
+
"\u0002\u0001\u0002\u0005\u0002-\b\u0002\n\u0002\f\u00020\t\u0002\u0003"+
|
|
616
|
+
"\u00022\b\u0002\u0001\u0002\u0001\u0002\u0001\u0003\u0001\u0003\u0001"+
|
|
617
|
+
"\u0003\u0001\u0003\u0001\u0003\u0003\u0003;\b\u0003\u0001\u0004\u0001"+
|
|
618
|
+
"\u0004\u0001\u0004\u0001\u0004\u0005\u0004A\b\u0004\n\u0004\f\u0004D\t"+
|
|
619
|
+
"\u0004\u0001\u0004\u0001\u0004\u0001\u0005\u0001\u0005\u0001\u0005\u0001"+
|
|
620
|
+
"\u0005\u0001\u0005\u0003\u0005M\b\u0005\u0001\u0006\u0001\u0006\u0001"+
|
|
621
|
+
"\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001"+
|
|
622
|
+
"\u0007\u0003\u0007X\b\u0007\u0001\b\u0001\b\u0001\t\u0001\t\u0001\t\u0000"+
|
|
623
|
+
"\u0000\n\u0000\u0002\u0004\u0006\b\n\f\u000e\u0010\u0012\u0000\u0002\u0001"+
|
|
624
|
+
"\u0000\u000b\f\u0001\u0000\u000f\u0013\\\u0000\u0014\u0001\u0000\u0000"+
|
|
625
|
+
"\u0000\u0002\u001a\u0001\u0000\u0000\u0000\u0004\u001d\u0001\u0000\u0000"+
|
|
626
|
+
"\u0000\u00065\u0001\u0000\u0000\u0000\b<\u0001\u0000\u0000\u0000\nG\u0001"+
|
|
627
|
+
"\u0000\u0000\u0000\fN\u0001\u0000\u0000\u0000\u000eW\u0001\u0000\u0000"+
|
|
628
|
+
"\u0000\u0010Y\u0001\u0000\u0000\u0000\u0012[\u0001\u0000\u0000\u0000\u0014"+
|
|
629
|
+
"\u0016\u0003\u0002\u0001\u0000\u0015\u0017\u0003\u0004\u0002\u0000\u0016"+
|
|
630
|
+
"\u0015\u0001\u0000\u0000\u0000\u0017\u0018\u0001\u0000\u0000\u0000\u0018"+
|
|
631
|
+
"\u0016\u0001\u0000\u0000\u0000\u0018\u0019\u0001\u0000\u0000\u0000\u0019"+
|
|
632
|
+
"\u0001\u0001\u0000\u0000\u0000\u001a\u001b\u0005\u0001\u0000\u0000\u001b"+
|
|
633
|
+
"\u001c\u0005\u0015\u0000\u0000\u001c\u0003\u0001\u0000\u0000\u0000\u001d"+
|
|
634
|
+
"\u001e\u0005\u0002\u0000\u0000\u001e\u001f\u0005\u0015\u0000\u0000\u001f"+
|
|
635
|
+
" \u0005\u0003\u0000\u0000 %\u0003\u0006\u0003\u0000!\"\u0005\u0004\u0000"+
|
|
636
|
+
"\u0000\"$\u0003\u0006\u0003\u0000#!\u0001\u0000\u0000\u0000$\'\u0001\u0000"+
|
|
637
|
+
"\u0000\u0000%#\u0001\u0000\u0000\u0000%&\u0001\u0000\u0000\u0000&1\u0001"+
|
|
638
|
+
"\u0000\u0000\u0000\'%\u0001\u0000\u0000\u0000()\u0005\u0004\u0000\u0000"+
|
|
639
|
+
").\u0003\n\u0005\u0000*+\u0005\u0004\u0000\u0000+-\u0003\n\u0005\u0000"+
|
|
640
|
+
",*\u0001\u0000\u0000\u0000-0\u0001\u0000\u0000\u0000.,\u0001\u0000\u0000"+
|
|
641
|
+
"\u0000./\u0001\u0000\u0000\u0000/2\u0001\u0000\u0000\u00000.\u0001\u0000"+
|
|
642
|
+
"\u0000\u00001(\u0001\u0000\u0000\u000012\u0001\u0000\u0000\u000023\u0001"+
|
|
643
|
+
"\u0000\u0000\u000034\u0005\u0005\u0000\u00004\u0005\u0001\u0000\u0000"+
|
|
644
|
+
"\u000056\u0005\u0006\u0000\u000067\u0005\u0014\u0000\u000078\u0005\u0007"+
|
|
645
|
+
"\u0000\u00008:\u0003\u000e\u0007\u00009;\u0003\b\u0004\u0000:9\u0001\u0000"+
|
|
646
|
+
"\u0000\u0000:;\u0001\u0000\u0000\u0000;\u0007\u0001\u0000\u0000\u0000"+
|
|
647
|
+
"<=\u0005\b\u0000\u0000=B\u0003\f\u0006\u0000>?\u0005\u0004\u0000\u0000"+
|
|
648
|
+
"?A\u0003\f\u0006\u0000@>\u0001\u0000\u0000\u0000AD\u0001\u0000\u0000\u0000"+
|
|
649
|
+
"B@\u0001\u0000\u0000\u0000BC\u0001\u0000\u0000\u0000CE\u0001\u0000\u0000"+
|
|
650
|
+
"\u0000DB\u0001\u0000\u0000\u0000EF\u0005\t\u0000\u0000F\t\u0001\u0000"+
|
|
651
|
+
"\u0000\u0000GH\u0005\n\u0000\u0000HI\u0005\u0014\u0000\u0000IJ\u0005\u0007"+
|
|
652
|
+
"\u0000\u0000JL\u0005\u0015\u0000\u0000KM\u0003\b\u0004\u0000LK\u0001\u0000"+
|
|
653
|
+
"\u0000\u0000LM\u0001\u0000\u0000\u0000M\u000b\u0001\u0000\u0000\u0000"+
|
|
654
|
+
"NO\u0007\u0000\u0000\u0000O\r\u0001\u0000\u0000\u0000PX\u0003\u0010\b"+
|
|
655
|
+
"\u0000QR\u0003\u0010\b\u0000RS\u0005\r\u0000\u0000SX\u0001\u0000\u0000"+
|
|
656
|
+
"\u0000TU\u0003\u0010\b\u0000UV\u0005\u000e\u0000\u0000VX\u0001\u0000\u0000"+
|
|
657
|
+
"\u0000WP\u0001\u0000\u0000\u0000WQ\u0001\u0000\u0000\u0000WT\u0001\u0000"+
|
|
658
|
+
"\u0000\u0000X\u000f\u0001\u0000\u0000\u0000YZ\u0003\u0012\t\u0000Z\u0011"+
|
|
659
|
+
"\u0001\u0000\u0000\u0000[\\\u0007\u0001\u0000\u0000\\\u0013\u0001\u0000"+
|
|
660
|
+
"\u0000\u0000\b\u0018%.1:BLW";
|
|
661
|
+
public static final ATN _ATN =
|
|
662
|
+
new ATNDeserializer().deserialize(_serializedATN.toCharArray());
|
|
663
|
+
static {
|
|
664
|
+
_decisionToDFA = new DFA[_ATN.getNumberOfDecisions()];
|
|
665
|
+
for (int i = 0; i < _ATN.getNumberOfDecisions(); i++) {
|
|
666
|
+
_decisionToDFA[i] = new DFA(_ATN.getDecisionState(i), i);
|
|
667
|
+
}
|
|
668
|
+
}
|
|
669
|
+
}
|