circuitscript 0.1.29 → 0.1.31
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/cjs/BaseVisitor.js +150 -21
- package/dist/cjs/antlr/CircuitScriptLexer.js +241 -236
- package/dist/cjs/antlr/CircuitScriptParser.js +568 -431
- package/dist/cjs/builtinMethods.js +6 -2
- package/dist/cjs/environment.js +4 -0
- package/dist/cjs/execute.js +88 -57
- package/dist/cjs/globals.js +4 -1
- package/dist/cjs/helpers.js +6 -2
- package/dist/cjs/objects/ExecutionScope.js +9 -0
- package/dist/cjs/objects/types.js +21 -2
- package/dist/cjs/parser.js +6 -2
- package/dist/cjs/validate/SymbolTable.js +7 -1
- package/dist/cjs/validate/SymbolValidatorVisitor.js +54 -7
- package/dist/cjs/visitor.js +15 -47
- package/dist/esm/BaseVisitor.js +152 -23
- package/dist/esm/antlr/CircuitScriptLexer.js +241 -236
- package/dist/esm/antlr/CircuitScriptParser.js +567 -429
- package/dist/esm/antlr/CircuitScriptVisitor.js +3 -1
- package/dist/esm/builtinMethods.js +7 -3
- package/dist/esm/environment.js +4 -0
- package/dist/esm/execute.js +89 -58
- package/dist/esm/globals.js +2 -0
- package/dist/esm/helpers.js +6 -2
- package/dist/esm/objects/ExecutionScope.js +9 -0
- package/dist/esm/objects/types.js +27 -1
- package/dist/esm/parser.js +6 -2
- package/dist/esm/validate/SymbolTable.js +5 -0
- package/dist/esm/validate/SymbolValidatorVisitor.js +53 -6
- package/dist/esm/visitor.js +16 -45
- package/dist/types/BaseVisitor.d.ts +12 -5
- package/dist/types/antlr/CircuitScriptLexer.d.ts +43 -42
- package/dist/types/antlr/CircuitScriptParser.d.ts +71 -45
- package/dist/types/antlr/CircuitScriptVisitor.d.ts +6 -2
- package/dist/types/environment.d.ts +1 -0
- package/dist/types/execute.d.ts +2 -2
- package/dist/types/globals.d.ts +2 -0
- package/dist/types/objects/ExecutionScope.d.ts +3 -1
- package/dist/types/objects/types.d.ts +22 -1
- package/dist/types/validate/SymbolTable.d.ts +1 -0
- package/dist/types/validate/SymbolValidatorVisitor.d.ts +6 -2
- package/dist/types/visitor.d.ts +3 -1
- package/package.json +4 -1
|
@@ -25,50 +25,51 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
25
25
|
static Return = 23;
|
|
26
26
|
static Define = 24;
|
|
27
27
|
static Import = 25;
|
|
28
|
-
static
|
|
29
|
-
static
|
|
30
|
-
static
|
|
31
|
-
static
|
|
32
|
-
static
|
|
33
|
-
static
|
|
34
|
-
static
|
|
35
|
-
static
|
|
36
|
-
static
|
|
37
|
-
static
|
|
38
|
-
static
|
|
39
|
-
static
|
|
40
|
-
static
|
|
41
|
-
static
|
|
42
|
-
static
|
|
43
|
-
static
|
|
44
|
-
static
|
|
45
|
-
static
|
|
46
|
-
static
|
|
47
|
-
static
|
|
48
|
-
static
|
|
49
|
-
static
|
|
50
|
-
static
|
|
51
|
-
static
|
|
52
|
-
static
|
|
53
|
-
static
|
|
54
|
-
static
|
|
55
|
-
static
|
|
56
|
-
static
|
|
57
|
-
static
|
|
58
|
-
static
|
|
59
|
-
static
|
|
60
|
-
static
|
|
61
|
-
static
|
|
62
|
-
static
|
|
63
|
-
static
|
|
64
|
-
static
|
|
65
|
-
static
|
|
66
|
-
static
|
|
67
|
-
static
|
|
68
|
-
static
|
|
69
|
-
static
|
|
70
|
-
static
|
|
71
|
-
static
|
|
28
|
+
static From = 26;
|
|
29
|
+
static For = 27;
|
|
30
|
+
static In = 28;
|
|
31
|
+
static While = 29;
|
|
32
|
+
static Continue = 30;
|
|
33
|
+
static If = 31;
|
|
34
|
+
static Else = 32;
|
|
35
|
+
static Not = 33;
|
|
36
|
+
static Frame = 34;
|
|
37
|
+
static Sheet = 35;
|
|
38
|
+
static Equals = 36;
|
|
39
|
+
static NotEquals = 37;
|
|
40
|
+
static GreaterThan = 38;
|
|
41
|
+
static GreatOrEqualThan = 39;
|
|
42
|
+
static LessThan = 40;
|
|
43
|
+
static LessOrEqualThan = 41;
|
|
44
|
+
static LogicalAnd = 42;
|
|
45
|
+
static LogicalOr = 43;
|
|
46
|
+
static Addition = 44;
|
|
47
|
+
static Minus = 45;
|
|
48
|
+
static Divide = 46;
|
|
49
|
+
static Multiply = 47;
|
|
50
|
+
static Modulus = 48;
|
|
51
|
+
static AdditionAssign = 49;
|
|
52
|
+
static MinusAssign = 50;
|
|
53
|
+
static DivideAssign = 51;
|
|
54
|
+
static MultiplyAssign = 52;
|
|
55
|
+
static ModulusAssign = 53;
|
|
56
|
+
static ANNOTATION_START = 54;
|
|
57
|
+
static OPEN_PAREN = 55;
|
|
58
|
+
static CLOSE_PAREN = 56;
|
|
59
|
+
static NOT_CONNECTED = 57;
|
|
60
|
+
static BOOLEAN_VALUE = 58;
|
|
61
|
+
static ID = 59;
|
|
62
|
+
static INTEGER_VALUE = 60;
|
|
63
|
+
static DECIMAL_VALUE = 61;
|
|
64
|
+
static NUMERIC_VALUE = 62;
|
|
65
|
+
static STRING_VALUE = 63;
|
|
66
|
+
static PERCENTAGE_VALUE = 64;
|
|
67
|
+
static ALPHA_NUMERIC = 65;
|
|
68
|
+
static WS = 66;
|
|
69
|
+
static NEWLINE = 67;
|
|
70
|
+
static COMMENT = 68;
|
|
71
|
+
static INDENT = 69;
|
|
72
|
+
static DEDENT = 70;
|
|
72
73
|
static RULE_script = 0;
|
|
73
74
|
static RULE_expression = 1;
|
|
74
75
|
static RULE_flow_expressions = 2;
|
|
@@ -147,17 +148,17 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
147
148
|
null, "':'", "','", "'='", "'..'", "'['", "']'", "'.'", "'set'",
|
|
148
149
|
"'break'", "'branch'", "'create'", "'component'", "'graphic'", "'module'",
|
|
149
150
|
"'wire'", "'pin'", "'add'", "'at'", "'to'", "'point'", "'join'",
|
|
150
|
-
"'parallel'", "'return'", "'def'", "'import'", "'
|
|
151
|
-
"'while'", "'continue'", "'if'", "'else'", null, "'frame'",
|
|
152
|
-
"'=='", "'!='", "'>'", "'>='", "'<'", "'<='", null, null,
|
|
153
|
-
"'-'", "'/'", "'*'", "'%'", "'+='", "'-='", "'/='", "'*='",
|
|
154
|
-
"'#='", "'('", "')'"
|
|
151
|
+
"'parallel'", "'return'", "'def'", "'import'", "'from'", "'for'",
|
|
152
|
+
"'in'", "'while'", "'continue'", "'if'", "'else'", null, "'frame'",
|
|
153
|
+
"'sheet'", "'=='", "'!='", "'>'", "'>='", "'<'", "'<='", null, null,
|
|
154
|
+
"'+'", "'-'", "'/'", "'*'", "'%'", "'+='", "'-='", "'/='", "'*='",
|
|
155
|
+
"'%='", "'#='", "'('", "')'"
|
|
155
156
|
];
|
|
156
157
|
static symbolicNames = [
|
|
157
158
|
null, null, null, null, null, null, null, null, null, "Break", "Branch",
|
|
158
159
|
"Create", "Component", "Graphic", "Module", "Wire", "Pin", "Add",
|
|
159
160
|
"At", "To", "Point", "Join", "Parallel", "Return", "Define", "Import",
|
|
160
|
-
"For", "In", "While", "Continue", "If", "Else", "Not", "Frame",
|
|
161
|
+
"From", "For", "In", "While", "Continue", "If", "Else", "Not", "Frame",
|
|
161
162
|
"Sheet", "Equals", "NotEquals", "GreaterThan", "GreatOrEqualThan",
|
|
162
163
|
"LessThan", "LessOrEqualThan", "LogicalAnd", "LogicalOr", "Addition",
|
|
163
164
|
"Minus", "Divide", "Multiply", "Modulus", "AdditionAssign", "MinusAssign",
|
|
@@ -220,6 +221,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
220
221
|
this.errorHandler.sync(this);
|
|
221
222
|
switch (this.tokenStream.LA(1)) {
|
|
222
223
|
case CircuitScriptParser.Import:
|
|
224
|
+
case CircuitScriptParser.From:
|
|
223
225
|
{
|
|
224
226
|
this.state = 148;
|
|
225
227
|
this.import_expr();
|
|
@@ -261,6 +263,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
261
263
|
case CircuitScriptParser.Parallel:
|
|
262
264
|
case CircuitScriptParser.Define:
|
|
263
265
|
case CircuitScriptParser.Import:
|
|
266
|
+
case CircuitScriptParser.From:
|
|
264
267
|
case CircuitScriptParser.For:
|
|
265
268
|
case CircuitScriptParser.While:
|
|
266
269
|
case CircuitScriptParser.Continue:
|
|
@@ -289,7 +292,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
289
292
|
this.state = 159;
|
|
290
293
|
this.errorHandler.sync(this);
|
|
291
294
|
_la = this.tokenStream.LA(1);
|
|
292
|
-
} while (((((_la - 4)) & ~0x1F) === 0 && ((1 << (_la - 4)) &
|
|
295
|
+
} while (((((_la - 4)) & ~0x1F) === 0 && ((1 << (_la - 4)) & 3472353393) !== 0) || ((((_la - 44)) & ~0x1F) === 0 && ((1 << (_la - 44)) & 8422405) !== 0));
|
|
293
296
|
this.state = 161;
|
|
294
297
|
this.match(CircuitScriptParser.EOF);
|
|
295
298
|
}
|
|
@@ -629,6 +632,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
629
632
|
case CircuitScriptParser.Parallel:
|
|
630
633
|
case CircuitScriptParser.Define:
|
|
631
634
|
case CircuitScriptParser.Import:
|
|
635
|
+
case CircuitScriptParser.From:
|
|
632
636
|
case CircuitScriptParser.For:
|
|
633
637
|
case CircuitScriptParser.While:
|
|
634
638
|
case CircuitScriptParser.Continue:
|
|
@@ -651,7 +655,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
651
655
|
this.state = 204;
|
|
652
656
|
this.errorHandler.sync(this);
|
|
653
657
|
_la = this.tokenStream.LA(1);
|
|
654
|
-
} while (((((_la - 4)) & ~0x1F) === 0 && ((1 << (_la - 4)) &
|
|
658
|
+
} while (((((_la - 4)) & ~0x1F) === 0 && ((1 << (_la - 4)) & 3472353393) !== 0) || ((((_la - 44)) & ~0x1F) === 0 && ((1 << (_la - 44)) & 8422405) !== 0));
|
|
655
659
|
this.state = 206;
|
|
656
660
|
this.match(CircuitScriptParser.DEDENT);
|
|
657
661
|
}
|
|
@@ -749,7 +753,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
749
753
|
this.state = 220;
|
|
750
754
|
this.errorHandler.sync(this);
|
|
751
755
|
_la = this.tokenStream.LA(1);
|
|
752
|
-
} while (((((_la -
|
|
756
|
+
} while (((((_la - 59)) & ~0x1F) === 0 && ((1 << (_la - 59)) & 259) !== 0));
|
|
753
757
|
this.state = 222;
|
|
754
758
|
this.match(CircuitScriptParser.DEDENT);
|
|
755
759
|
}
|
|
@@ -777,7 +781,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
777
781
|
{
|
|
778
782
|
this.state = 224;
|
|
779
783
|
_la = this.tokenStream.LA(1);
|
|
780
|
-
if (!(_la ===
|
|
784
|
+
if (!(_la === 59 || _la === 60)) {
|
|
781
785
|
this.errorHandler.recoverInline(this);
|
|
782
786
|
}
|
|
783
787
|
else {
|
|
@@ -1039,7 +1043,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
1039
1043
|
{
|
|
1040
1044
|
this.state = 258;
|
|
1041
1045
|
_la = this.tokenStream.LA(1);
|
|
1042
|
-
if (!(_la ===
|
|
1046
|
+
if (!(_la === 60 || _la === 63)) {
|
|
1043
1047
|
this.errorHandler.recoverInline(this);
|
|
1044
1048
|
}
|
|
1045
1049
|
else {
|
|
@@ -1198,7 +1202,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
1198
1202
|
this.state = 290;
|
|
1199
1203
|
this.errorHandler.sync(this);
|
|
1200
1204
|
_la = this.tokenStream.LA(1);
|
|
1201
|
-
} while (((((_la -
|
|
1205
|
+
} while (((((_la - 60)) & ~0x1F) === 0 && ((1 << (_la - 60)) & 137) !== 0));
|
|
1202
1206
|
this.state = 292;
|
|
1203
1207
|
this.match(CircuitScriptParser.DEDENT);
|
|
1204
1208
|
}
|
|
@@ -1271,7 +1275,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
1271
1275
|
{
|
|
1272
1276
|
this.state = 304;
|
|
1273
1277
|
_la = this.tokenStream.LA(1);
|
|
1274
|
-
if (!(_la ===
|
|
1278
|
+
if (!(_la === 57 || _la === 60)) {
|
|
1275
1279
|
this.errorHandler.recoverInline(this);
|
|
1276
1280
|
}
|
|
1277
1281
|
else {
|
|
@@ -1334,6 +1338,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
1334
1338
|
case CircuitScriptParser.Parallel:
|
|
1335
1339
|
case CircuitScriptParser.Define:
|
|
1336
1340
|
case CircuitScriptParser.Import:
|
|
1341
|
+
case CircuitScriptParser.From:
|
|
1337
1342
|
case CircuitScriptParser.For:
|
|
1338
1343
|
case CircuitScriptParser.While:
|
|
1339
1344
|
case CircuitScriptParser.Continue:
|
|
@@ -1358,7 +1363,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
1358
1363
|
this.state = 313;
|
|
1359
1364
|
this.errorHandler.sync(this);
|
|
1360
1365
|
_la = this.tokenStream.LA(1);
|
|
1361
|
-
} while (((((_la - 4)) & ~0x1F) === 0 && ((1 << (_la - 4)) &
|
|
1366
|
+
} while (((((_la - 4)) & ~0x1F) === 0 && ((1 << (_la - 4)) & 3472353393) !== 0) || ((((_la - 44)) & ~0x1F) === 0 && ((1 << (_la - 44)) & 9012229) !== 0));
|
|
1362
1367
|
this.state = 315;
|
|
1363
1368
|
this.match(CircuitScriptParser.DEDENT);
|
|
1364
1369
|
}
|
|
@@ -1397,6 +1402,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
1397
1402
|
case CircuitScriptParser.Parallel:
|
|
1398
1403
|
case CircuitScriptParser.Define:
|
|
1399
1404
|
case CircuitScriptParser.Import:
|
|
1405
|
+
case CircuitScriptParser.From:
|
|
1400
1406
|
case CircuitScriptParser.For:
|
|
1401
1407
|
case CircuitScriptParser.While:
|
|
1402
1408
|
case CircuitScriptParser.Continue:
|
|
@@ -1453,7 +1459,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
1453
1459
|
this.state = 326;
|
|
1454
1460
|
this.errorHandler.sync(this);
|
|
1455
1461
|
_la = this.tokenStream.LA(1);
|
|
1456
|
-
while (_la ===
|
|
1462
|
+
while (_la === 54) {
|
|
1457
1463
|
{
|
|
1458
1464
|
{
|
|
1459
1465
|
this.state = 323;
|
|
@@ -1506,6 +1512,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
1506
1512
|
case CircuitScriptParser.Parallel:
|
|
1507
1513
|
case CircuitScriptParser.Define:
|
|
1508
1514
|
case CircuitScriptParser.Import:
|
|
1515
|
+
case CircuitScriptParser.From:
|
|
1509
1516
|
case CircuitScriptParser.For:
|
|
1510
1517
|
case CircuitScriptParser.While:
|
|
1511
1518
|
case CircuitScriptParser.Continue:
|
|
@@ -1569,6 +1576,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
1569
1576
|
case CircuitScriptParser.Parallel:
|
|
1570
1577
|
case CircuitScriptParser.Define:
|
|
1571
1578
|
case CircuitScriptParser.Import:
|
|
1579
|
+
case CircuitScriptParser.From:
|
|
1572
1580
|
case CircuitScriptParser.For:
|
|
1573
1581
|
case CircuitScriptParser.While:
|
|
1574
1582
|
case CircuitScriptParser.Continue:
|
|
@@ -1686,7 +1694,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
1686
1694
|
this.atom_expr();
|
|
1687
1695
|
this.state = 349;
|
|
1688
1696
|
_la = this.tokenStream.LA(1);
|
|
1689
|
-
if (!(((((_la -
|
|
1697
|
+
if (!(((((_la - 49)) & ~0x1F) === 0 && ((1 << (_la - 49)) & 31) !== 0))) {
|
|
1690
1698
|
this.errorHandler.recoverInline(this);
|
|
1691
1699
|
}
|
|
1692
1700
|
else {
|
|
@@ -2033,7 +2041,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
2033
2041
|
}
|
|
2034
2042
|
this.state = 410;
|
|
2035
2043
|
_la = this.tokenStream.LA(1);
|
|
2036
|
-
if (!(((((_la -
|
|
2044
|
+
if (!(((((_la - 46)) & ~0x1F) === 0 && ((1 << (_la - 46)) & 7) !== 0))) {
|
|
2037
2045
|
this.errorHandler.recoverInline(this);
|
|
2038
2046
|
}
|
|
2039
2047
|
else {
|
|
@@ -2054,7 +2062,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
2054
2062
|
}
|
|
2055
2063
|
this.state = 413;
|
|
2056
2064
|
_la = this.tokenStream.LA(1);
|
|
2057
|
-
if (!(_la ===
|
|
2065
|
+
if (!(_la === 44 || _la === 45)) {
|
|
2058
2066
|
this.errorHandler.recoverInline(this);
|
|
2059
2067
|
}
|
|
2060
2068
|
else {
|
|
@@ -2089,7 +2097,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
2089
2097
|
}
|
|
2090
2098
|
this.state = 420;
|
|
2091
2099
|
_la = this.tokenStream.LA(1);
|
|
2092
|
-
if (!(_la ===
|
|
2100
|
+
if (!(_la === 42 || _la === 43)) {
|
|
2093
2101
|
this.errorHandler.recoverInline(this);
|
|
2094
2102
|
}
|
|
2095
2103
|
else {
|
|
@@ -2148,7 +2156,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
2148
2156
|
{
|
|
2149
2157
|
this.state = 432;
|
|
2150
2158
|
_la = this.tokenStream.LA(1);
|
|
2151
|
-
if (!(((((_la -
|
|
2159
|
+
if (!(((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 63) !== 0))) {
|
|
2152
2160
|
this.errorHandler.recoverInline(this);
|
|
2153
2161
|
}
|
|
2154
2162
|
else {
|
|
@@ -2180,7 +2188,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
2180
2188
|
{
|
|
2181
2189
|
this.state = 434;
|
|
2182
2190
|
_la = this.tokenStream.LA(1);
|
|
2183
|
-
if (!(_la ===
|
|
2191
|
+
if (!(_la === 33 || _la === 45)) {
|
|
2184
2192
|
this.errorHandler.recoverInline(this);
|
|
2185
2193
|
}
|
|
2186
2194
|
else {
|
|
@@ -2214,7 +2222,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
2214
2222
|
this.state = 437;
|
|
2215
2223
|
this.errorHandler.sync(this);
|
|
2216
2224
|
_la = this.tokenStream.LA(1);
|
|
2217
|
-
if (_la ===
|
|
2225
|
+
if (_la === 45) {
|
|
2218
2226
|
{
|
|
2219
2227
|
this.state = 436;
|
|
2220
2228
|
this.match(CircuitScriptParser.Minus);
|
|
@@ -2222,7 +2230,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
2222
2230
|
}
|
|
2223
2231
|
this.state = 439;
|
|
2224
2232
|
_la = this.tokenStream.LA(1);
|
|
2225
|
-
if (!(((((_la -
|
|
2233
|
+
if (!(((((_la - 58)) & ~0x1F) === 0 && ((1 << (_la - 58)) & 125) !== 0))) {
|
|
2226
2234
|
this.errorHandler.recoverInline(this);
|
|
2227
2235
|
}
|
|
2228
2236
|
else {
|
|
@@ -2262,7 +2270,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
2262
2270
|
this.state = 445;
|
|
2263
2271
|
this.errorHandler.sync(this);
|
|
2264
2272
|
_la = this.tokenStream.LA(1);
|
|
2265
|
-
if (_la ===
|
|
2273
|
+
if (_la === 59) {
|
|
2266
2274
|
{
|
|
2267
2275
|
this.state = 444;
|
|
2268
2276
|
this.function_args_expr();
|
|
@@ -2304,6 +2312,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
2304
2312
|
case CircuitScriptParser.Return:
|
|
2305
2313
|
case CircuitScriptParser.Define:
|
|
2306
2314
|
case CircuitScriptParser.Import:
|
|
2315
|
+
case CircuitScriptParser.From:
|
|
2307
2316
|
case CircuitScriptParser.For:
|
|
2308
2317
|
case CircuitScriptParser.While:
|
|
2309
2318
|
case CircuitScriptParser.Continue:
|
|
@@ -2326,7 +2335,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
2326
2335
|
this.state = 455;
|
|
2327
2336
|
this.errorHandler.sync(this);
|
|
2328
2337
|
_la = this.tokenStream.LA(1);
|
|
2329
|
-
} while (((((_la - 4)) & ~0x1F) === 0 && ((1 << (_la - 4)) &
|
|
2338
|
+
} while (((((_la - 4)) & ~0x1F) === 0 && ((1 << (_la - 4)) & 3472877681) !== 0) || ((((_la - 44)) & ~0x1F) === 0 && ((1 << (_la - 44)) & 8422405) !== 0));
|
|
2330
2339
|
this.state = 457;
|
|
2331
2340
|
this.match(CircuitScriptParser.DEDENT);
|
|
2332
2341
|
}
|
|
@@ -2365,6 +2374,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
2365
2374
|
case CircuitScriptParser.Parallel:
|
|
2366
2375
|
case CircuitScriptParser.Define:
|
|
2367
2376
|
case CircuitScriptParser.Import:
|
|
2377
|
+
case CircuitScriptParser.From:
|
|
2368
2378
|
case CircuitScriptParser.For:
|
|
2369
2379
|
case CircuitScriptParser.While:
|
|
2370
2380
|
case CircuitScriptParser.Continue:
|
|
@@ -2564,7 +2574,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
2564
2574
|
this.state = 503;
|
|
2565
2575
|
this.errorHandler.sync(this);
|
|
2566
2576
|
_la = this.tokenStream.LA(1);
|
|
2567
|
-
if (_la === 5 || _la === 11 || ((((_la -
|
|
2577
|
+
if (_la === 5 || _la === 11 || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 4265621505) !== 0)) {
|
|
2568
2578
|
{
|
|
2569
2579
|
this.state = 502;
|
|
2570
2580
|
this.parameters();
|
|
@@ -2656,7 +2666,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
2656
2666
|
this.state = 518;
|
|
2657
2667
|
this.errorHandler.sync(this);
|
|
2658
2668
|
_la = this.tokenStream.LA(1);
|
|
2659
|
-
if (_la ===
|
|
2669
|
+
if (_la === 44 || _la === 46) {
|
|
2660
2670
|
{
|
|
2661
2671
|
this.state = 517;
|
|
2662
2672
|
this.net_namespace_expr();
|
|
@@ -2710,7 +2720,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
2710
2720
|
this.state = 527;
|
|
2711
2721
|
this.errorHandler.sync(this);
|
|
2712
2722
|
_la = this.tokenStream.LA(1);
|
|
2713
|
-
if (_la ===
|
|
2723
|
+
if (_la === 44) {
|
|
2714
2724
|
{
|
|
2715
2725
|
this.state = 526;
|
|
2716
2726
|
this.match(CircuitScriptParser.Addition);
|
|
@@ -2844,7 +2854,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
2844
2854
|
this.state = 549;
|
|
2845
2855
|
this.errorHandler.sync(this);
|
|
2846
2856
|
_la = this.tokenStream.LA(1);
|
|
2847
|
-
} while (((((_la -
|
|
2857
|
+
} while (((((_la - 59)) & ~0x1F) === 0 && ((1 << (_la - 59)) & 275) !== 0));
|
|
2848
2858
|
this.state = 551;
|
|
2849
2859
|
this.match(CircuitScriptParser.DEDENT);
|
|
2850
2860
|
}
|
|
@@ -2903,7 +2913,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
2903
2913
|
this.state = 559;
|
|
2904
2914
|
this.errorHandler.sync(this);
|
|
2905
2915
|
_la = this.tokenStream.LA(1);
|
|
2906
|
-
} while (_la === 16 || _la ===
|
|
2916
|
+
} while (_la === 16 || _la === 27 || _la === 59 || _la === 67);
|
|
2907
2917
|
this.state = 561;
|
|
2908
2918
|
this.match(CircuitScriptParser.DEDENT);
|
|
2909
2919
|
}
|
|
@@ -2936,7 +2946,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
2936
2946
|
this.state = 568;
|
|
2937
2947
|
this.errorHandler.sync(this);
|
|
2938
2948
|
_la = this.tokenStream.LA(1);
|
|
2939
|
-
if (_la ===
|
|
2949
|
+
if (_la === 55) {
|
|
2940
2950
|
{
|
|
2941
2951
|
this.state = 565;
|
|
2942
2952
|
this.match(CircuitScriptParser.OPEN_PAREN);
|
|
@@ -3014,7 +3024,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
3014
3024
|
this.state = 583;
|
|
3015
3025
|
this.errorHandler.sync(this);
|
|
3016
3026
|
_la = this.tokenStream.LA(1);
|
|
3017
|
-
} while (((((_la -
|
|
3027
|
+
} while (((((_la - 59)) & ~0x1F) === 0 && ((1 << (_la - 59)) & 275) !== 0));
|
|
3018
3028
|
this.state = 585;
|
|
3019
3029
|
this.match(CircuitScriptParser.DEDENT);
|
|
3020
3030
|
}
|
|
@@ -3074,7 +3084,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
3074
3084
|
this.state = 593;
|
|
3075
3085
|
this.errorHandler.sync(this);
|
|
3076
3086
|
_la = this.tokenStream.LA(1);
|
|
3077
|
-
} while (((((_la -
|
|
3087
|
+
} while (((((_la - 59)) & ~0x1F) === 0 && ((1 << (_la - 59)) & 275) !== 0));
|
|
3078
3088
|
this.state = 595;
|
|
3079
3089
|
this.match(CircuitScriptParser.DEDENT);
|
|
3080
3090
|
}
|
|
@@ -3110,7 +3120,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
3110
3120
|
this.state = 597;
|
|
3111
3121
|
localContext._command = this.tokenStream.LT(1);
|
|
3112
3122
|
_la = this.tokenStream.LA(1);
|
|
3113
|
-
if (!(_la === 16 || _la ===
|
|
3123
|
+
if (!(_la === 16 || _la === 59)) {
|
|
3114
3124
|
localContext._command = this.errorHandler.recoverInline(this);
|
|
3115
3125
|
}
|
|
3116
3126
|
else {
|
|
@@ -3243,7 +3253,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
3243
3253
|
{
|
|
3244
3254
|
this.state = 629;
|
|
3245
3255
|
_la = this.tokenStream.LA(1);
|
|
3246
|
-
if (!(((((_la -
|
|
3256
|
+
if (!(((((_la - 59)) & ~0x1F) === 0 && ((1 << (_la - 59)) & 19) !== 0))) {
|
|
3247
3257
|
this.errorHandler.recoverInline(this);
|
|
3248
3258
|
}
|
|
3249
3259
|
else {
|
|
@@ -3445,7 +3455,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
3445
3455
|
this.state = 668;
|
|
3446
3456
|
this.errorHandler.sync(this);
|
|
3447
3457
|
_la = this.tokenStream.LA(1);
|
|
3448
|
-
while (_la === 5 || _la === 11 || ((((_la -
|
|
3458
|
+
while (_la === 5 || _la === 11 || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 4265621505) !== 0)) {
|
|
3449
3459
|
{
|
|
3450
3460
|
{
|
|
3451
3461
|
this.state = 658;
|
|
@@ -3533,13 +3543,67 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
3533
3543
|
import_expr() {
|
|
3534
3544
|
let localContext = new Import_exprContext(this.context, this.state);
|
|
3535
3545
|
this.enterRule(localContext, 118, CircuitScriptParser.RULE_import_expr);
|
|
3546
|
+
let _la;
|
|
3536
3547
|
try {
|
|
3537
|
-
this.
|
|
3538
|
-
|
|
3539
|
-
|
|
3540
|
-
|
|
3541
|
-
|
|
3542
|
-
|
|
3548
|
+
this.state = 695;
|
|
3549
|
+
this.errorHandler.sync(this);
|
|
3550
|
+
switch (this.interpreter.adaptivePredict(this.tokenStream, 76, this.context)) {
|
|
3551
|
+
case 1:
|
|
3552
|
+
localContext = new Import_simpleContext(localContext);
|
|
3553
|
+
this.enterOuterAlt(localContext, 1);
|
|
3554
|
+
{
|
|
3555
|
+
this.state = 678;
|
|
3556
|
+
this.match(CircuitScriptParser.Import);
|
|
3557
|
+
this.state = 679;
|
|
3558
|
+
localContext._moduleName = this.match(CircuitScriptParser.ID);
|
|
3559
|
+
}
|
|
3560
|
+
break;
|
|
3561
|
+
case 2:
|
|
3562
|
+
localContext = new Import_all_simpleContext(localContext);
|
|
3563
|
+
this.enterOuterAlt(localContext, 2);
|
|
3564
|
+
{
|
|
3565
|
+
this.state = 680;
|
|
3566
|
+
this.match(CircuitScriptParser.From);
|
|
3567
|
+
this.state = 681;
|
|
3568
|
+
localContext._moduleName = this.match(CircuitScriptParser.ID);
|
|
3569
|
+
this.state = 682;
|
|
3570
|
+
this.match(CircuitScriptParser.Import);
|
|
3571
|
+
this.state = 683;
|
|
3572
|
+
this.match(CircuitScriptParser.Multiply);
|
|
3573
|
+
}
|
|
3574
|
+
break;
|
|
3575
|
+
case 3:
|
|
3576
|
+
localContext = new Import_specificContext(localContext);
|
|
3577
|
+
this.enterOuterAlt(localContext, 3);
|
|
3578
|
+
{
|
|
3579
|
+
this.state = 684;
|
|
3580
|
+
this.match(CircuitScriptParser.From);
|
|
3581
|
+
this.state = 685;
|
|
3582
|
+
localContext._moduleName = this.match(CircuitScriptParser.ID);
|
|
3583
|
+
this.state = 686;
|
|
3584
|
+
this.match(CircuitScriptParser.Import);
|
|
3585
|
+
this.state = 687;
|
|
3586
|
+
localContext._ID = this.match(CircuitScriptParser.ID);
|
|
3587
|
+
localContext._funcNames.push(localContext._ID);
|
|
3588
|
+
this.state = 692;
|
|
3589
|
+
this.errorHandler.sync(this);
|
|
3590
|
+
_la = this.tokenStream.LA(1);
|
|
3591
|
+
while (_la === 2) {
|
|
3592
|
+
{
|
|
3593
|
+
{
|
|
3594
|
+
this.state = 688;
|
|
3595
|
+
this.match(CircuitScriptParser.T__1);
|
|
3596
|
+
this.state = 689;
|
|
3597
|
+
localContext._ID = this.match(CircuitScriptParser.ID);
|
|
3598
|
+
localContext._funcNames.push(localContext._ID);
|
|
3599
|
+
}
|
|
3600
|
+
}
|
|
3601
|
+
this.state = 694;
|
|
3602
|
+
this.errorHandler.sync(this);
|
|
3603
|
+
_la = this.tokenStream.LA(1);
|
|
3604
|
+
}
|
|
3605
|
+
}
|
|
3606
|
+
break;
|
|
3543
3607
|
}
|
|
3544
3608
|
}
|
|
3545
3609
|
catch (re) {
|
|
@@ -3563,18 +3627,18 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
3563
3627
|
try {
|
|
3564
3628
|
this.enterOuterAlt(localContext, 1);
|
|
3565
3629
|
{
|
|
3566
|
-
this.state =
|
|
3630
|
+
this.state = 697;
|
|
3567
3631
|
_la = this.tokenStream.LA(1);
|
|
3568
|
-
if (!(_la ===
|
|
3632
|
+
if (!(_la === 34 || _la === 35)) {
|
|
3569
3633
|
this.errorHandler.recoverInline(this);
|
|
3570
3634
|
}
|
|
3571
3635
|
else {
|
|
3572
3636
|
this.errorHandler.reportMatch(this);
|
|
3573
3637
|
this.consume();
|
|
3574
3638
|
}
|
|
3575
|
-
this.state =
|
|
3639
|
+
this.state = 698;
|
|
3576
3640
|
this.match(CircuitScriptParser.T__0);
|
|
3577
|
-
this.state =
|
|
3641
|
+
this.state = 699;
|
|
3578
3642
|
this.expressions_block();
|
|
3579
3643
|
}
|
|
3580
3644
|
}
|
|
@@ -3600,36 +3664,36 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
3600
3664
|
let alternative;
|
|
3601
3665
|
this.enterOuterAlt(localContext, 1);
|
|
3602
3666
|
{
|
|
3603
|
-
this.state =
|
|
3667
|
+
this.state = 701;
|
|
3604
3668
|
this.match(CircuitScriptParser.If);
|
|
3605
|
-
this.state =
|
|
3669
|
+
this.state = 702;
|
|
3606
3670
|
this.data_expr(0);
|
|
3607
|
-
this.state =
|
|
3671
|
+
this.state = 703;
|
|
3608
3672
|
this.match(CircuitScriptParser.T__0);
|
|
3609
|
-
this.state =
|
|
3673
|
+
this.state = 704;
|
|
3610
3674
|
this.expressions_block();
|
|
3611
|
-
this.state =
|
|
3675
|
+
this.state = 708;
|
|
3612
3676
|
this.errorHandler.sync(this);
|
|
3613
|
-
alternative = this.interpreter.adaptivePredict(this.tokenStream,
|
|
3677
|
+
alternative = this.interpreter.adaptivePredict(this.tokenStream, 77, this.context);
|
|
3614
3678
|
while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) {
|
|
3615
3679
|
if (alternative === 1) {
|
|
3616
3680
|
{
|
|
3617
3681
|
{
|
|
3618
|
-
this.state =
|
|
3682
|
+
this.state = 705;
|
|
3619
3683
|
this.if_inner_expr();
|
|
3620
3684
|
}
|
|
3621
3685
|
}
|
|
3622
3686
|
}
|
|
3623
|
-
this.state =
|
|
3687
|
+
this.state = 710;
|
|
3624
3688
|
this.errorHandler.sync(this);
|
|
3625
|
-
alternative = this.interpreter.adaptivePredict(this.tokenStream,
|
|
3689
|
+
alternative = this.interpreter.adaptivePredict(this.tokenStream, 77, this.context);
|
|
3626
3690
|
}
|
|
3627
|
-
this.state =
|
|
3691
|
+
this.state = 712;
|
|
3628
3692
|
this.errorHandler.sync(this);
|
|
3629
3693
|
_la = this.tokenStream.LA(1);
|
|
3630
|
-
if (_la ===
|
|
3694
|
+
if (_la === 32) {
|
|
3631
3695
|
{
|
|
3632
|
-
this.state =
|
|
3696
|
+
this.state = 711;
|
|
3633
3697
|
this.else_expr();
|
|
3634
3698
|
}
|
|
3635
3699
|
}
|
|
@@ -3655,15 +3719,15 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
3655
3719
|
try {
|
|
3656
3720
|
this.enterOuterAlt(localContext, 1);
|
|
3657
3721
|
{
|
|
3658
|
-
this.state =
|
|
3722
|
+
this.state = 714;
|
|
3659
3723
|
this.match(CircuitScriptParser.Else);
|
|
3660
|
-
this.state =
|
|
3724
|
+
this.state = 715;
|
|
3661
3725
|
this.match(CircuitScriptParser.If);
|
|
3662
|
-
this.state =
|
|
3726
|
+
this.state = 716;
|
|
3663
3727
|
this.data_expr(0);
|
|
3664
|
-
this.state =
|
|
3728
|
+
this.state = 717;
|
|
3665
3729
|
this.match(CircuitScriptParser.T__0);
|
|
3666
|
-
this.state =
|
|
3730
|
+
this.state = 718;
|
|
3667
3731
|
this.expressions_block();
|
|
3668
3732
|
}
|
|
3669
3733
|
}
|
|
@@ -3687,11 +3751,11 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
3687
3751
|
try {
|
|
3688
3752
|
this.enterOuterAlt(localContext, 1);
|
|
3689
3753
|
{
|
|
3690
|
-
this.state =
|
|
3754
|
+
this.state = 720;
|
|
3691
3755
|
this.match(CircuitScriptParser.Else);
|
|
3692
|
-
this.state =
|
|
3756
|
+
this.state = 721;
|
|
3693
3757
|
this.match(CircuitScriptParser.T__0);
|
|
3694
|
-
this.state =
|
|
3758
|
+
this.state = 722;
|
|
3695
3759
|
this.expressions_block();
|
|
3696
3760
|
}
|
|
3697
3761
|
}
|
|
@@ -3715,13 +3779,13 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
3715
3779
|
try {
|
|
3716
3780
|
this.enterOuterAlt(localContext, 1);
|
|
3717
3781
|
{
|
|
3718
|
-
this.state =
|
|
3782
|
+
this.state = 724;
|
|
3719
3783
|
this.match(CircuitScriptParser.While);
|
|
3720
|
-
this.state =
|
|
3784
|
+
this.state = 725;
|
|
3721
3785
|
this.data_expr(0);
|
|
3722
|
-
this.state =
|
|
3786
|
+
this.state = 726;
|
|
3723
3787
|
this.match(CircuitScriptParser.T__0);
|
|
3724
|
-
this.state =
|
|
3788
|
+
this.state = 727;
|
|
3725
3789
|
this.expressions_block();
|
|
3726
3790
|
}
|
|
3727
3791
|
}
|
|
@@ -3746,33 +3810,33 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
3746
3810
|
try {
|
|
3747
3811
|
this.enterOuterAlt(localContext, 1);
|
|
3748
3812
|
{
|
|
3749
|
-
this.state =
|
|
3813
|
+
this.state = 729;
|
|
3750
3814
|
this.match(CircuitScriptParser.For);
|
|
3751
|
-
this.state =
|
|
3815
|
+
this.state = 730;
|
|
3752
3816
|
this.match(CircuitScriptParser.ID);
|
|
3753
|
-
this.state =
|
|
3817
|
+
this.state = 735;
|
|
3754
3818
|
this.errorHandler.sync(this);
|
|
3755
3819
|
_la = this.tokenStream.LA(1);
|
|
3756
3820
|
while (_la === 2) {
|
|
3757
3821
|
{
|
|
3758
3822
|
{
|
|
3759
|
-
this.state =
|
|
3823
|
+
this.state = 731;
|
|
3760
3824
|
this.match(CircuitScriptParser.T__1);
|
|
3761
|
-
this.state =
|
|
3825
|
+
this.state = 732;
|
|
3762
3826
|
this.match(CircuitScriptParser.ID);
|
|
3763
3827
|
}
|
|
3764
3828
|
}
|
|
3765
|
-
this.state =
|
|
3829
|
+
this.state = 737;
|
|
3766
3830
|
this.errorHandler.sync(this);
|
|
3767
3831
|
_la = this.tokenStream.LA(1);
|
|
3768
3832
|
}
|
|
3769
|
-
this.state =
|
|
3833
|
+
this.state = 738;
|
|
3770
3834
|
this.match(CircuitScriptParser.In);
|
|
3771
|
-
this.state =
|
|
3835
|
+
this.state = 739;
|
|
3772
3836
|
this.data_expr(0);
|
|
3773
|
-
this.state =
|
|
3837
|
+
this.state = 740;
|
|
3774
3838
|
this.match(CircuitScriptParser.T__0);
|
|
3775
|
-
this.state =
|
|
3839
|
+
this.state = 741;
|
|
3776
3840
|
this.expressions_block();
|
|
3777
3841
|
}
|
|
3778
3842
|
}
|
|
@@ -3797,31 +3861,31 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
3797
3861
|
try {
|
|
3798
3862
|
this.enterOuterAlt(localContext, 1);
|
|
3799
3863
|
{
|
|
3800
|
-
this.state =
|
|
3864
|
+
this.state = 743;
|
|
3801
3865
|
this.match(CircuitScriptParser.T__7);
|
|
3802
|
-
this.state =
|
|
3866
|
+
this.state = 744;
|
|
3803
3867
|
this.match(CircuitScriptParser.T__0);
|
|
3804
|
-
this.state =
|
|
3868
|
+
this.state = 745;
|
|
3805
3869
|
this.data_expr(0);
|
|
3806
|
-
this.state =
|
|
3870
|
+
this.state = 750;
|
|
3807
3871
|
this.errorHandler.sync(this);
|
|
3808
3872
|
_la = this.tokenStream.LA(1);
|
|
3809
3873
|
while (_la === 2) {
|
|
3810
3874
|
{
|
|
3811
3875
|
{
|
|
3812
|
-
this.state =
|
|
3876
|
+
this.state = 746;
|
|
3813
3877
|
this.match(CircuitScriptParser.T__1);
|
|
3814
|
-
this.state =
|
|
3878
|
+
this.state = 747;
|
|
3815
3879
|
this.data_expr(0);
|
|
3816
3880
|
}
|
|
3817
3881
|
}
|
|
3818
|
-
this.state =
|
|
3882
|
+
this.state = 752;
|
|
3819
3883
|
this.errorHandler.sync(this);
|
|
3820
3884
|
_la = this.tokenStream.LA(1);
|
|
3821
3885
|
}
|
|
3822
|
-
this.state =
|
|
3886
|
+
this.state = 753;
|
|
3823
3887
|
this.match(CircuitScriptParser.T__0);
|
|
3824
|
-
this.state =
|
|
3888
|
+
this.state = 754;
|
|
3825
3889
|
this.part_match_block();
|
|
3826
3890
|
}
|
|
3827
3891
|
}
|
|
@@ -3846,9 +3910,9 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
3846
3910
|
try {
|
|
3847
3911
|
this.enterOuterAlt(localContext, 1);
|
|
3848
3912
|
{
|
|
3849
|
-
this.state =
|
|
3913
|
+
this.state = 756;
|
|
3850
3914
|
_la = this.tokenStream.LA(1);
|
|
3851
|
-
if (!(((((_la -
|
|
3915
|
+
if (!(((((_la - 59)) & ~0x1F) === 0 && ((1 << (_la - 59)) & 59) !== 0))) {
|
|
3852
3916
|
this.errorHandler.recoverInline(this);
|
|
3853
3917
|
}
|
|
3854
3918
|
else {
|
|
@@ -3878,21 +3942,21 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
3878
3942
|
try {
|
|
3879
3943
|
this.enterOuterAlt(localContext, 1);
|
|
3880
3944
|
{
|
|
3881
|
-
this.state =
|
|
3945
|
+
this.state = 758;
|
|
3882
3946
|
this.match(CircuitScriptParser.NEWLINE);
|
|
3883
|
-
this.state =
|
|
3947
|
+
this.state = 759;
|
|
3884
3948
|
this.match(CircuitScriptParser.INDENT);
|
|
3885
|
-
this.state =
|
|
3949
|
+
this.state = 762;
|
|
3886
3950
|
this.errorHandler.sync(this);
|
|
3887
3951
|
_la = this.tokenStream.LA(1);
|
|
3888
3952
|
do {
|
|
3889
3953
|
{
|
|
3890
|
-
this.state =
|
|
3954
|
+
this.state = 762;
|
|
3891
3955
|
this.errorHandler.sync(this);
|
|
3892
3956
|
switch (this.tokenStream.LA(1)) {
|
|
3893
3957
|
case CircuitScriptParser.NEWLINE:
|
|
3894
3958
|
{
|
|
3895
|
-
this.state =
|
|
3959
|
+
this.state = 760;
|
|
3896
3960
|
this.match(CircuitScriptParser.NEWLINE);
|
|
3897
3961
|
}
|
|
3898
3962
|
break;
|
|
@@ -3902,7 +3966,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
3902
3966
|
case CircuitScriptParser.STRING_VALUE:
|
|
3903
3967
|
case CircuitScriptParser.PERCENTAGE_VALUE:
|
|
3904
3968
|
{
|
|
3905
|
-
this.state =
|
|
3969
|
+
this.state = 761;
|
|
3906
3970
|
this.part_sub_expr();
|
|
3907
3971
|
}
|
|
3908
3972
|
break;
|
|
@@ -3910,11 +3974,11 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
3910
3974
|
throw new antlr.NoViableAltException(this);
|
|
3911
3975
|
}
|
|
3912
3976
|
}
|
|
3913
|
-
this.state =
|
|
3977
|
+
this.state = 764;
|
|
3914
3978
|
this.errorHandler.sync(this);
|
|
3915
3979
|
_la = this.tokenStream.LA(1);
|
|
3916
|
-
} while (((((_la -
|
|
3917
|
-
this.state =
|
|
3980
|
+
} while (((((_la - 59)) & ~0x1F) === 0 && ((1 << (_la - 59)) & 315) !== 0));
|
|
3981
|
+
this.state = 766;
|
|
3918
3982
|
this.match(CircuitScriptParser.DEDENT);
|
|
3919
3983
|
}
|
|
3920
3984
|
}
|
|
@@ -3936,27 +4000,27 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
3936
4000
|
let localContext = new Part_sub_exprContext(this.context, this.state);
|
|
3937
4001
|
this.enterRule(localContext, 138, CircuitScriptParser.RULE_part_sub_expr);
|
|
3938
4002
|
try {
|
|
3939
|
-
this.state =
|
|
4003
|
+
this.state = 771;
|
|
3940
4004
|
this.errorHandler.sync(this);
|
|
3941
|
-
switch (this.interpreter.adaptivePredict(this.tokenStream,
|
|
4005
|
+
switch (this.interpreter.adaptivePredict(this.tokenStream, 83, this.context)) {
|
|
3942
4006
|
case 1:
|
|
3943
4007
|
this.enterOuterAlt(localContext, 1);
|
|
3944
4008
|
{
|
|
3945
|
-
this.state =
|
|
4009
|
+
this.state = 768;
|
|
3946
4010
|
this.part_condition_expr();
|
|
3947
4011
|
}
|
|
3948
4012
|
break;
|
|
3949
4013
|
case 2:
|
|
3950
4014
|
this.enterOuterAlt(localContext, 2);
|
|
3951
4015
|
{
|
|
3952
|
-
this.state =
|
|
4016
|
+
this.state = 769;
|
|
3953
4017
|
this.part_value_expr();
|
|
3954
4018
|
}
|
|
3955
4019
|
break;
|
|
3956
4020
|
case 3:
|
|
3957
4021
|
this.enterOuterAlt(localContext, 3);
|
|
3958
4022
|
{
|
|
3959
|
-
this.state =
|
|
4023
|
+
this.state = 770;
|
|
3960
4024
|
this.part_condition_key_only_expr();
|
|
3961
4025
|
}
|
|
3962
4026
|
break;
|
|
@@ -3984,62 +4048,62 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
3984
4048
|
let alternative;
|
|
3985
4049
|
this.enterOuterAlt(localContext, 1);
|
|
3986
4050
|
{
|
|
3987
|
-
this.state =
|
|
4051
|
+
this.state = 773;
|
|
3988
4052
|
localContext._part_set_key = this.part_set_key();
|
|
3989
4053
|
localContext._key_id.push(localContext._part_set_key);
|
|
3990
|
-
this.state =
|
|
4054
|
+
this.state = 774;
|
|
3991
4055
|
this.match(CircuitScriptParser.T__0);
|
|
3992
|
-
this.state =
|
|
4056
|
+
this.state = 775;
|
|
3993
4057
|
localContext._data_expr = this.data_expr(0);
|
|
3994
4058
|
localContext._values.push(localContext._data_expr);
|
|
3995
|
-
this.state =
|
|
4059
|
+
this.state = 783;
|
|
3996
4060
|
this.errorHandler.sync(this);
|
|
3997
|
-
alternative = this.interpreter.adaptivePredict(this.tokenStream,
|
|
4061
|
+
alternative = this.interpreter.adaptivePredict(this.tokenStream, 84, this.context);
|
|
3998
4062
|
while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) {
|
|
3999
4063
|
if (alternative === 1) {
|
|
4000
4064
|
{
|
|
4001
4065
|
{
|
|
4002
|
-
this.state =
|
|
4066
|
+
this.state = 776;
|
|
4003
4067
|
this.match(CircuitScriptParser.T__1);
|
|
4004
|
-
this.state =
|
|
4068
|
+
this.state = 777;
|
|
4005
4069
|
localContext._part_set_key = this.part_set_key();
|
|
4006
4070
|
localContext._key_id.push(localContext._part_set_key);
|
|
4007
|
-
this.state =
|
|
4071
|
+
this.state = 778;
|
|
4008
4072
|
this.match(CircuitScriptParser.T__0);
|
|
4009
|
-
this.state =
|
|
4073
|
+
this.state = 779;
|
|
4010
4074
|
localContext._data_expr = this.data_expr(0);
|
|
4011
4075
|
localContext._values.push(localContext._data_expr);
|
|
4012
4076
|
}
|
|
4013
4077
|
}
|
|
4014
4078
|
}
|
|
4015
|
-
this.state =
|
|
4079
|
+
this.state = 785;
|
|
4016
4080
|
this.errorHandler.sync(this);
|
|
4017
|
-
alternative = this.interpreter.adaptivePredict(this.tokenStream,
|
|
4081
|
+
alternative = this.interpreter.adaptivePredict(this.tokenStream, 84, this.context);
|
|
4018
4082
|
}
|
|
4019
|
-
this.state =
|
|
4083
|
+
this.state = 790;
|
|
4020
4084
|
this.errorHandler.sync(this);
|
|
4021
4085
|
_la = this.tokenStream.LA(1);
|
|
4022
4086
|
while (_la === 2) {
|
|
4023
4087
|
{
|
|
4024
4088
|
{
|
|
4025
|
-
this.state =
|
|
4089
|
+
this.state = 786;
|
|
4026
4090
|
this.match(CircuitScriptParser.T__1);
|
|
4027
|
-
this.state =
|
|
4091
|
+
this.state = 787;
|
|
4028
4092
|
localContext._id_only = this.part_set_key();
|
|
4029
4093
|
}
|
|
4030
4094
|
}
|
|
4031
|
-
this.state =
|
|
4095
|
+
this.state = 792;
|
|
4032
4096
|
this.errorHandler.sync(this);
|
|
4033
4097
|
_la = this.tokenStream.LA(1);
|
|
4034
4098
|
}
|
|
4035
|
-
this.state =
|
|
4099
|
+
this.state = 793;
|
|
4036
4100
|
this.match(CircuitScriptParser.T__0);
|
|
4037
|
-
this.state =
|
|
4101
|
+
this.state = 803;
|
|
4038
4102
|
this.errorHandler.sync(this);
|
|
4039
4103
|
switch (this.tokenStream.LA(1)) {
|
|
4040
4104
|
case CircuitScriptParser.NEWLINE:
|
|
4041
4105
|
{
|
|
4042
|
-
this.state =
|
|
4106
|
+
this.state = 794;
|
|
4043
4107
|
this.part_match_block();
|
|
4044
4108
|
}
|
|
4045
4109
|
break;
|
|
@@ -4059,23 +4123,23 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
4059
4123
|
case CircuitScriptParser.PERCENTAGE_VALUE:
|
|
4060
4124
|
{
|
|
4061
4125
|
{
|
|
4062
|
-
this.state =
|
|
4126
|
+
this.state = 795;
|
|
4063
4127
|
localContext._data_expr = this.data_expr(0);
|
|
4064
4128
|
localContext._last_data.push(localContext._data_expr);
|
|
4065
|
-
this.state =
|
|
4129
|
+
this.state = 800;
|
|
4066
4130
|
this.errorHandler.sync(this);
|
|
4067
4131
|
_la = this.tokenStream.LA(1);
|
|
4068
4132
|
while (_la === 2) {
|
|
4069
4133
|
{
|
|
4070
4134
|
{
|
|
4071
|
-
this.state =
|
|
4135
|
+
this.state = 796;
|
|
4072
4136
|
this.match(CircuitScriptParser.T__1);
|
|
4073
|
-
this.state =
|
|
4137
|
+
this.state = 797;
|
|
4074
4138
|
localContext._data_expr = this.data_expr(0);
|
|
4075
4139
|
localContext._last_data.push(localContext._data_expr);
|
|
4076
4140
|
}
|
|
4077
4141
|
}
|
|
4078
|
-
this.state =
|
|
4142
|
+
this.state = 802;
|
|
4079
4143
|
this.errorHandler.sync(this);
|
|
4080
4144
|
_la = this.tokenStream.LA(1);
|
|
4081
4145
|
}
|
|
@@ -4107,11 +4171,11 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
4107
4171
|
try {
|
|
4108
4172
|
this.enterOuterAlt(localContext, 1);
|
|
4109
4173
|
{
|
|
4110
|
-
this.state =
|
|
4174
|
+
this.state = 805;
|
|
4111
4175
|
this.part_set_key();
|
|
4112
|
-
this.state =
|
|
4176
|
+
this.state = 806;
|
|
4113
4177
|
this.match(CircuitScriptParser.T__0);
|
|
4114
|
-
this.state =
|
|
4178
|
+
this.state = 807;
|
|
4115
4179
|
this.part_match_block();
|
|
4116
4180
|
}
|
|
4117
4181
|
}
|
|
@@ -4136,25 +4200,25 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
4136
4200
|
try {
|
|
4137
4201
|
this.enterOuterAlt(localContext, 1);
|
|
4138
4202
|
{
|
|
4139
|
-
this.state =
|
|
4203
|
+
this.state = 809;
|
|
4140
4204
|
this.part_set_key();
|
|
4141
|
-
this.state =
|
|
4205
|
+
this.state = 810;
|
|
4142
4206
|
this.match(CircuitScriptParser.T__0);
|
|
4143
|
-
this.state =
|
|
4207
|
+
this.state = 811;
|
|
4144
4208
|
this.data_expr(0);
|
|
4145
|
-
this.state =
|
|
4209
|
+
this.state = 816;
|
|
4146
4210
|
this.errorHandler.sync(this);
|
|
4147
4211
|
_la = this.tokenStream.LA(1);
|
|
4148
4212
|
while (_la === 2) {
|
|
4149
4213
|
{
|
|
4150
4214
|
{
|
|
4151
|
-
this.state =
|
|
4215
|
+
this.state = 812;
|
|
4152
4216
|
this.match(CircuitScriptParser.T__1);
|
|
4153
|
-
this.state =
|
|
4217
|
+
this.state = 813;
|
|
4154
4218
|
this.data_expr(0);
|
|
4155
4219
|
}
|
|
4156
4220
|
}
|
|
4157
|
-
this.state =
|
|
4221
|
+
this.state = 818;
|
|
4158
4222
|
this.errorHandler.sync(this);
|
|
4159
4223
|
_la = this.tokenStream.LA(1);
|
|
4160
4224
|
}
|
|
@@ -4180,9 +4244,9 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
4180
4244
|
try {
|
|
4181
4245
|
this.enterOuterAlt(localContext, 1);
|
|
4182
4246
|
{
|
|
4183
|
-
this.state =
|
|
4247
|
+
this.state = 819;
|
|
4184
4248
|
this.match(CircuitScriptParser.ANNOTATION_START);
|
|
4185
|
-
this.state =
|
|
4249
|
+
this.state = 820;
|
|
4186
4250
|
this.match(CircuitScriptParser.ID);
|
|
4187
4251
|
}
|
|
4188
4252
|
}
|
|
@@ -4223,7 +4287,7 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
4223
4287
|
return true;
|
|
4224
4288
|
}
|
|
4225
4289
|
static _serializedATN = [
|
|
4226
|
-
4, 1,
|
|
4290
|
+
4, 1, 70, 823, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7,
|
|
4227
4291
|
6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13,
|
|
4228
4292
|
2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20,
|
|
4229
4293
|
7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26,
|
|
@@ -4280,246 +4344,252 @@ export class CircuitScriptParser extends antlr.Parser {
|
|
|
4280
4344
|
3, 54, 641, 8, 54, 1, 55, 1, 55, 1, 55, 3, 55, 646, 8, 55, 1, 55, 3, 55, 649, 8, 55, 1,
|
|
4281
4345
|
56, 1, 56, 5, 56, 653, 8, 56, 10, 56, 12, 56, 656, 9, 56, 1, 57, 1, 57, 1, 57, 1, 57, 5,
|
|
4282
4346
|
57, 662, 8, 57, 10, 57, 12, 57, 665, 9, 57, 5, 57, 667, 8, 57, 10, 57, 12, 57, 670, 9,
|
|
4283
|
-
57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 3, 58, 677, 8, 58, 1, 59, 1, 59, 1, 59, 1,
|
|
4284
|
-
|
|
4285
|
-
694, 9,
|
|
4286
|
-
|
|
4287
|
-
|
|
4288
|
-
1,
|
|
4289
|
-
1,
|
|
4290
|
-
|
|
4291
|
-
|
|
4292
|
-
|
|
4293
|
-
|
|
4294
|
-
1,
|
|
4295
|
-
|
|
4296
|
-
|
|
4297
|
-
|
|
4298
|
-
|
|
4299
|
-
|
|
4300
|
-
|
|
4301
|
-
|
|
4302
|
-
|
|
4303
|
-
1, 0,
|
|
4304
|
-
0, 0,
|
|
4305
|
-
|
|
4306
|
-
1, 0, 0, 0,
|
|
4307
|
-
0, 0,
|
|
4308
|
-
|
|
4309
|
-
1, 0, 0, 0,
|
|
4310
|
-
0, 0,
|
|
4311
|
-
|
|
4312
|
-
1, 0, 0, 0,
|
|
4313
|
-
0, 0,
|
|
4314
|
-
0,
|
|
4315
|
-
|
|
4316
|
-
|
|
4317
|
-
|
|
4318
|
-
|
|
4319
|
-
|
|
4320
|
-
|
|
4321
|
-
|
|
4322
|
-
|
|
4323
|
-
0, 0,
|
|
4324
|
-
0,
|
|
4325
|
-
|
|
4326
|
-
|
|
4327
|
-
|
|
4328
|
-
|
|
4329
|
-
|
|
4330
|
-
1, 0, 0, 0, 177,
|
|
4331
|
-
1, 0, 0, 0, 177,
|
|
4332
|
-
|
|
4333
|
-
|
|
4334
|
-
|
|
4335
|
-
|
|
4336
|
-
|
|
4337
|
-
|
|
4338
|
-
|
|
4339
|
-
0,
|
|
4340
|
-
0,
|
|
4341
|
-
0,
|
|
4342
|
-
0,
|
|
4343
|
-
0,
|
|
4344
|
-
0, 0,
|
|
4345
|
-
|
|
4346
|
-
|
|
4347
|
-
1, 0, 0,
|
|
4348
|
-
|
|
4349
|
-
|
|
4350
|
-
1, 0, 0, 0,
|
|
4351
|
-
|
|
4352
|
-
|
|
4353
|
-
1, 0, 0, 0,
|
|
4354
|
-
1, 0, 0, 0,
|
|
4355
|
-
|
|
4356
|
-
|
|
4357
|
-
|
|
4358
|
-
|
|
4359
|
-
|
|
4360
|
-
|
|
4361
|
-
|
|
4362
|
-
|
|
4363
|
-
|
|
4364
|
-
|
|
4365
|
-
|
|
4366
|
-
|
|
4367
|
-
|
|
4368
|
-
|
|
4369
|
-
0,
|
|
4370
|
-
|
|
4371
|
-
|
|
4372
|
-
|
|
4373
|
-
|
|
4374
|
-
|
|
4375
|
-
|
|
4376
|
-
|
|
4377
|
-
|
|
4378
|
-
|
|
4379
|
-
|
|
4380
|
-
|
|
4381
|
-
|
|
4382
|
-
|
|
4383
|
-
|
|
4384
|
-
|
|
4385
|
-
|
|
4386
|
-
|
|
4387
|
-
|
|
4388
|
-
|
|
4389
|
-
|
|
4390
|
-
|
|
4391
|
-
|
|
4392
|
-
|
|
4393
|
-
|
|
4394
|
-
|
|
4395
|
-
|
|
4396
|
-
|
|
4397
|
-
|
|
4398
|
-
|
|
4399
|
-
|
|
4400
|
-
|
|
4401
|
-
|
|
4402
|
-
|
|
4403
|
-
|
|
4404
|
-
|
|
4405
|
-
|
|
4406
|
-
|
|
4407
|
-
|
|
4408
|
-
|
|
4409
|
-
|
|
4410
|
-
1, 0, 0, 0,
|
|
4411
|
-
|
|
4412
|
-
|
|
4413
|
-
|
|
4414
|
-
|
|
4415
|
-
|
|
4416
|
-
|
|
4417
|
-
|
|
4418
|
-
|
|
4419
|
-
|
|
4420
|
-
|
|
4421
|
-
|
|
4422
|
-
|
|
4423
|
-
|
|
4424
|
-
|
|
4425
|
-
|
|
4426
|
-
|
|
4427
|
-
|
|
4428
|
-
|
|
4429
|
-
1, 0, 0, 0,
|
|
4430
|
-
|
|
4431
|
-
|
|
4432
|
-
1, 0, 0, 0,
|
|
4433
|
-
|
|
4434
|
-
|
|
4435
|
-
1, 0, 0, 0,
|
|
4436
|
-
|
|
4437
|
-
|
|
4438
|
-
|
|
4439
|
-
|
|
4440
|
-
|
|
4441
|
-
|
|
4442
|
-
|
|
4443
|
-
|
|
4444
|
-
0,
|
|
4445
|
-
0, 0, 0,
|
|
4446
|
-
|
|
4447
|
-
|
|
4448
|
-
1, 0, 0, 0,
|
|
4449
|
-
|
|
4450
|
-
|
|
4451
|
-
|
|
4452
|
-
|
|
4453
|
-
|
|
4454
|
-
|
|
4455
|
-
|
|
4456
|
-
|
|
4457
|
-
0,
|
|
4458
|
-
0,
|
|
4459
|
-
|
|
4460
|
-
|
|
4461
|
-
|
|
4462
|
-
1, 0, 0, 0,
|
|
4463
|
-
|
|
4464
|
-
|
|
4465
|
-
|
|
4466
|
-
|
|
4467
|
-
|
|
4468
|
-
0, 0,
|
|
4469
|
-
0, 0,
|
|
4470
|
-
0, 0,
|
|
4471
|
-
1, 0, 0, 0,
|
|
4472
|
-
|
|
4473
|
-
|
|
4474
|
-
1, 0, 0, 0,
|
|
4475
|
-
|
|
4476
|
-
|
|
4477
|
-
|
|
4478
|
-
|
|
4479
|
-
|
|
4480
|
-
|
|
4481
|
-
|
|
4482
|
-
0,
|
|
4483
|
-
|
|
4484
|
-
|
|
4485
|
-
|
|
4486
|
-
1, 0, 0, 0,
|
|
4487
|
-
|
|
4488
|
-
|
|
4489
|
-
|
|
4490
|
-
|
|
4491
|
-
|
|
4492
|
-
|
|
4493
|
-
|
|
4494
|
-
|
|
4495
|
-
|
|
4496
|
-
|
|
4497
|
-
|
|
4498
|
-
|
|
4499
|
-
|
|
4500
|
-
|
|
4501
|
-
0,
|
|
4502
|
-
|
|
4503
|
-
|
|
4504
|
-
|
|
4505
|
-
0, 0,
|
|
4506
|
-
0, 0,
|
|
4507
|
-
|
|
4508
|
-
0,
|
|
4509
|
-
|
|
4510
|
-
|
|
4511
|
-
|
|
4512
|
-
1, 0, 0, 0,
|
|
4513
|
-
|
|
4514
|
-
|
|
4515
|
-
|
|
4516
|
-
0,
|
|
4517
|
-
|
|
4518
|
-
|
|
4519
|
-
|
|
4520
|
-
|
|
4521
|
-
|
|
4522
|
-
|
|
4347
|
+
57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 3, 58, 677, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1,
|
|
4348
|
+
59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 691, 8, 59, 10, 59, 12, 59,
|
|
4349
|
+
694, 9, 59, 3, 59, 696, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1,
|
|
4350
|
+
61, 5, 61, 707, 8, 61, 10, 61, 12, 61, 710, 9, 61, 1, 61, 3, 61, 713, 8, 61, 1, 62, 1,
|
|
4351
|
+
62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1,
|
|
4352
|
+
64, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 734, 8, 65, 10, 65, 12, 65, 737, 9, 65, 1, 65, 1,
|
|
4353
|
+
65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 749, 8, 66, 10, 66, 12,
|
|
4354
|
+
66, 752, 9, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 4, 68, 763,
|
|
4355
|
+
8, 68, 11, 68, 12, 68, 764, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 3, 69, 772, 8, 69, 1, 70,
|
|
4356
|
+
1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 782, 8, 70, 10, 70, 12, 70, 785,
|
|
4357
|
+
9, 70, 1, 70, 1, 70, 5, 70, 789, 8, 70, 10, 70, 12, 70, 792, 9, 70, 1, 70, 1, 70, 1, 70,
|
|
4358
|
+
1, 70, 1, 70, 5, 70, 799, 8, 70, 10, 70, 12, 70, 802, 9, 70, 3, 70, 804, 8, 70, 1, 71,
|
|
4359
|
+
1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 815, 8, 72, 10, 72, 12, 72,
|
|
4360
|
+
818, 9, 72, 1, 73, 1, 73, 1, 73, 1, 73, 0, 1, 64, 74, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18,
|
|
4361
|
+
20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62,
|
|
4362
|
+
64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104,
|
|
4363
|
+
106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136,
|
|
4364
|
+
138, 140, 142, 144, 146, 0, 15, 2, 0, 10, 10, 20, 22, 1, 0, 59, 60, 2, 0, 60, 60, 63,
|
|
4365
|
+
63, 2, 0, 57, 57, 60, 60, 1, 0, 49, 53, 1, 0, 46, 48, 1, 0, 44, 45, 1, 0, 42, 43, 1, 0, 36,
|
|
4366
|
+
41, 2, 0, 33, 33, 45, 45, 2, 0, 58, 58, 60, 64, 2, 0, 16, 16, 59, 59, 2, 0, 59, 60, 63,
|
|
4367
|
+
63, 1, 0, 34, 35, 2, 0, 59, 60, 62, 64, 870, 0, 152, 1, 0, 0, 0, 2, 177, 1, 0, 0, 0, 4, 184,
|
|
4368
|
+
1, 0, 0, 0, 6, 188, 1, 0, 0, 0, 8, 196, 1, 0, 0, 0, 10, 198, 1, 0, 0, 0, 12, 208, 1, 0, 0,
|
|
4369
|
+
0, 14, 212, 1, 0, 0, 0, 16, 224, 1, 0, 0, 0, 18, 228, 1, 0, 0, 0, 20, 231, 1, 0, 0, 0, 22,
|
|
4370
|
+
239, 1, 0, 0, 0, 24, 250, 1, 0, 0, 0, 26, 256, 1, 0, 0, 0, 28, 258, 1, 0, 0, 0, 30, 260,
|
|
4371
|
+
1, 0, 0, 0, 32, 263, 1, 0, 0, 0, 34, 272, 1, 0, 0, 0, 36, 294, 1, 0, 0, 0, 38, 304, 1, 0,
|
|
4372
|
+
0, 0, 40, 306, 1, 0, 0, 0, 42, 319, 1, 0, 0, 0, 44, 321, 1, 0, 0, 0, 46, 329, 1, 0, 0, 0,
|
|
4373
|
+
48, 337, 1, 0, 0, 0, 50, 339, 1, 0, 0, 0, 52, 343, 1, 0, 0, 0, 54, 348, 1, 0, 0, 0, 56, 352,
|
|
4374
|
+
1, 0, 0, 0, 58, 379, 1, 0, 0, 0, 60, 381, 1, 0, 0, 0, 62, 385, 1, 0, 0, 0, 64, 407, 1, 0,
|
|
4375
|
+
0, 0, 66, 432, 1, 0, 0, 0, 68, 434, 1, 0, 0, 0, 70, 437, 1, 0, 0, 0, 72, 441, 1, 0, 0, 0,
|
|
4376
|
+
74, 461, 1, 0, 0, 0, 76, 492, 1, 0, 0, 0, 78, 494, 1, 0, 0, 0, 80, 507, 1, 0, 0, 0, 82, 515,
|
|
4377
|
+
1, 0, 0, 0, 84, 518, 1, 0, 0, 0, 86, 527, 1, 0, 0, 0, 88, 533, 1, 0, 0, 0, 90, 536, 1, 0,
|
|
4378
|
+
0, 0, 92, 540, 1, 0, 0, 0, 94, 553, 1, 0, 0, 0, 96, 563, 1, 0, 0, 0, 98, 573, 1, 0, 0, 0,
|
|
4379
|
+
100, 587, 1, 0, 0, 0, 102, 623, 1, 0, 0, 0, 104, 625, 1, 0, 0, 0, 106, 629, 1, 0, 0, 0,
|
|
4380
|
+
108, 640, 1, 0, 0, 0, 110, 648, 1, 0, 0, 0, 112, 650, 1, 0, 0, 0, 114, 657, 1, 0, 0, 0,
|
|
4381
|
+
116, 673, 1, 0, 0, 0, 118, 695, 1, 0, 0, 0, 120, 697, 1, 0, 0, 0, 122, 701, 1, 0, 0, 0,
|
|
4382
|
+
124, 714, 1, 0, 0, 0, 126, 720, 1, 0, 0, 0, 128, 724, 1, 0, 0, 0, 130, 729, 1, 0, 0, 0,
|
|
4383
|
+
132, 743, 1, 0, 0, 0, 134, 756, 1, 0, 0, 0, 136, 758, 1, 0, 0, 0, 138, 771, 1, 0, 0, 0,
|
|
4384
|
+
140, 773, 1, 0, 0, 0, 142, 805, 1, 0, 0, 0, 144, 809, 1, 0, 0, 0, 146, 819, 1, 0, 0, 0,
|
|
4385
|
+
148, 151, 3, 118, 59, 0, 149, 151, 5, 67, 0, 0, 150, 148, 1, 0, 0, 0, 150, 149, 1, 0,
|
|
4386
|
+
0, 0, 151, 154, 1, 0, 0, 0, 152, 150, 1, 0, 0, 0, 152, 153, 1, 0, 0, 0, 153, 157, 1, 0,
|
|
4387
|
+
0, 0, 154, 152, 1, 0, 0, 0, 155, 158, 3, 2, 1, 0, 156, 158, 5, 67, 0, 0, 157, 155, 1, 0,
|
|
4388
|
+
0, 0, 157, 156, 1, 0, 0, 0, 158, 159, 1, 0, 0, 0, 159, 157, 1, 0, 0, 0, 159, 160, 1, 0,
|
|
4389
|
+
0, 0, 160, 161, 1, 0, 0, 0, 161, 162, 5, 0, 0, 1, 162, 1, 1, 0, 0, 0, 163, 178, 3, 6, 3,
|
|
4390
|
+
0, 164, 178, 3, 52, 26, 0, 165, 178, 3, 54, 27, 0, 166, 178, 3, 60, 30, 0, 167, 178,
|
|
4391
|
+
3, 14, 7, 0, 168, 178, 3, 62, 31, 0, 169, 178, 3, 72, 36, 0, 170, 178, 3, 84, 42, 0, 171,
|
|
4392
|
+
178, 3, 118, 59, 0, 172, 178, 3, 78, 39, 0, 173, 178, 3, 120, 60, 0, 174, 178, 3, 4,
|
|
4393
|
+
2, 0, 175, 178, 3, 146, 73, 0, 176, 178, 3, 132, 66, 0, 177, 163, 1, 0, 0, 0, 177, 164,
|
|
4394
|
+
1, 0, 0, 0, 177, 165, 1, 0, 0, 0, 177, 166, 1, 0, 0, 0, 177, 167, 1, 0, 0, 0, 177, 168,
|
|
4395
|
+
1, 0, 0, 0, 177, 169, 1, 0, 0, 0, 177, 170, 1, 0, 0, 0, 177, 171, 1, 0, 0, 0, 177, 172,
|
|
4396
|
+
1, 0, 0, 0, 177, 173, 1, 0, 0, 0, 177, 174, 1, 0, 0, 0, 177, 175, 1, 0, 0, 0, 177, 176,
|
|
4397
|
+
1, 0, 0, 0, 178, 3, 1, 0, 0, 0, 179, 185, 3, 122, 61, 0, 180, 185, 3, 128, 64, 0, 181,
|
|
4398
|
+
185, 3, 130, 65, 0, 182, 185, 5, 9, 0, 0, 183, 185, 5, 30, 0, 0, 184, 179, 1, 0, 0, 0,
|
|
4399
|
+
184, 180, 1, 0, 0, 0, 184, 181, 1, 0, 0, 0, 184, 182, 1, 0, 0, 0, 184, 183, 1, 0, 0, 0,
|
|
4400
|
+
185, 5, 1, 0, 0, 0, 186, 189, 3, 8, 4, 0, 187, 189, 3, 12, 6, 0, 188, 186, 1, 0, 0, 0, 188,
|
|
4401
|
+
187, 1, 0, 0, 0, 189, 7, 1, 0, 0, 0, 190, 197, 3, 24, 12, 0, 191, 197, 3, 32, 16, 0, 192,
|
|
4402
|
+
197, 3, 30, 15, 0, 193, 197, 3, 40, 20, 0, 194, 197, 3, 112, 56, 0, 195, 197, 3, 116,
|
|
4403
|
+
58, 0, 196, 190, 1, 0, 0, 0, 196, 191, 1, 0, 0, 0, 196, 192, 1, 0, 0, 0, 196, 193, 1, 0,
|
|
4404
|
+
0, 0, 196, 194, 1, 0, 0, 0, 196, 195, 1, 0, 0, 0, 197, 9, 1, 0, 0, 0, 198, 199, 5, 67, 0,
|
|
4405
|
+
0, 199, 202, 5, 69, 0, 0, 200, 203, 5, 67, 0, 0, 201, 203, 3, 2, 1, 0, 202, 200, 1, 0,
|
|
4406
|
+
0, 0, 202, 201, 1, 0, 0, 0, 203, 204, 1, 0, 0, 0, 204, 202, 1, 0, 0, 0, 204, 205, 1, 0,
|
|
4407
|
+
0, 0, 205, 206, 1, 0, 0, 0, 206, 207, 5, 70, 0, 0, 207, 11, 1, 0, 0, 0, 208, 209, 7, 0,
|
|
4408
|
+
0, 0, 209, 210, 5, 1, 0, 0, 210, 211, 3, 10, 5, 0, 211, 13, 1, 0, 0, 0, 212, 213, 3, 78,
|
|
4409
|
+
39, 0, 213, 214, 5, 1, 0, 0, 214, 215, 5, 67, 0, 0, 215, 218, 5, 69, 0, 0, 216, 219, 5,
|
|
4410
|
+
67, 0, 0, 217, 219, 3, 16, 8, 0, 218, 216, 1, 0, 0, 0, 218, 217, 1, 0, 0, 0, 219, 220,
|
|
4411
|
+
1, 0, 0, 0, 220, 218, 1, 0, 0, 0, 220, 221, 1, 0, 0, 0, 221, 222, 1, 0, 0, 0, 222, 223,
|
|
4412
|
+
5, 70, 0, 0, 223, 15, 1, 0, 0, 0, 224, 225, 7, 1, 0, 0, 225, 226, 5, 1, 0, 0, 226, 227,
|
|
4413
|
+
3, 70, 35, 0, 227, 17, 1, 0, 0, 0, 228, 229, 5, 16, 0, 0, 229, 230, 3, 64, 32, 0, 230,
|
|
4414
|
+
19, 1, 0, 0, 0, 231, 232, 5, 59, 0, 0, 232, 235, 5, 1, 0, 0, 233, 236, 3, 70, 35, 0, 234,
|
|
4415
|
+
236, 5, 59, 0, 0, 235, 233, 1, 0, 0, 0, 235, 234, 1, 0, 0, 0, 236, 21, 1, 0, 0, 0, 237,
|
|
4416
|
+
240, 3, 64, 32, 0, 238, 240, 3, 52, 26, 0, 239, 237, 1, 0, 0, 0, 239, 238, 1, 0, 0, 0,
|
|
4417
|
+
240, 244, 1, 0, 0, 0, 241, 243, 3, 20, 10, 0, 242, 241, 1, 0, 0, 0, 243, 246, 1, 0, 0,
|
|
4418
|
+
0, 244, 242, 1, 0, 0, 0, 244, 245, 1, 0, 0, 0, 245, 248, 1, 0, 0, 0, 246, 244, 1, 0, 0,
|
|
4419
|
+
0, 247, 249, 3, 18, 9, 0, 248, 247, 1, 0, 0, 0, 248, 249, 1, 0, 0, 0, 249, 23, 1, 0, 0,
|
|
4420
|
+
0, 250, 251, 5, 17, 0, 0, 251, 252, 3, 22, 11, 0, 252, 25, 1, 0, 0, 0, 253, 257, 3, 22,
|
|
4421
|
+
11, 0, 254, 257, 3, 18, 9, 0, 255, 257, 5, 20, 0, 0, 256, 253, 1, 0, 0, 0, 256, 254, 1,
|
|
4422
|
+
0, 0, 0, 256, 255, 1, 0, 0, 0, 257, 27, 1, 0, 0, 0, 258, 259, 7, 2, 0, 0, 259, 29, 1, 0,
|
|
4423
|
+
0, 0, 260, 261, 5, 18, 0, 0, 261, 262, 3, 26, 13, 0, 262, 31, 1, 0, 0, 0, 263, 264, 5,
|
|
4424
|
+
19, 0, 0, 264, 269, 3, 26, 13, 0, 265, 266, 5, 2, 0, 0, 266, 268, 3, 26, 13, 0, 267, 265,
|
|
4425
|
+
1, 0, 0, 0, 268, 271, 1, 0, 0, 0, 269, 267, 1, 0, 0, 0, 269, 270, 1, 0, 0, 0, 270, 33, 1,
|
|
4426
|
+
0, 0, 0, 271, 269, 1, 0, 0, 0, 272, 273, 5, 18, 0, 0, 273, 274, 3, 26, 13, 0, 274, 275,
|
|
4427
|
+
5, 19, 0, 0, 275, 280, 3, 26, 13, 0, 276, 277, 5, 2, 0, 0, 277, 279, 3, 26, 13, 0, 278,
|
|
4428
|
+
276, 1, 0, 0, 0, 279, 282, 1, 0, 0, 0, 280, 278, 1, 0, 0, 0, 280, 281, 1, 0, 0, 0, 281,
|
|
4429
|
+
283, 1, 0, 0, 0, 282, 280, 1, 0, 0, 0, 283, 284, 5, 1, 0, 0, 284, 285, 5, 67, 0, 0, 285,
|
|
4430
|
+
288, 5, 69, 0, 0, 286, 289, 5, 67, 0, 0, 287, 289, 3, 36, 18, 0, 288, 286, 1, 0, 0, 0,
|
|
4431
|
+
288, 287, 1, 0, 0, 0, 289, 290, 1, 0, 0, 0, 290, 288, 1, 0, 0, 0, 290, 291, 1, 0, 0, 0,
|
|
4432
|
+
291, 292, 1, 0, 0, 0, 292, 293, 5, 70, 0, 0, 293, 35, 1, 0, 0, 0, 294, 295, 3, 28, 14,
|
|
4433
|
+
0, 295, 296, 5, 1, 0, 0, 296, 301, 3, 38, 19, 0, 297, 298, 5, 2, 0, 0, 298, 300, 3, 38,
|
|
4434
|
+
19, 0, 299, 297, 1, 0, 0, 0, 300, 303, 1, 0, 0, 0, 301, 299, 1, 0, 0, 0, 301, 302, 1, 0,
|
|
4435
|
+
0, 0, 302, 37, 1, 0, 0, 0, 303, 301, 1, 0, 0, 0, 304, 305, 7, 3, 0, 0, 305, 39, 1, 0, 0,
|
|
4436
|
+
0, 306, 307, 3, 44, 22, 0, 307, 308, 5, 67, 0, 0, 308, 311, 5, 69, 0, 0, 309, 312, 5,
|
|
4437
|
+
67, 0, 0, 310, 312, 3, 42, 21, 0, 311, 309, 1, 0, 0, 0, 311, 310, 1, 0, 0, 0, 312, 313,
|
|
4438
|
+
1, 0, 0, 0, 313, 311, 1, 0, 0, 0, 313, 314, 1, 0, 0, 0, 314, 315, 1, 0, 0, 0, 315, 316,
|
|
4439
|
+
5, 70, 0, 0, 316, 41, 1, 0, 0, 0, 317, 320, 3, 2, 1, 0, 318, 320, 3, 46, 23, 0, 319, 317,
|
|
4440
|
+
1, 0, 0, 0, 319, 318, 1, 0, 0, 0, 320, 43, 1, 0, 0, 0, 321, 322, 3, 30, 15, 0, 322, 326,
|
|
4441
|
+
5, 1, 0, 0, 323, 325, 3, 146, 73, 0, 324, 323, 1, 0, 0, 0, 325, 328, 1, 0, 0, 0, 326, 324,
|
|
4442
|
+
1, 0, 0, 0, 326, 327, 1, 0, 0, 0, 327, 45, 1, 0, 0, 0, 328, 326, 1, 0, 0, 0, 329, 330, 3,
|
|
4443
|
+
28, 14, 0, 330, 333, 5, 1, 0, 0, 331, 334, 3, 48, 24, 0, 332, 334, 3, 50, 25, 0, 333,
|
|
4444
|
+
331, 1, 0, 0, 0, 333, 332, 1, 0, 0, 0, 334, 47, 1, 0, 0, 0, 335, 338, 3, 2, 1, 0, 336, 338,
|
|
4445
|
+
5, 57, 0, 0, 337, 335, 1, 0, 0, 0, 337, 336, 1, 0, 0, 0, 338, 49, 1, 0, 0, 0, 339, 340,
|
|
4446
|
+
3, 10, 5, 0, 340, 51, 1, 0, 0, 0, 341, 344, 3, 78, 39, 0, 342, 344, 3, 84, 42, 0, 343,
|
|
4447
|
+
341, 1, 0, 0, 0, 343, 342, 1, 0, 0, 0, 344, 345, 1, 0, 0, 0, 345, 346, 5, 3, 0, 0, 346,
|
|
4448
|
+
347, 3, 64, 32, 0, 347, 53, 1, 0, 0, 0, 348, 349, 3, 78, 39, 0, 349, 350, 7, 4, 0, 0, 350,
|
|
4449
|
+
351, 3, 64, 32, 0, 351, 55, 1, 0, 0, 0, 352, 353, 5, 59, 0, 0, 353, 354, 5, 3, 0, 0, 354,
|
|
4450
|
+
355, 3, 64, 32, 0, 355, 57, 1, 0, 0, 0, 356, 361, 3, 64, 32, 0, 357, 358, 5, 2, 0, 0, 358,
|
|
4451
|
+
360, 3, 64, 32, 0, 359, 357, 1, 0, 0, 0, 360, 363, 1, 0, 0, 0, 361, 359, 1, 0, 0, 0, 361,
|
|
4452
|
+
362, 1, 0, 0, 0, 362, 368, 1, 0, 0, 0, 363, 361, 1, 0, 0, 0, 364, 365, 5, 2, 0, 0, 365,
|
|
4453
|
+
367, 3, 56, 28, 0, 366, 364, 1, 0, 0, 0, 367, 370, 1, 0, 0, 0, 368, 366, 1, 0, 0, 0, 368,
|
|
4454
|
+
369, 1, 0, 0, 0, 369, 380, 1, 0, 0, 0, 370, 368, 1, 0, 0, 0, 371, 376, 3, 56, 28, 0, 372,
|
|
4455
|
+
373, 5, 2, 0, 0, 373, 375, 3, 56, 28, 0, 374, 372, 1, 0, 0, 0, 375, 378, 1, 0, 0, 0, 376,
|
|
4456
|
+
374, 1, 0, 0, 0, 376, 377, 1, 0, 0, 0, 377, 380, 1, 0, 0, 0, 378, 376, 1, 0, 0, 0, 379,
|
|
4457
|
+
356, 1, 0, 0, 0, 379, 371, 1, 0, 0, 0, 380, 59, 1, 0, 0, 0, 381, 382, 3, 78, 39, 0, 382,
|
|
4458
|
+
383, 5, 3, 0, 0, 383, 384, 3, 64, 32, 0, 384, 61, 1, 0, 0, 0, 385, 386, 5, 4, 0, 0, 386,
|
|
4459
|
+
387, 5, 59, 0, 0, 387, 388, 5, 3, 0, 0, 388, 389, 3, 64, 32, 0, 389, 63, 1, 0, 0, 0, 390,
|
|
4460
|
+
391, 6, 32, -1, 0, 391, 392, 5, 55, 0, 0, 392, 393, 3, 64, 32, 0, 393, 394, 5, 56, 0,
|
|
4461
|
+
0, 394, 408, 1, 0, 0, 0, 395, 398, 3, 70, 35, 0, 396, 398, 3, 78, 39, 0, 397, 395, 1,
|
|
4462
|
+
0, 0, 0, 397, 396, 1, 0, 0, 0, 398, 408, 1, 0, 0, 0, 399, 400, 3, 68, 34, 0, 400, 401,
|
|
4463
|
+
3, 64, 32, 11, 401, 408, 1, 0, 0, 0, 402, 408, 3, 92, 46, 0, 403, 408, 3, 96, 48, 0, 404,
|
|
4464
|
+
408, 3, 98, 49, 0, 405, 408, 3, 84, 42, 0, 406, 408, 3, 114, 57, 0, 407, 390, 1, 0, 0,
|
|
4465
|
+
0, 407, 397, 1, 0, 0, 0, 407, 399, 1, 0, 0, 0, 407, 402, 1, 0, 0, 0, 407, 403, 1, 0, 0,
|
|
4466
|
+
0, 407, 404, 1, 0, 0, 0, 407, 405, 1, 0, 0, 0, 407, 406, 1, 0, 0, 0, 408, 429, 1, 0, 0,
|
|
4467
|
+
0, 409, 410, 10, 10, 0, 0, 410, 411, 7, 5, 0, 0, 411, 428, 3, 64, 32, 11, 412, 413, 10,
|
|
4468
|
+
9, 0, 0, 413, 414, 7, 6, 0, 0, 414, 428, 3, 64, 32, 10, 415, 416, 10, 8, 0, 0, 416, 417,
|
|
4469
|
+
3, 66, 33, 0, 417, 418, 3, 64, 32, 9, 418, 428, 1, 0, 0, 0, 419, 420, 10, 7, 0, 0, 420,
|
|
4470
|
+
421, 7, 7, 0, 0, 421, 428, 3, 64, 32, 8, 422, 423, 10, 1, 0, 0, 423, 424, 5, 5, 0, 0, 424,
|
|
4471
|
+
425, 3, 64, 32, 0, 425, 426, 5, 6, 0, 0, 426, 428, 1, 0, 0, 0, 427, 409, 1, 0, 0, 0, 427,
|
|
4472
|
+
412, 1, 0, 0, 0, 427, 415, 1, 0, 0, 0, 427, 419, 1, 0, 0, 0, 427, 422, 1, 0, 0, 0, 428,
|
|
4473
|
+
431, 1, 0, 0, 0, 429, 427, 1, 0, 0, 0, 429, 430, 1, 0, 0, 0, 430, 65, 1, 0, 0, 0, 431, 429,
|
|
4474
|
+
1, 0, 0, 0, 432, 433, 7, 8, 0, 0, 433, 67, 1, 0, 0, 0, 434, 435, 7, 9, 0, 0, 435, 69, 1,
|
|
4475
|
+
0, 0, 0, 436, 438, 5, 45, 0, 0, 437, 436, 1, 0, 0, 0, 437, 438, 1, 0, 0, 0, 438, 439, 1,
|
|
4476
|
+
0, 0, 0, 439, 440, 7, 10, 0, 0, 440, 71, 1, 0, 0, 0, 441, 442, 5, 24, 0, 0, 442, 443, 5,
|
|
4477
|
+
59, 0, 0, 443, 445, 5, 55, 0, 0, 444, 446, 3, 76, 38, 0, 445, 444, 1, 0, 0, 0, 445, 446,
|
|
4478
|
+
1, 0, 0, 0, 446, 447, 1, 0, 0, 0, 447, 448, 5, 56, 0, 0, 448, 449, 5, 1, 0, 0, 449, 450,
|
|
4479
|
+
5, 67, 0, 0, 450, 453, 5, 69, 0, 0, 451, 454, 5, 67, 0, 0, 452, 454, 3, 74, 37, 0, 453,
|
|
4480
|
+
451, 1, 0, 0, 0, 453, 452, 1, 0, 0, 0, 454, 455, 1, 0, 0, 0, 455, 453, 1, 0, 0, 0, 455,
|
|
4481
|
+
456, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 458, 5, 70, 0, 0, 458, 73, 1, 0, 0, 0, 459,
|
|
4482
|
+
462, 3, 2, 1, 0, 460, 462, 3, 88, 44, 0, 461, 459, 1, 0, 0, 0, 461, 460, 1, 0, 0, 0, 462,
|
|
4483
|
+
75, 1, 0, 0, 0, 463, 468, 5, 59, 0, 0, 464, 465, 5, 2, 0, 0, 465, 467, 5, 59, 0, 0, 466,
|
|
4484
|
+
464, 1, 0, 0, 0, 467, 470, 1, 0, 0, 0, 468, 466, 1, 0, 0, 0, 468, 469, 1, 0, 0, 0, 469,
|
|
4485
|
+
477, 1, 0, 0, 0, 470, 468, 1, 0, 0, 0, 471, 472, 5, 2, 0, 0, 472, 473, 5, 59, 0, 0, 473,
|
|
4486
|
+
474, 5, 3, 0, 0, 474, 476, 3, 70, 35, 0, 475, 471, 1, 0, 0, 0, 476, 479, 1, 0, 0, 0, 477,
|
|
4487
|
+
475, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 493, 1, 0, 0, 0, 479, 477, 1, 0, 0, 0, 480,
|
|
4488
|
+
481, 5, 59, 0, 0, 481, 482, 5, 3, 0, 0, 482, 489, 3, 70, 35, 0, 483, 484, 5, 2, 0, 0, 484,
|
|
4489
|
+
485, 5, 59, 0, 0, 485, 486, 5, 3, 0, 0, 486, 488, 3, 70, 35, 0, 487, 483, 1, 0, 0, 0, 488,
|
|
4490
|
+
491, 1, 0, 0, 0, 489, 487, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 493, 1, 0, 0, 0, 491,
|
|
4491
|
+
489, 1, 0, 0, 0, 492, 463, 1, 0, 0, 0, 492, 480, 1, 0, 0, 0, 493, 77, 1, 0, 0, 0, 494, 498,
|
|
4492
|
+
5, 59, 0, 0, 495, 497, 3, 82, 41, 0, 496, 495, 1, 0, 0, 0, 497, 500, 1, 0, 0, 0, 498, 496,
|
|
4493
|
+
1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 79, 1, 0, 0, 0, 500, 498, 1, 0, 0, 0, 501, 503, 5,
|
|
4494
|
+
55, 0, 0, 502, 504, 3, 58, 29, 0, 503, 502, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 505,
|
|
4495
|
+
1, 0, 0, 0, 505, 508, 5, 56, 0, 0, 506, 508, 3, 82, 41, 0, 507, 501, 1, 0, 0, 0, 507, 506,
|
|
4496
|
+
1, 0, 0, 0, 508, 81, 1, 0, 0, 0, 509, 510, 5, 7, 0, 0, 510, 516, 5, 59, 0, 0, 511, 512,
|
|
4497
|
+
5, 5, 0, 0, 512, 513, 3, 64, 32, 0, 513, 514, 5, 6, 0, 0, 514, 516, 1, 0, 0, 0, 515, 509,
|
|
4498
|
+
1, 0, 0, 0, 515, 511, 1, 0, 0, 0, 516, 83, 1, 0, 0, 0, 517, 519, 3, 86, 43, 0, 518, 517,
|
|
4499
|
+
1, 0, 0, 0, 518, 519, 1, 0, 0, 0, 519, 520, 1, 0, 0, 0, 520, 522, 5, 59, 0, 0, 521, 523,
|
|
4500
|
+
3, 80, 40, 0, 522, 521, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 522, 1, 0, 0, 0, 524, 525,
|
|
4501
|
+
1, 0, 0, 0, 525, 85, 1, 0, 0, 0, 526, 528, 5, 44, 0, 0, 527, 526, 1, 0, 0, 0, 527, 528,
|
|
4502
|
+
1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 531, 5, 46, 0, 0, 530, 532, 3, 64, 32, 0, 531, 530,
|
|
4503
|
+
1, 0, 0, 0, 531, 532, 1, 0, 0, 0, 532, 87, 1, 0, 0, 0, 533, 534, 5, 23, 0, 0, 534, 535,
|
|
4504
|
+
3, 64, 32, 0, 535, 89, 1, 0, 0, 0, 536, 537, 3, 106, 53, 0, 537, 538, 5, 1, 0, 0, 538,
|
|
4505
|
+
539, 3, 10, 5, 0, 539, 91, 1, 0, 0, 0, 540, 541, 5, 11, 0, 0, 541, 542, 5, 12, 0, 0, 542,
|
|
4506
|
+
543, 5, 1, 0, 0, 543, 544, 5, 67, 0, 0, 544, 547, 5, 69, 0, 0, 545, 548, 5, 67, 0, 0, 546,
|
|
4507
|
+
548, 3, 104, 52, 0, 547, 545, 1, 0, 0, 0, 547, 546, 1, 0, 0, 0, 548, 549, 1, 0, 0, 0, 549,
|
|
4508
|
+
547, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 552, 5, 70, 0, 0, 552,
|
|
4509
|
+
93, 1, 0, 0, 0, 553, 554, 5, 67, 0, 0, 554, 557, 5, 69, 0, 0, 555, 558, 5, 67, 0, 0, 556,
|
|
4510
|
+
558, 3, 102, 51, 0, 557, 555, 1, 0, 0, 0, 557, 556, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559,
|
|
4511
|
+
557, 1, 0, 0, 0, 559, 560, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 562, 5, 70, 0, 0, 562,
|
|
4512
|
+
95, 1, 0, 0, 0, 563, 564, 5, 11, 0, 0, 564, 568, 5, 13, 0, 0, 565, 566, 5, 55, 0, 0, 566,
|
|
4513
|
+
567, 5, 59, 0, 0, 567, 569, 5, 56, 0, 0, 568, 565, 1, 0, 0, 0, 568, 569, 1, 0, 0, 0, 569,
|
|
4514
|
+
570, 1, 0, 0, 0, 570, 571, 5, 1, 0, 0, 571, 572, 3, 94, 47, 0, 572, 97, 1, 0, 0, 0, 573,
|
|
4515
|
+
574, 5, 11, 0, 0, 574, 575, 5, 14, 0, 0, 575, 576, 5, 1, 0, 0, 576, 577, 5, 67, 0, 0, 577,
|
|
4516
|
+
581, 5, 69, 0, 0, 578, 582, 5, 67, 0, 0, 579, 582, 3, 104, 52, 0, 580, 582, 3, 90, 45,
|
|
4517
|
+
0, 581, 578, 1, 0, 0, 0, 581, 579, 1, 0, 0, 0, 581, 580, 1, 0, 0, 0, 582, 583, 1, 0, 0,
|
|
4518
|
+
0, 583, 581, 1, 0, 0, 0, 583, 584, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 586, 5, 70, 0,
|
|
4519
|
+
0, 586, 99, 1, 0, 0, 0, 587, 588, 5, 67, 0, 0, 588, 591, 5, 69, 0, 0, 589, 592, 5, 67,
|
|
4520
|
+
0, 0, 590, 592, 3, 104, 52, 0, 591, 589, 1, 0, 0, 0, 591, 590, 1, 0, 0, 0, 592, 593, 1,
|
|
4521
|
+
0, 0, 0, 593, 591, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 596, 5,
|
|
4522
|
+
70, 0, 0, 596, 101, 1, 0, 0, 0, 597, 599, 7, 11, 0, 0, 598, 600, 5, 1, 0, 0, 599, 598,
|
|
4523
|
+
1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 607, 1, 0, 0, 0, 601, 608, 3, 58, 29, 0, 602, 603,
|
|
4524
|
+
5, 55, 0, 0, 603, 604, 3, 58, 29, 0, 604, 605, 5, 56, 0, 0, 605, 608, 1, 0, 0, 0, 606,
|
|
4525
|
+
608, 3, 100, 50, 0, 607, 601, 1, 0, 0, 0, 607, 602, 1, 0, 0, 0, 607, 606, 1, 0, 0, 0, 608,
|
|
4526
|
+
624, 1, 0, 0, 0, 609, 610, 5, 27, 0, 0, 610, 615, 5, 59, 0, 0, 611, 612, 5, 2, 0, 0, 612,
|
|
4527
|
+
614, 5, 59, 0, 0, 613, 611, 1, 0, 0, 0, 614, 617, 1, 0, 0, 0, 615, 613, 1, 0, 0, 0, 615,
|
|
4528
|
+
616, 1, 0, 0, 0, 616, 618, 1, 0, 0, 0, 617, 615, 1, 0, 0, 0, 618, 619, 5, 28, 0, 0, 619,
|
|
4529
|
+
620, 3, 64, 32, 0, 620, 621, 5, 1, 0, 0, 621, 622, 3, 94, 47, 0, 622, 624, 1, 0, 0, 0,
|
|
4530
|
+
623, 597, 1, 0, 0, 0, 623, 609, 1, 0, 0, 0, 624, 103, 1, 0, 0, 0, 625, 626, 3, 106, 53,
|
|
4531
|
+
0, 626, 627, 5, 1, 0, 0, 627, 628, 3, 108, 54, 0, 628, 105, 1, 0, 0, 0, 629, 630, 7, 12,
|
|
4532
|
+
0, 0, 630, 107, 1, 0, 0, 0, 631, 641, 3, 100, 50, 0, 632, 637, 3, 64, 32, 0, 633, 634,
|
|
4533
|
+
5, 2, 0, 0, 634, 636, 3, 64, 32, 0, 635, 633, 1, 0, 0, 0, 636, 639, 1, 0, 0, 0, 637, 635,
|
|
4534
|
+
1, 0, 0, 0, 637, 638, 1, 0, 0, 0, 638, 641, 1, 0, 0, 0, 639, 637, 1, 0, 0, 0, 640, 631,
|
|
4535
|
+
1, 0, 0, 0, 640, 632, 1, 0, 0, 0, 641, 109, 1, 0, 0, 0, 642, 645, 5, 59, 0, 0, 643, 646,
|
|
4536
|
+
5, 60, 0, 0, 644, 646, 3, 64, 32, 0, 645, 643, 1, 0, 0, 0, 645, 644, 1, 0, 0, 0, 646, 649,
|
|
4537
|
+
1, 0, 0, 0, 647, 649, 5, 59, 0, 0, 648, 642, 1, 0, 0, 0, 648, 647, 1, 0, 0, 0, 649, 111,
|
|
4538
|
+
1, 0, 0, 0, 650, 654, 5, 15, 0, 0, 651, 653, 3, 110, 55, 0, 652, 651, 1, 0, 0, 0, 653,
|
|
4539
|
+
656, 1, 0, 0, 0, 654, 652, 1, 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 113, 1, 0, 0, 0, 656,
|
|
4540
|
+
654, 1, 0, 0, 0, 657, 668, 5, 5, 0, 0, 658, 663, 3, 64, 32, 0, 659, 660, 5, 2, 0, 0, 660,
|
|
4541
|
+
662, 3, 64, 32, 0, 661, 659, 1, 0, 0, 0, 662, 665, 1, 0, 0, 0, 663, 661, 1, 0, 0, 0, 663,
|
|
4542
|
+
664, 1, 0, 0, 0, 664, 667, 1, 0, 0, 0, 665, 663, 1, 0, 0, 0, 666, 658, 1, 0, 0, 0, 667,
|
|
4543
|
+
670, 1, 0, 0, 0, 668, 666, 1, 0, 0, 0, 668, 669, 1, 0, 0, 0, 669, 671, 1, 0, 0, 0, 670,
|
|
4544
|
+
668, 1, 0, 0, 0, 671, 672, 5, 6, 0, 0, 672, 115, 1, 0, 0, 0, 673, 676, 5, 20, 0, 0, 674,
|
|
4545
|
+
677, 5, 59, 0, 0, 675, 677, 3, 64, 32, 0, 676, 674, 1, 0, 0, 0, 676, 675, 1, 0, 0, 0, 677,
|
|
4546
|
+
117, 1, 0, 0, 0, 678, 679, 5, 25, 0, 0, 679, 696, 5, 59, 0, 0, 680, 681, 5, 26, 0, 0, 681,
|
|
4547
|
+
682, 5, 59, 0, 0, 682, 683, 5, 25, 0, 0, 683, 696, 5, 47, 0, 0, 684, 685, 5, 26, 0, 0,
|
|
4548
|
+
685, 686, 5, 59, 0, 0, 686, 687, 5, 25, 0, 0, 687, 692, 5, 59, 0, 0, 688, 689, 5, 2, 0,
|
|
4549
|
+
0, 689, 691, 5, 59, 0, 0, 690, 688, 1, 0, 0, 0, 691, 694, 1, 0, 0, 0, 692, 690, 1, 0, 0,
|
|
4550
|
+
0, 692, 693, 1, 0, 0, 0, 693, 696, 1, 0, 0, 0, 694, 692, 1, 0, 0, 0, 695, 678, 1, 0, 0,
|
|
4551
|
+
0, 695, 680, 1, 0, 0, 0, 695, 684, 1, 0, 0, 0, 696, 119, 1, 0, 0, 0, 697, 698, 7, 13, 0,
|
|
4552
|
+
0, 698, 699, 5, 1, 0, 0, 699, 700, 3, 10, 5, 0, 700, 121, 1, 0, 0, 0, 701, 702, 5, 31,
|
|
4553
|
+
0, 0, 702, 703, 3, 64, 32, 0, 703, 704, 5, 1, 0, 0, 704, 708, 3, 10, 5, 0, 705, 707, 3,
|
|
4554
|
+
124, 62, 0, 706, 705, 1, 0, 0, 0, 707, 710, 1, 0, 0, 0, 708, 706, 1, 0, 0, 0, 708, 709,
|
|
4555
|
+
1, 0, 0, 0, 709, 712, 1, 0, 0, 0, 710, 708, 1, 0, 0, 0, 711, 713, 3, 126, 63, 0, 712, 711,
|
|
4556
|
+
1, 0, 0, 0, 712, 713, 1, 0, 0, 0, 713, 123, 1, 0, 0, 0, 714, 715, 5, 32, 0, 0, 715, 716,
|
|
4557
|
+
5, 31, 0, 0, 716, 717, 3, 64, 32, 0, 717, 718, 5, 1, 0, 0, 718, 719, 3, 10, 5, 0, 719,
|
|
4558
|
+
125, 1, 0, 0, 0, 720, 721, 5, 32, 0, 0, 721, 722, 5, 1, 0, 0, 722, 723, 3, 10, 5, 0, 723,
|
|
4559
|
+
127, 1, 0, 0, 0, 724, 725, 5, 29, 0, 0, 725, 726, 3, 64, 32, 0, 726, 727, 5, 1, 0, 0, 727,
|
|
4560
|
+
728, 3, 10, 5, 0, 728, 129, 1, 0, 0, 0, 729, 730, 5, 27, 0, 0, 730, 735, 5, 59, 0, 0, 731,
|
|
4561
|
+
732, 5, 2, 0, 0, 732, 734, 5, 59, 0, 0, 733, 731, 1, 0, 0, 0, 734, 737, 1, 0, 0, 0, 735,
|
|
4562
|
+
733, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 738, 1, 0, 0, 0, 737, 735, 1, 0, 0, 0, 738,
|
|
4563
|
+
739, 5, 28, 0, 0, 739, 740, 3, 64, 32, 0, 740, 741, 5, 1, 0, 0, 741, 742, 3, 10, 5, 0,
|
|
4564
|
+
742, 131, 1, 0, 0, 0, 743, 744, 5, 8, 0, 0, 744, 745, 5, 1, 0, 0, 745, 750, 3, 64, 32,
|
|
4565
|
+
0, 746, 747, 5, 2, 0, 0, 747, 749, 3, 64, 32, 0, 748, 746, 1, 0, 0, 0, 749, 752, 1, 0,
|
|
4566
|
+
0, 0, 750, 748, 1, 0, 0, 0, 750, 751, 1, 0, 0, 0, 751, 753, 1, 0, 0, 0, 752, 750, 1, 0,
|
|
4567
|
+
0, 0, 753, 754, 5, 1, 0, 0, 754, 755, 3, 136, 68, 0, 755, 133, 1, 0, 0, 0, 756, 757, 7,
|
|
4568
|
+
14, 0, 0, 757, 135, 1, 0, 0, 0, 758, 759, 5, 67, 0, 0, 759, 762, 5, 69, 0, 0, 760, 763,
|
|
4569
|
+
5, 67, 0, 0, 761, 763, 3, 138, 69, 0, 762, 760, 1, 0, 0, 0, 762, 761, 1, 0, 0, 0, 763,
|
|
4570
|
+
764, 1, 0, 0, 0, 764, 762, 1, 0, 0, 0, 764, 765, 1, 0, 0, 0, 765, 766, 1, 0, 0, 0, 766,
|
|
4571
|
+
767, 5, 70, 0, 0, 767, 137, 1, 0, 0, 0, 768, 772, 3, 140, 70, 0, 769, 772, 3, 144, 72,
|
|
4572
|
+
0, 770, 772, 3, 142, 71, 0, 771, 768, 1, 0, 0, 0, 771, 769, 1, 0, 0, 0, 771, 770, 1, 0,
|
|
4573
|
+
0, 0, 772, 139, 1, 0, 0, 0, 773, 774, 3, 134, 67, 0, 774, 775, 5, 1, 0, 0, 775, 783, 3,
|
|
4574
|
+
64, 32, 0, 776, 777, 5, 2, 0, 0, 777, 778, 3, 134, 67, 0, 778, 779, 5, 1, 0, 0, 779, 780,
|
|
4575
|
+
3, 64, 32, 0, 780, 782, 1, 0, 0, 0, 781, 776, 1, 0, 0, 0, 782, 785, 1, 0, 0, 0, 783, 781,
|
|
4576
|
+
1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 790, 1, 0, 0, 0, 785, 783, 1, 0, 0, 0, 786, 787,
|
|
4577
|
+
5, 2, 0, 0, 787, 789, 3, 134, 67, 0, 788, 786, 1, 0, 0, 0, 789, 792, 1, 0, 0, 0, 790, 788,
|
|
4578
|
+
1, 0, 0, 0, 790, 791, 1, 0, 0, 0, 791, 793, 1, 0, 0, 0, 792, 790, 1, 0, 0, 0, 793, 803,
|
|
4579
|
+
5, 1, 0, 0, 794, 804, 3, 136, 68, 0, 795, 800, 3, 64, 32, 0, 796, 797, 5, 2, 0, 0, 797,
|
|
4580
|
+
799, 3, 64, 32, 0, 798, 796, 1, 0, 0, 0, 799, 802, 1, 0, 0, 0, 800, 798, 1, 0, 0, 0, 800,
|
|
4581
|
+
801, 1, 0, 0, 0, 801, 804, 1, 0, 0, 0, 802, 800, 1, 0, 0, 0, 803, 794, 1, 0, 0, 0, 803,
|
|
4582
|
+
795, 1, 0, 0, 0, 804, 141, 1, 0, 0, 0, 805, 806, 3, 134, 67, 0, 806, 807, 5, 1, 0, 0, 807,
|
|
4583
|
+
808, 3, 136, 68, 0, 808, 143, 1, 0, 0, 0, 809, 810, 3, 134, 67, 0, 810, 811, 5, 1, 0,
|
|
4584
|
+
0, 811, 816, 3, 64, 32, 0, 812, 813, 5, 2, 0, 0, 813, 815, 3, 64, 32, 0, 814, 812, 1,
|
|
4585
|
+
0, 0, 0, 815, 818, 1, 0, 0, 0, 816, 814, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 145, 1,
|
|
4586
|
+
0, 0, 0, 818, 816, 1, 0, 0, 0, 819, 820, 5, 54, 0, 0, 820, 821, 5, 59, 0, 0, 821, 147,
|
|
4587
|
+
1, 0, 0, 0, 89, 150, 152, 157, 159, 177, 184, 188, 196, 202, 204, 218, 220, 235, 239,
|
|
4588
|
+
244, 248, 256, 269, 280, 288, 290, 301, 311, 313, 319, 326, 333, 337, 343, 361,
|
|
4589
|
+
368, 376, 379, 397, 407, 427, 429, 437, 445, 453, 455, 461, 468, 477, 489, 492,
|
|
4590
|
+
498, 503, 507, 515, 518, 524, 527, 531, 547, 549, 557, 559, 568, 581, 583, 591,
|
|
4591
|
+
593, 599, 607, 615, 623, 637, 640, 645, 648, 654, 663, 668, 676, 692, 695, 708,
|
|
4592
|
+
712, 735, 750, 762, 764, 771, 783, 790, 800, 803, 816
|
|
4523
4593
|
];
|
|
4524
4594
|
static __ATN;
|
|
4525
4595
|
static get _ATN() {
|
|
@@ -6567,18 +6637,86 @@ export class Import_exprContext extends antlr.ParserRuleContext {
|
|
|
6567
6637
|
constructor(parent, invokingState) {
|
|
6568
6638
|
super(parent, invokingState);
|
|
6569
6639
|
}
|
|
6640
|
+
get ruleIndex() {
|
|
6641
|
+
return CircuitScriptParser.RULE_import_expr;
|
|
6642
|
+
}
|
|
6643
|
+
copyFrom(ctx) {
|
|
6644
|
+
super.copyFrom(ctx);
|
|
6645
|
+
}
|
|
6646
|
+
}
|
|
6647
|
+
export class Import_specificContext extends Import_exprContext {
|
|
6648
|
+
_moduleName;
|
|
6649
|
+
_ID;
|
|
6650
|
+
_funcNames = [];
|
|
6651
|
+
constructor(ctx) {
|
|
6652
|
+
super(ctx.parent, ctx.invokingState);
|
|
6653
|
+
super.copyFrom(ctx);
|
|
6654
|
+
}
|
|
6655
|
+
From() {
|
|
6656
|
+
return this.getToken(CircuitScriptParser.From, 0);
|
|
6657
|
+
}
|
|
6570
6658
|
Import() {
|
|
6571
6659
|
return this.getToken(CircuitScriptParser.Import, 0);
|
|
6572
6660
|
}
|
|
6661
|
+
ID(i) {
|
|
6662
|
+
if (i === undefined) {
|
|
6663
|
+
return this.getTokens(CircuitScriptParser.ID);
|
|
6664
|
+
}
|
|
6665
|
+
else {
|
|
6666
|
+
return this.getToken(CircuitScriptParser.ID, i);
|
|
6667
|
+
}
|
|
6668
|
+
}
|
|
6669
|
+
accept(visitor) {
|
|
6670
|
+
if (visitor.visitImport_specific) {
|
|
6671
|
+
return visitor.visitImport_specific(this);
|
|
6672
|
+
}
|
|
6673
|
+
else {
|
|
6674
|
+
return visitor.visitChildren(this);
|
|
6675
|
+
}
|
|
6676
|
+
}
|
|
6677
|
+
}
|
|
6678
|
+
export class Import_all_simpleContext extends Import_exprContext {
|
|
6679
|
+
_moduleName;
|
|
6680
|
+
constructor(ctx) {
|
|
6681
|
+
super(ctx.parent, ctx.invokingState);
|
|
6682
|
+
super.copyFrom(ctx);
|
|
6683
|
+
}
|
|
6684
|
+
From() {
|
|
6685
|
+
return this.getToken(CircuitScriptParser.From, 0);
|
|
6686
|
+
}
|
|
6687
|
+
Import() {
|
|
6688
|
+
return this.getToken(CircuitScriptParser.Import, 0);
|
|
6689
|
+
}
|
|
6690
|
+
Multiply() {
|
|
6691
|
+
return this.getToken(CircuitScriptParser.Multiply, 0);
|
|
6692
|
+
}
|
|
6573
6693
|
ID() {
|
|
6574
6694
|
return this.getToken(CircuitScriptParser.ID, 0);
|
|
6575
6695
|
}
|
|
6576
|
-
|
|
6577
|
-
|
|
6696
|
+
accept(visitor) {
|
|
6697
|
+
if (visitor.visitImport_all_simple) {
|
|
6698
|
+
return visitor.visitImport_all_simple(this);
|
|
6699
|
+
}
|
|
6700
|
+
else {
|
|
6701
|
+
return visitor.visitChildren(this);
|
|
6702
|
+
}
|
|
6703
|
+
}
|
|
6704
|
+
}
|
|
6705
|
+
export class Import_simpleContext extends Import_exprContext {
|
|
6706
|
+
_moduleName;
|
|
6707
|
+
constructor(ctx) {
|
|
6708
|
+
super(ctx.parent, ctx.invokingState);
|
|
6709
|
+
super.copyFrom(ctx);
|
|
6710
|
+
}
|
|
6711
|
+
Import() {
|
|
6712
|
+
return this.getToken(CircuitScriptParser.Import, 0);
|
|
6713
|
+
}
|
|
6714
|
+
ID() {
|
|
6715
|
+
return this.getToken(CircuitScriptParser.ID, 0);
|
|
6578
6716
|
}
|
|
6579
6717
|
accept(visitor) {
|
|
6580
|
-
if (visitor.
|
|
6581
|
-
return visitor.
|
|
6718
|
+
if (visitor.visitImport_simple) {
|
|
6719
|
+
return visitor.visitImport_simple(this);
|
|
6582
6720
|
}
|
|
6583
6721
|
else {
|
|
6584
6722
|
return visitor.visitChildren(this);
|