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,188 @@
|
|
|
1
|
+
// Generated from /Users/govindve/govi/Projects/NodeProjects/blend-cli/src/grammar/BlendReact.g4 by ANTLR 4.13.1
|
|
2
|
+
import org.antlr.v4.runtime.Lexer;
|
|
3
|
+
import org.antlr.v4.runtime.CharStream;
|
|
4
|
+
import org.antlr.v4.runtime.Token;
|
|
5
|
+
import org.antlr.v4.runtime.TokenStream;
|
|
6
|
+
import org.antlr.v4.runtime.*;
|
|
7
|
+
import org.antlr.v4.runtime.atn.*;
|
|
8
|
+
import org.antlr.v4.runtime.dfa.DFA;
|
|
9
|
+
import org.antlr.v4.runtime.misc.*;
|
|
10
|
+
|
|
11
|
+
@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast", "CheckReturnValue", "this-escape"})
|
|
12
|
+
public class BlendReactLexer extends Lexer {
|
|
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, PATH_IDENTIFIER=13, IDENTIFIER=14, CAPITAL_IDENTIFIER=15,
|
|
21
|
+
WS=16;
|
|
22
|
+
public static String[] channelNames = {
|
|
23
|
+
"DEFAULT_TOKEN_CHANNEL", "HIDDEN"
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
public static String[] modeNames = {
|
|
27
|
+
"DEFAULT_MODE"
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
private static String[] makeRuleNames() {
|
|
31
|
+
return new String[] {
|
|
32
|
+
"T__0", "T__1", "T__2", "T__3", "T__4", "T__5", "T__6", "T__7", "T__8",
|
|
33
|
+
"T__9", "T__10", "T__11", "PATH_IDENTIFIER", "IDENTIFIER", "CAPITAL_IDENTIFIER",
|
|
34
|
+
"WS"
|
|
35
|
+
};
|
|
36
|
+
}
|
|
37
|
+
public static final String[] ruleNames = makeRuleNames();
|
|
38
|
+
|
|
39
|
+
private static String[] makeLiteralNames() {
|
|
40
|
+
return new String[] {
|
|
41
|
+
null, "'module'", "'screen'", "','", "'under'", "'component'", "'layout'",
|
|
42
|
+
"'('", "')'", "'{'", "'}'", "'page'", "'view'"
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
private static final String[] _LITERAL_NAMES = makeLiteralNames();
|
|
46
|
+
private static String[] makeSymbolicNames() {
|
|
47
|
+
return new String[] {
|
|
48
|
+
null, null, null, null, null, null, null, null, null, null, null, null,
|
|
49
|
+
null, "PATH_IDENTIFIER", "IDENTIFIER", "CAPITAL_IDENTIFIER", "WS"
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames();
|
|
53
|
+
public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES);
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* @deprecated Use {@link #VOCABULARY} instead.
|
|
57
|
+
*/
|
|
58
|
+
@Deprecated
|
|
59
|
+
public static final String[] tokenNames;
|
|
60
|
+
static {
|
|
61
|
+
tokenNames = new String[_SYMBOLIC_NAMES.length];
|
|
62
|
+
for (int i = 0; i < tokenNames.length; i++) {
|
|
63
|
+
tokenNames[i] = VOCABULARY.getLiteralName(i);
|
|
64
|
+
if (tokenNames[i] == null) {
|
|
65
|
+
tokenNames[i] = VOCABULARY.getSymbolicName(i);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
if (tokenNames[i] == null) {
|
|
69
|
+
tokenNames[i] = "<INVALID>";
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
@Override
|
|
75
|
+
@Deprecated
|
|
76
|
+
public String[] getTokenNames() {
|
|
77
|
+
return tokenNames;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
@Override
|
|
81
|
+
|
|
82
|
+
public Vocabulary getVocabulary() {
|
|
83
|
+
return VOCABULARY;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
public BlendReactLexer(CharStream input) {
|
|
88
|
+
super(input);
|
|
89
|
+
_interp = new LexerATNSimulator(this,_ATN,_decisionToDFA,_sharedContextCache);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
@Override
|
|
93
|
+
public String getGrammarFileName() { return "BlendReact.g4"; }
|
|
94
|
+
|
|
95
|
+
@Override
|
|
96
|
+
public String[] getRuleNames() { return ruleNames; }
|
|
97
|
+
|
|
98
|
+
@Override
|
|
99
|
+
public String getSerializedATN() { return _serializedATN; }
|
|
100
|
+
|
|
101
|
+
@Override
|
|
102
|
+
public String[] getChannelNames() { return channelNames; }
|
|
103
|
+
|
|
104
|
+
@Override
|
|
105
|
+
public String[] getModeNames() { return modeNames; }
|
|
106
|
+
|
|
107
|
+
@Override
|
|
108
|
+
public ATN getATN() { return _ATN; }
|
|
109
|
+
|
|
110
|
+
public static final String _serializedATN =
|
|
111
|
+
"\u0004\u0000\u0010x\u0006\uffff\uffff\u0002\u0000\u0007\u0000\u0002\u0001"+
|
|
112
|
+
"\u0007\u0001\u0002\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002\u0004"+
|
|
113
|
+
"\u0007\u0004\u0002\u0005\u0007\u0005\u0002\u0006\u0007\u0006\u0002\u0007"+
|
|
114
|
+
"\u0007\u0007\u0002\b\u0007\b\u0002\t\u0007\t\u0002\n\u0007\n\u0002\u000b"+
|
|
115
|
+
"\u0007\u000b\u0002\f\u0007\f\u0002\r\u0007\r\u0002\u000e\u0007\u000e\u0002"+
|
|
116
|
+
"\u000f\u0007\u000f\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0000\u0001"+
|
|
117
|
+
"\u0000\u0001\u0000\u0001\u0000\u0001\u0001\u0001\u0001\u0001\u0001\u0001"+
|
|
118
|
+
"\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0002\u0001\u0002\u0001"+
|
|
119
|
+
"\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001"+
|
|
120
|
+
"\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001"+
|
|
121
|
+
"\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0005\u0001\u0005\u0001"+
|
|
122
|
+
"\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0006\u0001"+
|
|
123
|
+
"\u0006\u0001\u0007\u0001\u0007\u0001\b\u0001\b\u0001\t\u0001\t\u0001\n"+
|
|
124
|
+
"\u0001\n\u0001\n\u0001\n\u0001\n\u0001\u000b\u0001\u000b\u0001\u000b\u0001"+
|
|
125
|
+
"\u000b\u0001\u000b\u0001\f\u0001\f\u0005\f]\b\f\n\f\f\f`\t\f\u0001\f\u0001"+
|
|
126
|
+
"\f\u0001\r\u0001\r\u0005\rf\b\r\n\r\f\ri\t\r\u0001\u000e\u0001\u000e\u0005"+
|
|
127
|
+
"\u000em\b\u000e\n\u000e\f\u000ep\t\u000e\u0001\u000f\u0004\u000fs\b\u000f"+
|
|
128
|
+
"\u000b\u000f\f\u000ft\u0001\u000f\u0001\u000f\u0000\u0000\u0010\u0001"+
|
|
129
|
+
"\u0001\u0003\u0002\u0005\u0003\u0007\u0004\t\u0005\u000b\u0006\r\u0007"+
|
|
130
|
+
"\u000f\b\u0011\t\u0013\n\u0015\u000b\u0017\f\u0019\r\u001b\u000e\u001d"+
|
|
131
|
+
"\u000f\u001f\u0010\u0001\u0000\u0005\u0004\u0000/9AZ__az\u0002\u0000_"+
|
|
132
|
+
"_az\u0004\u000009AZ__az\u0001\u0000AZ\u0003\u0000\t\n\r\r {\u0000\u0001"+
|
|
133
|
+
"\u0001\u0000\u0000\u0000\u0000\u0003\u0001\u0000\u0000\u0000\u0000\u0005"+
|
|
134
|
+
"\u0001\u0000\u0000\u0000\u0000\u0007\u0001\u0000\u0000\u0000\u0000\t\u0001"+
|
|
135
|
+
"\u0000\u0000\u0000\u0000\u000b\u0001\u0000\u0000\u0000\u0000\r\u0001\u0000"+
|
|
136
|
+
"\u0000\u0000\u0000\u000f\u0001\u0000\u0000\u0000\u0000\u0011\u0001\u0000"+
|
|
137
|
+
"\u0000\u0000\u0000\u0013\u0001\u0000\u0000\u0000\u0000\u0015\u0001\u0000"+
|
|
138
|
+
"\u0000\u0000\u0000\u0017\u0001\u0000\u0000\u0000\u0000\u0019\u0001\u0000"+
|
|
139
|
+
"\u0000\u0000\u0000\u001b\u0001\u0000\u0000\u0000\u0000\u001d\u0001\u0000"+
|
|
140
|
+
"\u0000\u0000\u0000\u001f\u0001\u0000\u0000\u0000\u0001!\u0001\u0000\u0000"+
|
|
141
|
+
"\u0000\u0003(\u0001\u0000\u0000\u0000\u0005/\u0001\u0000\u0000\u0000\u0007"+
|
|
142
|
+
"1\u0001\u0000\u0000\u0000\t7\u0001\u0000\u0000\u0000\u000bA\u0001\u0000"+
|
|
143
|
+
"\u0000\u0000\rH\u0001\u0000\u0000\u0000\u000fJ\u0001\u0000\u0000\u0000"+
|
|
144
|
+
"\u0011L\u0001\u0000\u0000\u0000\u0013N\u0001\u0000\u0000\u0000\u0015P"+
|
|
145
|
+
"\u0001\u0000\u0000\u0000\u0017U\u0001\u0000\u0000\u0000\u0019Z\u0001\u0000"+
|
|
146
|
+
"\u0000\u0000\u001bc\u0001\u0000\u0000\u0000\u001dj\u0001\u0000\u0000\u0000"+
|
|
147
|
+
"\u001fr\u0001\u0000\u0000\u0000!\"\u0005m\u0000\u0000\"#\u0005o\u0000"+
|
|
148
|
+
"\u0000#$\u0005d\u0000\u0000$%\u0005u\u0000\u0000%&\u0005l\u0000\u0000"+
|
|
149
|
+
"&\'\u0005e\u0000\u0000\'\u0002\u0001\u0000\u0000\u0000()\u0005s\u0000"+
|
|
150
|
+
"\u0000)*\u0005c\u0000\u0000*+\u0005r\u0000\u0000+,\u0005e\u0000\u0000"+
|
|
151
|
+
",-\u0005e\u0000\u0000-.\u0005n\u0000\u0000.\u0004\u0001\u0000\u0000\u0000"+
|
|
152
|
+
"/0\u0005,\u0000\u00000\u0006\u0001\u0000\u0000\u000012\u0005u\u0000\u0000"+
|
|
153
|
+
"23\u0005n\u0000\u000034\u0005d\u0000\u000045\u0005e\u0000\u000056\u0005"+
|
|
154
|
+
"r\u0000\u00006\b\u0001\u0000\u0000\u000078\u0005c\u0000\u000089\u0005"+
|
|
155
|
+
"o\u0000\u00009:\u0005m\u0000\u0000:;\u0005p\u0000\u0000;<\u0005o\u0000"+
|
|
156
|
+
"\u0000<=\u0005n\u0000\u0000=>\u0005e\u0000\u0000>?\u0005n\u0000\u0000"+
|
|
157
|
+
"?@\u0005t\u0000\u0000@\n\u0001\u0000\u0000\u0000AB\u0005l\u0000\u0000"+
|
|
158
|
+
"BC\u0005a\u0000\u0000CD\u0005y\u0000\u0000DE\u0005o\u0000\u0000EF\u0005"+
|
|
159
|
+
"u\u0000\u0000FG\u0005t\u0000\u0000G\f\u0001\u0000\u0000\u0000HI\u0005"+
|
|
160
|
+
"(\u0000\u0000I\u000e\u0001\u0000\u0000\u0000JK\u0005)\u0000\u0000K\u0010"+
|
|
161
|
+
"\u0001\u0000\u0000\u0000LM\u0005{\u0000\u0000M\u0012\u0001\u0000\u0000"+
|
|
162
|
+
"\u0000NO\u0005}\u0000\u0000O\u0014\u0001\u0000\u0000\u0000PQ\u0005p\u0000"+
|
|
163
|
+
"\u0000QR\u0005a\u0000\u0000RS\u0005g\u0000\u0000ST\u0005e\u0000\u0000"+
|
|
164
|
+
"T\u0016\u0001\u0000\u0000\u0000UV\u0005v\u0000\u0000VW\u0005i\u0000\u0000"+
|
|
165
|
+
"WX\u0005e\u0000\u0000XY\u0005w\u0000\u0000Y\u0018\u0001\u0000\u0000\u0000"+
|
|
166
|
+
"Z^\u0005\"\u0000\u0000[]\u0007\u0000\u0000\u0000\\[\u0001\u0000\u0000"+
|
|
167
|
+
"\u0000]`\u0001\u0000\u0000\u0000^\\\u0001\u0000\u0000\u0000^_\u0001\u0000"+
|
|
168
|
+
"\u0000\u0000_a\u0001\u0000\u0000\u0000`^\u0001\u0000\u0000\u0000ab\u0005"+
|
|
169
|
+
"\"\u0000\u0000b\u001a\u0001\u0000\u0000\u0000cg\u0007\u0001\u0000\u0000"+
|
|
170
|
+
"df\u0007\u0002\u0000\u0000ed\u0001\u0000\u0000\u0000fi\u0001\u0000\u0000"+
|
|
171
|
+
"\u0000ge\u0001\u0000\u0000\u0000gh\u0001\u0000\u0000\u0000h\u001c\u0001"+
|
|
172
|
+
"\u0000\u0000\u0000ig\u0001\u0000\u0000\u0000jn\u0007\u0003\u0000\u0000"+
|
|
173
|
+
"km\u0007\u0002\u0000\u0000lk\u0001\u0000\u0000\u0000mp\u0001\u0000\u0000"+
|
|
174
|
+
"\u0000nl\u0001\u0000\u0000\u0000no\u0001\u0000\u0000\u0000o\u001e\u0001"+
|
|
175
|
+
"\u0000\u0000\u0000pn\u0001\u0000\u0000\u0000qs\u0007\u0004\u0000\u0000"+
|
|
176
|
+
"rq\u0001\u0000\u0000\u0000st\u0001\u0000\u0000\u0000tr\u0001\u0000\u0000"+
|
|
177
|
+
"\u0000tu\u0001\u0000\u0000\u0000uv\u0001\u0000\u0000\u0000vw\u0006\u000f"+
|
|
178
|
+
"\u0000\u0000w \u0001\u0000\u0000\u0000\u0005\u0000^gnt\u0001\u0006\u0000"+
|
|
179
|
+
"\u0000";
|
|
180
|
+
public static final ATN _ATN =
|
|
181
|
+
new ATNDeserializer().deserialize(_serializedATN.toCharArray());
|
|
182
|
+
static {
|
|
183
|
+
_decisionToDFA = new DFA[_ATN.getNumberOfDecisions()];
|
|
184
|
+
for (int i = 0; i < _ATN.getNumberOfDecisions(); i++) {
|
|
185
|
+
_decisionToDFA[i] = new DFA(_ATN.getDecisionState(i), i);
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
T__0=1
|
|
2
|
+
T__1=2
|
|
3
|
+
T__2=3
|
|
4
|
+
T__3=4
|
|
5
|
+
T__4=5
|
|
6
|
+
T__5=6
|
|
7
|
+
T__6=7
|
|
8
|
+
T__7=8
|
|
9
|
+
T__8=9
|
|
10
|
+
T__9=10
|
|
11
|
+
T__10=11
|
|
12
|
+
T__11=12
|
|
13
|
+
PATH_IDENTIFIER=13
|
|
14
|
+
IDENTIFIER=14
|
|
15
|
+
CAPITAL_IDENTIFIER=15
|
|
16
|
+
WS=16
|
|
17
|
+
'module'=1
|
|
18
|
+
'screen'=2
|
|
19
|
+
','=3
|
|
20
|
+
'under'=4
|
|
21
|
+
'component'=5
|
|
22
|
+
'layout'=6
|
|
23
|
+
'('=7
|
|
24
|
+
')'=8
|
|
25
|
+
'{'=9
|
|
26
|
+
'}'=10
|
|
27
|
+
'page'=11
|
|
28
|
+
'view'=12
|