@plurnk/plurnk-contracts 1.9.2 → 1.10.0
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/SPEC.md +33 -6
- package/dist/conformance/agui-v1.json +32 -1
- package/dist/plurnk.gemma.gbnf +2 -1
- package/dist/plurnk.qwen.gbnf +2 -1
- package/dist/schema/PlurnkStatement.json +611 -161
- package/dist/src/ApplicationPort.d.ts +7 -0
- package/dist/src/ApplicationPort.d.ts.map +1 -1
- package/dist/src/AstBuilder.d.ts +2 -0
- package/dist/src/AstBuilder.d.ts.map +1 -1
- package/dist/src/AstBuilder.js +57 -13
- package/dist/src/AstBuilder.js.map +1 -1
- package/dist/src/PlurnkErrorStrategy.js +8 -8
- package/dist/src/PlurnkErrorStrategy.js.map +1 -1
- package/dist/src/PlurnkParser.d.ts.map +1 -1
- package/dist/src/PlurnkParser.js +18 -2
- package/dist/src/PlurnkParser.js.map +1 -1
- package/dist/src/generated/plurnkLexer.d.ts +12 -0
- package/dist/src/generated/plurnkLexer.d.ts.map +1 -1
- package/dist/src/generated/plurnkLexer.js +429 -367
- package/dist/src/generated/plurnkLexer.js.map +1 -1
- package/dist/src/generated/plurnkParser.d.ts +19 -9
- package/dist/src/generated/plurnkParser.d.ts.map +1 -1
- package/dist/src/generated/plurnkParser.js +564 -659
- package/dist/src/generated/plurnkParser.js.map +1 -1
- package/dist/src/generated/plurnkParserVisitor.d.ts +7 -0
- package/dist/src/generated/plurnkParserVisitor.d.ts.map +1 -1
- package/dist/src/generated/plurnkParserVisitor.js +6 -0
- package/dist/src/generated/plurnkParserVisitor.js.map +1 -1
- package/dist/src/types.generated.d.ts +1 -0
- package/dist/src/types.generated.d.ts.map +1 -1
- package/package.json +1 -1
- package/plurnk.md +76 -141
|
@@ -77,15 +77,16 @@ export class plurnkParser extends antlr.Parser {
|
|
|
77
77
|
static RULE_termModifiers = 31;
|
|
78
78
|
static RULE_midModifiers = 32;
|
|
79
79
|
static RULE_execModifiers = 33;
|
|
80
|
-
static
|
|
81
|
-
static
|
|
82
|
-
static
|
|
83
|
-
static
|
|
84
|
-
static
|
|
85
|
-
static
|
|
86
|
-
static
|
|
87
|
-
static
|
|
88
|
-
static
|
|
80
|
+
static RULE_execSlot = 34;
|
|
81
|
+
static RULE_tagSignal = 35;
|
|
82
|
+
static RULE_branchSignal = 36;
|
|
83
|
+
static RULE_intSignal = 37;
|
|
84
|
+
static RULE_midSignal = 38;
|
|
85
|
+
static RULE_dispSignal = 39;
|
|
86
|
+
static RULE_identSignal = 40;
|
|
87
|
+
static RULE_target = 41;
|
|
88
|
+
static RULE_lineMarker = 42;
|
|
89
|
+
static RULE_body = 43;
|
|
89
90
|
static literalNames = [
|
|
90
91
|
null, null, null, null, null, null, null, null, null, null, null,
|
|
91
92
|
null, null, null, null, null, null, null, null, null, null, null,
|
|
@@ -110,9 +111,9 @@ export class plurnkParser extends antlr.Parser {
|
|
|
110
111
|
"bareStatement", "workStatement", "forkStatement", "killStatement",
|
|
111
112
|
"planStatement", "lookStatement", "buffStatement", "opAnnotation",
|
|
112
113
|
"statementEnd", "tagOpModifiers", "intOpModifiers", "branchModifiers",
|
|
113
|
-
"termModifiers", "midModifiers", "execModifiers", "
|
|
114
|
-
"intSignal", "midSignal", "dispSignal", "identSignal",
|
|
115
|
-
"lineMarker", "body",
|
|
114
|
+
"termModifiers", "midModifiers", "execModifiers", "execSlot", "tagSignal",
|
|
115
|
+
"branchSignal", "intSignal", "midSignal", "dispSignal", "identSignal",
|
|
116
|
+
"target", "lineMarker", "body",
|
|
116
117
|
];
|
|
117
118
|
get grammarFileName() { return "plurnkParser.g4"; }
|
|
118
119
|
get literalNames() { return plurnkParser.literalNames; }
|
|
@@ -131,36 +132,36 @@ export class plurnkParser extends antlr.Parser {
|
|
|
131
132
|
this.enterRule(localContext, 0, plurnkParser.RULE_document);
|
|
132
133
|
let _la;
|
|
133
134
|
try {
|
|
134
|
-
this.state =
|
|
135
|
+
this.state = 98;
|
|
135
136
|
this.errorHandler.sync(this);
|
|
136
137
|
switch (this.tokenStream.LA(1)) {
|
|
137
138
|
case plurnkParser.TEXT:
|
|
138
139
|
case plurnkParser.OPEN_PLAN:
|
|
139
140
|
this.enterOuterAlt(localContext, 1);
|
|
140
141
|
{
|
|
141
|
-
this.state =
|
|
142
|
+
this.state = 88;
|
|
142
143
|
this.turnContent();
|
|
143
|
-
this.state =
|
|
144
|
+
this.state = 89;
|
|
144
145
|
this.match(plurnkParser.EOF);
|
|
145
146
|
}
|
|
146
147
|
break;
|
|
147
148
|
case plurnkParser.FENCE_OPEN:
|
|
148
149
|
this.enterOuterAlt(localContext, 2);
|
|
149
150
|
{
|
|
150
|
-
this.state =
|
|
151
|
+
this.state = 91;
|
|
151
152
|
this.match(plurnkParser.FENCE_OPEN);
|
|
152
|
-
this.state = 90;
|
|
153
|
-
this.turn();
|
|
154
153
|
this.state = 92;
|
|
154
|
+
this.turn();
|
|
155
|
+
this.state = 94;
|
|
155
156
|
this.errorHandler.sync(this);
|
|
156
157
|
_la = this.tokenStream.LA(1);
|
|
157
158
|
if (_la === 35) {
|
|
158
159
|
{
|
|
159
|
-
this.state =
|
|
160
|
+
this.state = 93;
|
|
160
161
|
this.match(plurnkParser.FENCE_CLOSE);
|
|
161
162
|
}
|
|
162
163
|
}
|
|
163
|
-
this.state =
|
|
164
|
+
this.state = 96;
|
|
164
165
|
this.match(plurnkParser.EOF);
|
|
165
166
|
}
|
|
166
167
|
break;
|
|
@@ -189,21 +190,21 @@ export class plurnkParser extends antlr.Parser {
|
|
|
189
190
|
try {
|
|
190
191
|
this.enterOuterAlt(localContext, 1);
|
|
191
192
|
{
|
|
192
|
-
this.state =
|
|
193
|
+
this.state = 101;
|
|
193
194
|
this.errorHandler.sync(this);
|
|
194
195
|
_la = this.tokenStream.LA(1);
|
|
195
196
|
do {
|
|
196
197
|
{
|
|
197
198
|
{
|
|
198
|
-
this.state =
|
|
199
|
+
this.state = 100;
|
|
199
200
|
this.turnContent();
|
|
200
201
|
}
|
|
201
202
|
}
|
|
202
|
-
this.state =
|
|
203
|
+
this.state = 103;
|
|
203
204
|
this.errorHandler.sync(this);
|
|
204
205
|
_la = this.tokenStream.LA(1);
|
|
205
206
|
} while (_la === 16 || _la === 18);
|
|
206
|
-
this.state =
|
|
207
|
+
this.state = 105;
|
|
207
208
|
this.match(plurnkParser.EOF);
|
|
208
209
|
}
|
|
209
210
|
}
|
|
@@ -228,21 +229,21 @@ export class plurnkParser extends antlr.Parser {
|
|
|
228
229
|
try {
|
|
229
230
|
this.enterOuterAlt(localContext, 1);
|
|
230
231
|
{
|
|
231
|
-
this.state =
|
|
232
|
+
this.state = 110;
|
|
232
233
|
this.errorHandler.sync(this);
|
|
233
234
|
_la = this.tokenStream.LA(1);
|
|
234
235
|
while (_la === 16) {
|
|
235
236
|
{
|
|
236
237
|
{
|
|
237
|
-
this.state =
|
|
238
|
+
this.state = 107;
|
|
238
239
|
this.match(plurnkParser.TEXT);
|
|
239
240
|
}
|
|
240
241
|
}
|
|
241
|
-
this.state =
|
|
242
|
+
this.state = 112;
|
|
242
243
|
this.errorHandler.sync(this);
|
|
243
244
|
_la = this.tokenStream.LA(1);
|
|
244
245
|
}
|
|
245
|
-
this.state =
|
|
246
|
+
this.state = 113;
|
|
246
247
|
this.turn();
|
|
247
248
|
}
|
|
248
249
|
}
|
|
@@ -267,25 +268,25 @@ export class plurnkParser extends antlr.Parser {
|
|
|
267
268
|
let alternative;
|
|
268
269
|
this.enterOuterAlt(localContext, 1);
|
|
269
270
|
{
|
|
270
|
-
this.state =
|
|
271
|
+
this.state = 115;
|
|
271
272
|
this.planStatement();
|
|
272
|
-
this.state =
|
|
273
|
+
this.state = 119;
|
|
273
274
|
this.errorHandler.sync(this);
|
|
274
275
|
alternative = this.interpreter.adaptivePredict(this.tokenStream, 4, this.context);
|
|
275
276
|
while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) {
|
|
276
277
|
if (alternative === 1) {
|
|
277
278
|
{
|
|
278
279
|
{
|
|
279
|
-
this.state =
|
|
280
|
+
this.state = 116;
|
|
280
281
|
this.midStatement();
|
|
281
282
|
}
|
|
282
283
|
}
|
|
283
284
|
}
|
|
284
|
-
this.state =
|
|
285
|
+
this.state = 121;
|
|
285
286
|
this.errorHandler.sync(this);
|
|
286
287
|
alternative = this.interpreter.adaptivePredict(this.tokenStream, 4, this.context);
|
|
287
288
|
}
|
|
288
|
-
this.state =
|
|
289
|
+
this.state = 122;
|
|
289
290
|
this.sendStatement();
|
|
290
291
|
}
|
|
291
292
|
}
|
|
@@ -310,21 +311,21 @@ export class plurnkParser extends antlr.Parser {
|
|
|
310
311
|
try {
|
|
311
312
|
this.enterOuterAlt(localContext, 1);
|
|
312
313
|
{
|
|
313
|
-
this.state =
|
|
314
|
+
this.state = 127;
|
|
314
315
|
this.errorHandler.sync(this);
|
|
315
316
|
_la = this.tokenStream.LA(1);
|
|
316
317
|
while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294705152) !== 0)) {
|
|
317
318
|
{
|
|
318
319
|
{
|
|
319
|
-
this.state =
|
|
320
|
+
this.state = 124;
|
|
320
321
|
this.statement();
|
|
321
322
|
}
|
|
322
323
|
}
|
|
323
|
-
this.state =
|
|
324
|
+
this.state = 129;
|
|
324
325
|
this.errorHandler.sync(this);
|
|
325
326
|
_la = this.tokenStream.LA(1);
|
|
326
327
|
}
|
|
327
|
-
this.state =
|
|
328
|
+
this.state = 130;
|
|
328
329
|
this.match(plurnkParser.EOF);
|
|
329
330
|
}
|
|
330
331
|
}
|
|
@@ -349,21 +350,21 @@ export class plurnkParser extends antlr.Parser {
|
|
|
349
350
|
try {
|
|
350
351
|
this.enterOuterAlt(localContext, 1);
|
|
351
352
|
{
|
|
352
|
-
this.state =
|
|
353
|
+
this.state = 135;
|
|
353
354
|
this.errorHandler.sync(this);
|
|
354
355
|
_la = this.tokenStream.LA(1);
|
|
355
356
|
while (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 65535) !== 0)) {
|
|
356
357
|
{
|
|
357
358
|
{
|
|
358
|
-
this.state =
|
|
359
|
+
this.state = 132;
|
|
359
360
|
this.clientStatement();
|
|
360
361
|
}
|
|
361
362
|
}
|
|
362
|
-
this.state =
|
|
363
|
+
this.state = 137;
|
|
363
364
|
this.errorHandler.sync(this);
|
|
364
365
|
_la = this.tokenStream.LA(1);
|
|
365
366
|
}
|
|
366
|
-
this.state =
|
|
367
|
+
this.state = 138;
|
|
367
368
|
this.match(plurnkParser.EOF);
|
|
368
369
|
}
|
|
369
370
|
}
|
|
@@ -385,7 +386,7 @@ export class plurnkParser extends antlr.Parser {
|
|
|
385
386
|
let localContext = new ClientStatementContext(this.context, this.state);
|
|
386
387
|
this.enterRule(localContext, 12, plurnkParser.RULE_clientStatement);
|
|
387
388
|
try {
|
|
388
|
-
this.state =
|
|
389
|
+
this.state = 143;
|
|
389
390
|
this.errorHandler.sync(this);
|
|
390
391
|
switch (this.tokenStream.LA(1)) {
|
|
391
392
|
case plurnkParser.OPEN_PLAN:
|
|
@@ -404,21 +405,21 @@ export class plurnkParser extends antlr.Parser {
|
|
|
404
405
|
case plurnkParser.OPEN_KILL:
|
|
405
406
|
this.enterOuterAlt(localContext, 1);
|
|
406
407
|
{
|
|
407
|
-
this.state =
|
|
408
|
+
this.state = 140;
|
|
408
409
|
this.statement();
|
|
409
410
|
}
|
|
410
411
|
break;
|
|
411
412
|
case plurnkParser.OPEN_LOOK:
|
|
412
413
|
this.enterOuterAlt(localContext, 2);
|
|
413
414
|
{
|
|
414
|
-
this.state =
|
|
415
|
+
this.state = 141;
|
|
415
416
|
this.lookStatement();
|
|
416
417
|
}
|
|
417
418
|
break;
|
|
418
419
|
case plurnkParser.OPEN_BUFF:
|
|
419
420
|
this.enterOuterAlt(localContext, 3);
|
|
420
421
|
{
|
|
421
|
-
this.state =
|
|
422
|
+
this.state = 142;
|
|
422
423
|
this.buffStatement();
|
|
423
424
|
}
|
|
424
425
|
break;
|
|
@@ -444,111 +445,111 @@ export class plurnkParser extends antlr.Parser {
|
|
|
444
445
|
let localContext = new StatementContext(this.context, this.state);
|
|
445
446
|
this.enterRule(localContext, 14, plurnkParser.RULE_statement);
|
|
446
447
|
try {
|
|
447
|
-
this.state =
|
|
448
|
+
this.state = 160;
|
|
448
449
|
this.errorHandler.sync(this);
|
|
449
450
|
switch (this.interpreter.adaptivePredict(this.tokenStream, 8, this.context)) {
|
|
450
451
|
case 1:
|
|
451
452
|
this.enterOuterAlt(localContext, 1);
|
|
452
453
|
{
|
|
453
|
-
this.state =
|
|
454
|
+
this.state = 145;
|
|
454
455
|
this.findStatement();
|
|
455
456
|
}
|
|
456
457
|
break;
|
|
457
458
|
case 2:
|
|
458
459
|
this.enterOuterAlt(localContext, 2);
|
|
459
460
|
{
|
|
460
|
-
this.state =
|
|
461
|
+
this.state = 146;
|
|
461
462
|
this.readStatement();
|
|
462
463
|
}
|
|
463
464
|
break;
|
|
464
465
|
case 3:
|
|
465
466
|
this.enterOuterAlt(localContext, 3);
|
|
466
467
|
{
|
|
467
|
-
this.state =
|
|
468
|
+
this.state = 147;
|
|
468
469
|
this.editStatement();
|
|
469
470
|
}
|
|
470
471
|
break;
|
|
471
472
|
case 4:
|
|
472
473
|
this.enterOuterAlt(localContext, 4);
|
|
473
474
|
{
|
|
474
|
-
this.state =
|
|
475
|
+
this.state = 148;
|
|
475
476
|
this.copyStatement();
|
|
476
477
|
}
|
|
477
478
|
break;
|
|
478
479
|
case 5:
|
|
479
480
|
this.enterOuterAlt(localContext, 5);
|
|
480
481
|
{
|
|
481
|
-
this.state =
|
|
482
|
+
this.state = 149;
|
|
482
483
|
this.moveStatement();
|
|
483
484
|
}
|
|
484
485
|
break;
|
|
485
486
|
case 6:
|
|
486
487
|
this.enterOuterAlt(localContext, 6);
|
|
487
488
|
{
|
|
488
|
-
this.state =
|
|
489
|
+
this.state = 150;
|
|
489
490
|
this.openStatement();
|
|
490
491
|
}
|
|
491
492
|
break;
|
|
492
493
|
case 7:
|
|
493
494
|
this.enterOuterAlt(localContext, 7);
|
|
494
495
|
{
|
|
495
|
-
this.state =
|
|
496
|
+
this.state = 151;
|
|
496
497
|
this.foldStatement();
|
|
497
498
|
}
|
|
498
499
|
break;
|
|
499
500
|
case 8:
|
|
500
501
|
this.enterOuterAlt(localContext, 8);
|
|
501
502
|
{
|
|
502
|
-
this.state =
|
|
503
|
+
this.state = 152;
|
|
503
504
|
this.sendStatement();
|
|
504
505
|
}
|
|
505
506
|
break;
|
|
506
507
|
case 9:
|
|
507
508
|
this.enterOuterAlt(localContext, 9);
|
|
508
509
|
{
|
|
509
|
-
this.state =
|
|
510
|
+
this.state = 153;
|
|
510
511
|
this.midSend();
|
|
511
512
|
}
|
|
512
513
|
break;
|
|
513
514
|
case 10:
|
|
514
515
|
this.enterOuterAlt(localContext, 10);
|
|
515
516
|
{
|
|
516
|
-
this.state =
|
|
517
|
+
this.state = 154;
|
|
517
518
|
this.execStatement();
|
|
518
519
|
}
|
|
519
520
|
break;
|
|
520
521
|
case 11:
|
|
521
522
|
this.enterOuterAlt(localContext, 11);
|
|
522
523
|
{
|
|
523
|
-
this.state =
|
|
524
|
+
this.state = 155;
|
|
524
525
|
this.bareStatement();
|
|
525
526
|
}
|
|
526
527
|
break;
|
|
527
528
|
case 12:
|
|
528
529
|
this.enterOuterAlt(localContext, 12);
|
|
529
530
|
{
|
|
530
|
-
this.state =
|
|
531
|
+
this.state = 156;
|
|
531
532
|
this.workStatement();
|
|
532
533
|
}
|
|
533
534
|
break;
|
|
534
535
|
case 13:
|
|
535
536
|
this.enterOuterAlt(localContext, 13);
|
|
536
537
|
{
|
|
537
|
-
this.state =
|
|
538
|
+
this.state = 157;
|
|
538
539
|
this.forkStatement();
|
|
539
540
|
}
|
|
540
541
|
break;
|
|
541
542
|
case 14:
|
|
542
543
|
this.enterOuterAlt(localContext, 14);
|
|
543
544
|
{
|
|
544
|
-
this.state =
|
|
545
|
+
this.state = 158;
|
|
545
546
|
this.killStatement();
|
|
546
547
|
}
|
|
547
548
|
break;
|
|
548
549
|
case 15:
|
|
549
550
|
this.enterOuterAlt(localContext, 15);
|
|
550
551
|
{
|
|
551
|
-
this.state =
|
|
552
|
+
this.state = 159;
|
|
552
553
|
this.planStatement();
|
|
553
554
|
}
|
|
554
555
|
break;
|
|
@@ -572,97 +573,97 @@ export class plurnkParser extends antlr.Parser {
|
|
|
572
573
|
let localContext = new MidStatementContext(this.context, this.state);
|
|
573
574
|
this.enterRule(localContext, 16, plurnkParser.RULE_midStatement);
|
|
574
575
|
try {
|
|
575
|
-
this.state =
|
|
576
|
+
this.state = 175;
|
|
576
577
|
this.errorHandler.sync(this);
|
|
577
578
|
switch (this.tokenStream.LA(1)) {
|
|
578
579
|
case plurnkParser.OPEN_FIND:
|
|
579
580
|
this.enterOuterAlt(localContext, 1);
|
|
580
581
|
{
|
|
581
|
-
this.state =
|
|
582
|
+
this.state = 162;
|
|
582
583
|
this.findStatement();
|
|
583
584
|
}
|
|
584
585
|
break;
|
|
585
586
|
case plurnkParser.OPEN_READ:
|
|
586
587
|
this.enterOuterAlt(localContext, 2);
|
|
587
588
|
{
|
|
588
|
-
this.state =
|
|
589
|
+
this.state = 163;
|
|
589
590
|
this.readStatement();
|
|
590
591
|
}
|
|
591
592
|
break;
|
|
592
593
|
case plurnkParser.OPEN_EDIT:
|
|
593
594
|
this.enterOuterAlt(localContext, 3);
|
|
594
595
|
{
|
|
595
|
-
this.state =
|
|
596
|
+
this.state = 164;
|
|
596
597
|
this.editStatement();
|
|
597
598
|
}
|
|
598
599
|
break;
|
|
599
600
|
case plurnkParser.OPEN_COPY:
|
|
600
601
|
this.enterOuterAlt(localContext, 4);
|
|
601
602
|
{
|
|
602
|
-
this.state =
|
|
603
|
+
this.state = 165;
|
|
603
604
|
this.copyStatement();
|
|
604
605
|
}
|
|
605
606
|
break;
|
|
606
607
|
case plurnkParser.OPEN_MOVE:
|
|
607
608
|
this.enterOuterAlt(localContext, 5);
|
|
608
609
|
{
|
|
609
|
-
this.state =
|
|
610
|
+
this.state = 166;
|
|
610
611
|
this.moveStatement();
|
|
611
612
|
}
|
|
612
613
|
break;
|
|
613
614
|
case plurnkParser.OPEN_OPEN:
|
|
614
615
|
this.enterOuterAlt(localContext, 6);
|
|
615
616
|
{
|
|
616
|
-
this.state =
|
|
617
|
+
this.state = 167;
|
|
617
618
|
this.openStatement();
|
|
618
619
|
}
|
|
619
620
|
break;
|
|
620
621
|
case plurnkParser.OPEN_FOLD:
|
|
621
622
|
this.enterOuterAlt(localContext, 7);
|
|
622
623
|
{
|
|
623
|
-
this.state =
|
|
624
|
+
this.state = 168;
|
|
624
625
|
this.foldStatement();
|
|
625
626
|
}
|
|
626
627
|
break;
|
|
627
628
|
case plurnkParser.OPEN_SEND:
|
|
628
629
|
this.enterOuterAlt(localContext, 8);
|
|
629
630
|
{
|
|
630
|
-
this.state =
|
|
631
|
+
this.state = 169;
|
|
631
632
|
this.midSend();
|
|
632
633
|
}
|
|
633
634
|
break;
|
|
634
635
|
case plurnkParser.OPEN_EXEC:
|
|
635
636
|
this.enterOuterAlt(localContext, 9);
|
|
636
637
|
{
|
|
637
|
-
this.state =
|
|
638
|
+
this.state = 170;
|
|
638
639
|
this.execStatement();
|
|
639
640
|
}
|
|
640
641
|
break;
|
|
641
642
|
case plurnkParser.OPEN_BARE:
|
|
642
643
|
this.enterOuterAlt(localContext, 10);
|
|
643
644
|
{
|
|
644
|
-
this.state =
|
|
645
|
+
this.state = 171;
|
|
645
646
|
this.bareStatement();
|
|
646
647
|
}
|
|
647
648
|
break;
|
|
648
649
|
case plurnkParser.OPEN_WORK:
|
|
649
650
|
this.enterOuterAlt(localContext, 11);
|
|
650
651
|
{
|
|
651
|
-
this.state =
|
|
652
|
+
this.state = 172;
|
|
652
653
|
this.workStatement();
|
|
653
654
|
}
|
|
654
655
|
break;
|
|
655
656
|
case plurnkParser.OPEN_FORK:
|
|
656
657
|
this.enterOuterAlt(localContext, 12);
|
|
657
658
|
{
|
|
658
|
-
this.state =
|
|
659
|
+
this.state = 173;
|
|
659
660
|
this.forkStatement();
|
|
660
661
|
}
|
|
661
662
|
break;
|
|
662
663
|
case plurnkParser.OPEN_KILL:
|
|
663
664
|
this.enterOuterAlt(localContext, 13);
|
|
664
665
|
{
|
|
665
|
-
this.state =
|
|
666
|
+
this.state = 174;
|
|
666
667
|
this.killStatement();
|
|
667
668
|
}
|
|
668
669
|
break;
|
|
@@ -691,27 +692,27 @@ export class plurnkParser extends antlr.Parser {
|
|
|
691
692
|
try {
|
|
692
693
|
this.enterOuterAlt(localContext, 1);
|
|
693
694
|
{
|
|
694
|
-
this.state = 175;
|
|
695
|
-
this.match(plurnkParser.OPEN_FIND);
|
|
696
695
|
this.state = 177;
|
|
696
|
+
this.match(plurnkParser.OPEN_FIND);
|
|
697
|
+
this.state = 179;
|
|
697
698
|
this.errorHandler.sync(this);
|
|
698
699
|
_la = this.tokenStream.LA(1);
|
|
699
700
|
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 42) !== 0)) {
|
|
700
701
|
{
|
|
701
|
-
this.state =
|
|
702
|
+
this.state = 178;
|
|
702
703
|
this.tagOpModifiers();
|
|
703
704
|
}
|
|
704
705
|
}
|
|
705
|
-
this.state =
|
|
706
|
+
this.state = 182;
|
|
706
707
|
this.errorHandler.sync(this);
|
|
707
708
|
_la = this.tokenStream.LA(1);
|
|
708
709
|
if (_la === 17) {
|
|
709
710
|
{
|
|
710
|
-
this.state =
|
|
711
|
+
this.state = 181;
|
|
711
712
|
this.opAnnotation();
|
|
712
713
|
}
|
|
713
714
|
}
|
|
714
|
-
this.state =
|
|
715
|
+
this.state = 184;
|
|
715
716
|
this.statementEnd();
|
|
716
717
|
}
|
|
717
718
|
}
|
|
@@ -736,27 +737,27 @@ export class plurnkParser extends antlr.Parser {
|
|
|
736
737
|
try {
|
|
737
738
|
this.enterOuterAlt(localContext, 1);
|
|
738
739
|
{
|
|
739
|
-
this.state = 184;
|
|
740
|
-
this.match(plurnkParser.OPEN_READ);
|
|
741
740
|
this.state = 186;
|
|
741
|
+
this.match(plurnkParser.OPEN_READ);
|
|
742
|
+
this.state = 188;
|
|
742
743
|
this.errorHandler.sync(this);
|
|
743
744
|
_la = this.tokenStream.LA(1);
|
|
744
745
|
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 42) !== 0)) {
|
|
745
746
|
{
|
|
746
|
-
this.state =
|
|
747
|
+
this.state = 187;
|
|
747
748
|
this.tagOpModifiers();
|
|
748
749
|
}
|
|
749
750
|
}
|
|
750
|
-
this.state =
|
|
751
|
+
this.state = 191;
|
|
751
752
|
this.errorHandler.sync(this);
|
|
752
753
|
_la = this.tokenStream.LA(1);
|
|
753
754
|
if (_la === 17) {
|
|
754
755
|
{
|
|
755
|
-
this.state =
|
|
756
|
+
this.state = 190;
|
|
756
757
|
this.opAnnotation();
|
|
757
758
|
}
|
|
758
759
|
}
|
|
759
|
-
this.state =
|
|
760
|
+
this.state = 193;
|
|
760
761
|
this.statementEnd();
|
|
761
762
|
}
|
|
762
763
|
}
|
|
@@ -781,27 +782,27 @@ export class plurnkParser extends antlr.Parser {
|
|
|
781
782
|
try {
|
|
782
783
|
this.enterOuterAlt(localContext, 1);
|
|
783
784
|
{
|
|
784
|
-
this.state = 193;
|
|
785
|
-
this.match(plurnkParser.OPEN_EDIT);
|
|
786
785
|
this.state = 195;
|
|
786
|
+
this.match(plurnkParser.OPEN_EDIT);
|
|
787
|
+
this.state = 197;
|
|
787
788
|
this.errorHandler.sync(this);
|
|
788
789
|
_la = this.tokenStream.LA(1);
|
|
789
790
|
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 42) !== 0)) {
|
|
790
791
|
{
|
|
791
|
-
this.state =
|
|
792
|
+
this.state = 196;
|
|
792
793
|
this.tagOpModifiers();
|
|
793
794
|
}
|
|
794
795
|
}
|
|
795
|
-
this.state =
|
|
796
|
+
this.state = 200;
|
|
796
797
|
this.errorHandler.sync(this);
|
|
797
798
|
_la = this.tokenStream.LA(1);
|
|
798
799
|
if (_la === 17) {
|
|
799
800
|
{
|
|
800
|
-
this.state =
|
|
801
|
+
this.state = 199;
|
|
801
802
|
this.opAnnotation();
|
|
802
803
|
}
|
|
803
804
|
}
|
|
804
|
-
this.state =
|
|
805
|
+
this.state = 202;
|
|
805
806
|
this.statementEnd();
|
|
806
807
|
}
|
|
807
808
|
}
|
|
@@ -826,27 +827,27 @@ export class plurnkParser extends antlr.Parser {
|
|
|
826
827
|
try {
|
|
827
828
|
this.enterOuterAlt(localContext, 1);
|
|
828
829
|
{
|
|
829
|
-
this.state = 202;
|
|
830
|
-
this.match(plurnkParser.OPEN_COPY);
|
|
831
830
|
this.state = 204;
|
|
831
|
+
this.match(plurnkParser.OPEN_COPY);
|
|
832
|
+
this.state = 206;
|
|
832
833
|
this.errorHandler.sync(this);
|
|
833
834
|
_la = this.tokenStream.LA(1);
|
|
834
835
|
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 42) !== 0)) {
|
|
835
836
|
{
|
|
836
|
-
this.state =
|
|
837
|
+
this.state = 205;
|
|
837
838
|
this.tagOpModifiers();
|
|
838
839
|
}
|
|
839
840
|
}
|
|
840
|
-
this.state =
|
|
841
|
+
this.state = 209;
|
|
841
842
|
this.errorHandler.sync(this);
|
|
842
843
|
_la = this.tokenStream.LA(1);
|
|
843
844
|
if (_la === 17) {
|
|
844
845
|
{
|
|
845
|
-
this.state =
|
|
846
|
+
this.state = 208;
|
|
846
847
|
this.opAnnotation();
|
|
847
848
|
}
|
|
848
849
|
}
|
|
849
|
-
this.state =
|
|
850
|
+
this.state = 211;
|
|
850
851
|
this.statementEnd();
|
|
851
852
|
}
|
|
852
853
|
}
|
|
@@ -871,27 +872,27 @@ export class plurnkParser extends antlr.Parser {
|
|
|
871
872
|
try {
|
|
872
873
|
this.enterOuterAlt(localContext, 1);
|
|
873
874
|
{
|
|
874
|
-
this.state = 211;
|
|
875
|
-
this.match(plurnkParser.OPEN_MOVE);
|
|
876
875
|
this.state = 213;
|
|
876
|
+
this.match(plurnkParser.OPEN_MOVE);
|
|
877
|
+
this.state = 215;
|
|
877
878
|
this.errorHandler.sync(this);
|
|
878
879
|
_la = this.tokenStream.LA(1);
|
|
879
880
|
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 42) !== 0)) {
|
|
880
881
|
{
|
|
881
|
-
this.state =
|
|
882
|
+
this.state = 214;
|
|
882
883
|
this.tagOpModifiers();
|
|
883
884
|
}
|
|
884
885
|
}
|
|
885
|
-
this.state =
|
|
886
|
+
this.state = 218;
|
|
886
887
|
this.errorHandler.sync(this);
|
|
887
888
|
_la = this.tokenStream.LA(1);
|
|
888
889
|
if (_la === 17) {
|
|
889
890
|
{
|
|
890
|
-
this.state =
|
|
891
|
+
this.state = 217;
|
|
891
892
|
this.opAnnotation();
|
|
892
893
|
}
|
|
893
894
|
}
|
|
894
|
-
this.state =
|
|
895
|
+
this.state = 220;
|
|
895
896
|
this.statementEnd();
|
|
896
897
|
}
|
|
897
898
|
}
|
|
@@ -916,27 +917,27 @@ export class plurnkParser extends antlr.Parser {
|
|
|
916
917
|
try {
|
|
917
918
|
this.enterOuterAlt(localContext, 1);
|
|
918
919
|
{
|
|
919
|
-
this.state = 220;
|
|
920
|
-
this.match(plurnkParser.OPEN_OPEN);
|
|
921
920
|
this.state = 222;
|
|
921
|
+
this.match(plurnkParser.OPEN_OPEN);
|
|
922
|
+
this.state = 224;
|
|
922
923
|
this.errorHandler.sync(this);
|
|
923
924
|
_la = this.tokenStream.LA(1);
|
|
924
925
|
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 42) !== 0)) {
|
|
925
926
|
{
|
|
926
|
-
this.state =
|
|
927
|
+
this.state = 223;
|
|
927
928
|
this.tagOpModifiers();
|
|
928
929
|
}
|
|
929
930
|
}
|
|
930
|
-
this.state =
|
|
931
|
+
this.state = 227;
|
|
931
932
|
this.errorHandler.sync(this);
|
|
932
933
|
_la = this.tokenStream.LA(1);
|
|
933
934
|
if (_la === 17) {
|
|
934
935
|
{
|
|
935
|
-
this.state =
|
|
936
|
+
this.state = 226;
|
|
936
937
|
this.opAnnotation();
|
|
937
938
|
}
|
|
938
939
|
}
|
|
939
|
-
this.state =
|
|
940
|
+
this.state = 229;
|
|
940
941
|
this.statementEnd();
|
|
941
942
|
}
|
|
942
943
|
}
|
|
@@ -961,27 +962,27 @@ export class plurnkParser extends antlr.Parser {
|
|
|
961
962
|
try {
|
|
962
963
|
this.enterOuterAlt(localContext, 1);
|
|
963
964
|
{
|
|
964
|
-
this.state = 229;
|
|
965
|
-
this.match(plurnkParser.OPEN_FOLD);
|
|
966
965
|
this.state = 231;
|
|
966
|
+
this.match(plurnkParser.OPEN_FOLD);
|
|
967
|
+
this.state = 233;
|
|
967
968
|
this.errorHandler.sync(this);
|
|
968
969
|
_la = this.tokenStream.LA(1);
|
|
969
970
|
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 42) !== 0)) {
|
|
970
971
|
{
|
|
971
|
-
this.state =
|
|
972
|
+
this.state = 232;
|
|
972
973
|
this.tagOpModifiers();
|
|
973
974
|
}
|
|
974
975
|
}
|
|
975
|
-
this.state =
|
|
976
|
+
this.state = 236;
|
|
976
977
|
this.errorHandler.sync(this);
|
|
977
978
|
_la = this.tokenStream.LA(1);
|
|
978
979
|
if (_la === 17) {
|
|
979
980
|
{
|
|
980
|
-
this.state =
|
|
981
|
+
this.state = 235;
|
|
981
982
|
this.opAnnotation();
|
|
982
983
|
}
|
|
983
984
|
}
|
|
984
|
-
this.state =
|
|
985
|
+
this.state = 238;
|
|
985
986
|
this.statementEnd();
|
|
986
987
|
}
|
|
987
988
|
}
|
|
@@ -1006,20 +1007,20 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1006
1007
|
try {
|
|
1007
1008
|
this.enterOuterAlt(localContext, 1);
|
|
1008
1009
|
{
|
|
1009
|
-
this.state =
|
|
1010
|
+
this.state = 240;
|
|
1010
1011
|
this.match(plurnkParser.OPEN_SEND);
|
|
1011
|
-
this.state = 239;
|
|
1012
|
-
this.termModifiers();
|
|
1013
1012
|
this.state = 241;
|
|
1013
|
+
this.termModifiers();
|
|
1014
|
+
this.state = 243;
|
|
1014
1015
|
this.errorHandler.sync(this);
|
|
1015
1016
|
_la = this.tokenStream.LA(1);
|
|
1016
1017
|
if (_la === 17) {
|
|
1017
1018
|
{
|
|
1018
|
-
this.state =
|
|
1019
|
+
this.state = 242;
|
|
1019
1020
|
this.opAnnotation();
|
|
1020
1021
|
}
|
|
1021
1022
|
}
|
|
1022
|
-
this.state =
|
|
1023
|
+
this.state = 245;
|
|
1023
1024
|
this.statementEnd();
|
|
1024
1025
|
}
|
|
1025
1026
|
}
|
|
@@ -1044,27 +1045,27 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1044
1045
|
try {
|
|
1045
1046
|
this.enterOuterAlt(localContext, 1);
|
|
1046
1047
|
{
|
|
1047
|
-
this.state = 245;
|
|
1048
|
-
this.match(plurnkParser.OPEN_SEND);
|
|
1049
1048
|
this.state = 247;
|
|
1049
|
+
this.match(plurnkParser.OPEN_SEND);
|
|
1050
|
+
this.state = 249;
|
|
1050
1051
|
this.errorHandler.sync(this);
|
|
1051
1052
|
_la = this.tokenStream.LA(1);
|
|
1052
1053
|
if (_la === 1 || _la === 3) {
|
|
1053
1054
|
{
|
|
1054
|
-
this.state =
|
|
1055
|
+
this.state = 248;
|
|
1055
1056
|
this.midModifiers();
|
|
1056
1057
|
}
|
|
1057
1058
|
}
|
|
1058
|
-
this.state =
|
|
1059
|
+
this.state = 252;
|
|
1059
1060
|
this.errorHandler.sync(this);
|
|
1060
1061
|
_la = this.tokenStream.LA(1);
|
|
1061
1062
|
if (_la === 17) {
|
|
1062
1063
|
{
|
|
1063
|
-
this.state =
|
|
1064
|
+
this.state = 251;
|
|
1064
1065
|
this.opAnnotation();
|
|
1065
1066
|
}
|
|
1066
1067
|
}
|
|
1067
|
-
this.state =
|
|
1068
|
+
this.state = 254;
|
|
1068
1069
|
this.statementEnd();
|
|
1069
1070
|
}
|
|
1070
1071
|
}
|
|
@@ -1089,27 +1090,27 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1089
1090
|
try {
|
|
1090
1091
|
this.enterOuterAlt(localContext, 1);
|
|
1091
1092
|
{
|
|
1092
|
-
this.state = 254;
|
|
1093
|
-
this.match(plurnkParser.OPEN_EXEC);
|
|
1094
1093
|
this.state = 256;
|
|
1094
|
+
this.match(plurnkParser.OPEN_EXEC);
|
|
1095
|
+
this.state = 258;
|
|
1095
1096
|
this.errorHandler.sync(this);
|
|
1096
1097
|
_la = this.tokenStream.LA(1);
|
|
1097
1098
|
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 42) !== 0)) {
|
|
1098
1099
|
{
|
|
1099
|
-
this.state =
|
|
1100
|
+
this.state = 257;
|
|
1100
1101
|
this.execModifiers();
|
|
1101
1102
|
}
|
|
1102
1103
|
}
|
|
1103
|
-
this.state =
|
|
1104
|
+
this.state = 261;
|
|
1104
1105
|
this.errorHandler.sync(this);
|
|
1105
1106
|
_la = this.tokenStream.LA(1);
|
|
1106
1107
|
if (_la === 17) {
|
|
1107
1108
|
{
|
|
1108
|
-
this.state =
|
|
1109
|
+
this.state = 260;
|
|
1109
1110
|
this.opAnnotation();
|
|
1110
1111
|
}
|
|
1111
1112
|
}
|
|
1112
|
-
this.state =
|
|
1113
|
+
this.state = 263;
|
|
1113
1114
|
this.statementEnd();
|
|
1114
1115
|
}
|
|
1115
1116
|
}
|
|
@@ -1134,27 +1135,27 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1134
1135
|
try {
|
|
1135
1136
|
this.enterOuterAlt(localContext, 1);
|
|
1136
1137
|
{
|
|
1137
|
-
this.state = 263;
|
|
1138
|
-
this.match(plurnkParser.OPEN_BARE);
|
|
1139
1138
|
this.state = 265;
|
|
1139
|
+
this.match(plurnkParser.OPEN_BARE);
|
|
1140
|
+
this.state = 267;
|
|
1140
1141
|
this.errorHandler.sync(this);
|
|
1141
1142
|
_la = this.tokenStream.LA(1);
|
|
1142
1143
|
if (_la === 1) {
|
|
1143
1144
|
{
|
|
1144
|
-
this.state =
|
|
1145
|
+
this.state = 266;
|
|
1145
1146
|
this.tagSignal();
|
|
1146
1147
|
}
|
|
1147
1148
|
}
|
|
1148
|
-
this.state =
|
|
1149
|
+
this.state = 270;
|
|
1149
1150
|
this.errorHandler.sync(this);
|
|
1150
1151
|
_la = this.tokenStream.LA(1);
|
|
1151
1152
|
if (_la === 17) {
|
|
1152
1153
|
{
|
|
1153
|
-
this.state =
|
|
1154
|
+
this.state = 269;
|
|
1154
1155
|
this.opAnnotation();
|
|
1155
1156
|
}
|
|
1156
1157
|
}
|
|
1157
|
-
this.state =
|
|
1158
|
+
this.state = 272;
|
|
1158
1159
|
this.statementEnd();
|
|
1159
1160
|
}
|
|
1160
1161
|
}
|
|
@@ -1179,27 +1180,27 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1179
1180
|
try {
|
|
1180
1181
|
this.enterOuterAlt(localContext, 1);
|
|
1181
1182
|
{
|
|
1182
|
-
this.state = 272;
|
|
1183
|
-
this.match(plurnkParser.OPEN_WORK);
|
|
1184
1183
|
this.state = 274;
|
|
1184
|
+
this.match(plurnkParser.OPEN_WORK);
|
|
1185
|
+
this.state = 276;
|
|
1185
1186
|
this.errorHandler.sync(this);
|
|
1186
1187
|
_la = this.tokenStream.LA(1);
|
|
1187
1188
|
if (_la === 1 || _la === 3) {
|
|
1188
1189
|
{
|
|
1189
|
-
this.state =
|
|
1190
|
+
this.state = 275;
|
|
1190
1191
|
this.branchModifiers();
|
|
1191
1192
|
}
|
|
1192
1193
|
}
|
|
1193
|
-
this.state =
|
|
1194
|
+
this.state = 279;
|
|
1194
1195
|
this.errorHandler.sync(this);
|
|
1195
1196
|
_la = this.tokenStream.LA(1);
|
|
1196
1197
|
if (_la === 17) {
|
|
1197
1198
|
{
|
|
1198
|
-
this.state =
|
|
1199
|
+
this.state = 278;
|
|
1199
1200
|
this.opAnnotation();
|
|
1200
1201
|
}
|
|
1201
1202
|
}
|
|
1202
|
-
this.state =
|
|
1203
|
+
this.state = 281;
|
|
1203
1204
|
this.statementEnd();
|
|
1204
1205
|
}
|
|
1205
1206
|
}
|
|
@@ -1224,27 +1225,27 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1224
1225
|
try {
|
|
1225
1226
|
this.enterOuterAlt(localContext, 1);
|
|
1226
1227
|
{
|
|
1227
|
-
this.state = 281;
|
|
1228
|
-
this.match(plurnkParser.OPEN_FORK);
|
|
1229
1228
|
this.state = 283;
|
|
1229
|
+
this.match(plurnkParser.OPEN_FORK);
|
|
1230
|
+
this.state = 285;
|
|
1230
1231
|
this.errorHandler.sync(this);
|
|
1231
1232
|
_la = this.tokenStream.LA(1);
|
|
1232
1233
|
if (_la === 1 || _la === 3) {
|
|
1233
1234
|
{
|
|
1234
|
-
this.state =
|
|
1235
|
+
this.state = 284;
|
|
1235
1236
|
this.branchModifiers();
|
|
1236
1237
|
}
|
|
1237
1238
|
}
|
|
1238
|
-
this.state =
|
|
1239
|
+
this.state = 288;
|
|
1239
1240
|
this.errorHandler.sync(this);
|
|
1240
1241
|
_la = this.tokenStream.LA(1);
|
|
1241
1242
|
if (_la === 17) {
|
|
1242
1243
|
{
|
|
1243
|
-
this.state =
|
|
1244
|
+
this.state = 287;
|
|
1244
1245
|
this.opAnnotation();
|
|
1245
1246
|
}
|
|
1246
1247
|
}
|
|
1247
|
-
this.state =
|
|
1248
|
+
this.state = 290;
|
|
1248
1249
|
this.statementEnd();
|
|
1249
1250
|
}
|
|
1250
1251
|
}
|
|
@@ -1269,27 +1270,27 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1269
1270
|
try {
|
|
1270
1271
|
this.enterOuterAlt(localContext, 1);
|
|
1271
1272
|
{
|
|
1272
|
-
this.state = 290;
|
|
1273
|
-
this.match(plurnkParser.OPEN_KILL);
|
|
1274
1273
|
this.state = 292;
|
|
1274
|
+
this.match(plurnkParser.OPEN_KILL);
|
|
1275
|
+
this.state = 294;
|
|
1275
1276
|
this.errorHandler.sync(this);
|
|
1276
1277
|
_la = this.tokenStream.LA(1);
|
|
1277
1278
|
if (_la === 1 || _la === 3) {
|
|
1278
1279
|
{
|
|
1279
|
-
this.state =
|
|
1280
|
+
this.state = 293;
|
|
1280
1281
|
this.intOpModifiers();
|
|
1281
1282
|
}
|
|
1282
1283
|
}
|
|
1283
|
-
this.state =
|
|
1284
|
+
this.state = 297;
|
|
1284
1285
|
this.errorHandler.sync(this);
|
|
1285
1286
|
_la = this.tokenStream.LA(1);
|
|
1286
1287
|
if (_la === 17) {
|
|
1287
1288
|
{
|
|
1288
|
-
this.state =
|
|
1289
|
+
this.state = 296;
|
|
1289
1290
|
this.opAnnotation();
|
|
1290
1291
|
}
|
|
1291
1292
|
}
|
|
1292
|
-
this.state =
|
|
1293
|
+
this.state = 299;
|
|
1293
1294
|
this.statementEnd();
|
|
1294
1295
|
}
|
|
1295
1296
|
}
|
|
@@ -1314,27 +1315,27 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1314
1315
|
try {
|
|
1315
1316
|
this.enterOuterAlt(localContext, 1);
|
|
1316
1317
|
{
|
|
1317
|
-
this.state = 299;
|
|
1318
|
-
this.match(plurnkParser.OPEN_PLAN);
|
|
1319
1318
|
this.state = 301;
|
|
1319
|
+
this.match(plurnkParser.OPEN_PLAN);
|
|
1320
|
+
this.state = 303;
|
|
1320
1321
|
this.errorHandler.sync(this);
|
|
1321
1322
|
_la = this.tokenStream.LA(1);
|
|
1322
1323
|
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 42) !== 0)) {
|
|
1323
1324
|
{
|
|
1324
|
-
this.state =
|
|
1325
|
+
this.state = 302;
|
|
1325
1326
|
this.tagOpModifiers();
|
|
1326
1327
|
}
|
|
1327
1328
|
}
|
|
1328
|
-
this.state =
|
|
1329
|
+
this.state = 306;
|
|
1329
1330
|
this.errorHandler.sync(this);
|
|
1330
1331
|
_la = this.tokenStream.LA(1);
|
|
1331
1332
|
if (_la === 17) {
|
|
1332
1333
|
{
|
|
1333
|
-
this.state =
|
|
1334
|
+
this.state = 305;
|
|
1334
1335
|
this.opAnnotation();
|
|
1335
1336
|
}
|
|
1336
1337
|
}
|
|
1337
|
-
this.state =
|
|
1338
|
+
this.state = 308;
|
|
1338
1339
|
this.statementEnd();
|
|
1339
1340
|
}
|
|
1340
1341
|
}
|
|
@@ -1359,27 +1360,27 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1359
1360
|
try {
|
|
1360
1361
|
this.enterOuterAlt(localContext, 1);
|
|
1361
1362
|
{
|
|
1362
|
-
this.state = 308;
|
|
1363
|
-
this.match(plurnkParser.OPEN_LOOK);
|
|
1364
1363
|
this.state = 310;
|
|
1364
|
+
this.match(plurnkParser.OPEN_LOOK);
|
|
1365
|
+
this.state = 312;
|
|
1365
1366
|
this.errorHandler.sync(this);
|
|
1366
1367
|
_la = this.tokenStream.LA(1);
|
|
1367
1368
|
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 42) !== 0)) {
|
|
1368
1369
|
{
|
|
1369
|
-
this.state =
|
|
1370
|
+
this.state = 311;
|
|
1370
1371
|
this.tagOpModifiers();
|
|
1371
1372
|
}
|
|
1372
1373
|
}
|
|
1373
|
-
this.state =
|
|
1374
|
+
this.state = 315;
|
|
1374
1375
|
this.errorHandler.sync(this);
|
|
1375
1376
|
_la = this.tokenStream.LA(1);
|
|
1376
1377
|
if (_la === 17) {
|
|
1377
1378
|
{
|
|
1378
|
-
this.state =
|
|
1379
|
+
this.state = 314;
|
|
1379
1380
|
this.opAnnotation();
|
|
1380
1381
|
}
|
|
1381
1382
|
}
|
|
1382
|
-
this.state =
|
|
1383
|
+
this.state = 317;
|
|
1383
1384
|
this.statementEnd();
|
|
1384
1385
|
}
|
|
1385
1386
|
}
|
|
@@ -1404,27 +1405,27 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1404
1405
|
try {
|
|
1405
1406
|
this.enterOuterAlt(localContext, 1);
|
|
1406
1407
|
{
|
|
1407
|
-
this.state = 317;
|
|
1408
|
-
this.match(plurnkParser.OPEN_BUFF);
|
|
1409
1408
|
this.state = 319;
|
|
1409
|
+
this.match(plurnkParser.OPEN_BUFF);
|
|
1410
|
+
this.state = 321;
|
|
1410
1411
|
this.errorHandler.sync(this);
|
|
1411
1412
|
_la = this.tokenStream.LA(1);
|
|
1412
1413
|
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 42) !== 0)) {
|
|
1413
1414
|
{
|
|
1414
|
-
this.state =
|
|
1415
|
+
this.state = 320;
|
|
1415
1416
|
this.tagOpModifiers();
|
|
1416
1417
|
}
|
|
1417
1418
|
}
|
|
1418
|
-
this.state =
|
|
1419
|
+
this.state = 324;
|
|
1419
1420
|
this.errorHandler.sync(this);
|
|
1420
1421
|
_la = this.tokenStream.LA(1);
|
|
1421
1422
|
if (_la === 17) {
|
|
1422
1423
|
{
|
|
1423
|
-
this.state =
|
|
1424
|
+
this.state = 323;
|
|
1424
1425
|
this.opAnnotation();
|
|
1425
1426
|
}
|
|
1426
1427
|
}
|
|
1427
|
-
this.state =
|
|
1428
|
+
this.state = 326;
|
|
1428
1429
|
this.statementEnd();
|
|
1429
1430
|
}
|
|
1430
1431
|
}
|
|
@@ -1448,7 +1449,7 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1448
1449
|
try {
|
|
1449
1450
|
this.enterOuterAlt(localContext, 1);
|
|
1450
1451
|
{
|
|
1451
|
-
this.state =
|
|
1452
|
+
this.state = 328;
|
|
1452
1453
|
this.match(plurnkParser.ANNOTATION);
|
|
1453
1454
|
}
|
|
1454
1455
|
}
|
|
@@ -1471,36 +1472,52 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1471
1472
|
this.enterRule(localContext, 54, plurnkParser.RULE_statementEnd);
|
|
1472
1473
|
let _la;
|
|
1473
1474
|
try {
|
|
1474
|
-
this.state =
|
|
1475
|
+
this.state = 343;
|
|
1475
1476
|
this.errorHandler.sync(this);
|
|
1476
1477
|
switch (this.tokenStream.LA(1)) {
|
|
1477
1478
|
case plurnkParser.SECTION_END:
|
|
1478
1479
|
this.enterOuterAlt(localContext, 1);
|
|
1479
1480
|
{
|
|
1480
|
-
this.state =
|
|
1481
|
+
this.state = 330;
|
|
1481
1482
|
this.match(plurnkParser.SECTION_END);
|
|
1482
1483
|
}
|
|
1483
1484
|
break;
|
|
1484
1485
|
case plurnkParser.BODY_OPEN:
|
|
1485
1486
|
this.enterOuterAlt(localContext, 2);
|
|
1486
1487
|
{
|
|
1487
|
-
this.state = 329;
|
|
1488
|
-
this.match(plurnkParser.BODY_OPEN);
|
|
1489
1488
|
this.state = 331;
|
|
1489
|
+
this.match(plurnkParser.BODY_OPEN);
|
|
1490
|
+
this.state = 333;
|
|
1490
1491
|
this.errorHandler.sync(this);
|
|
1491
1492
|
_la = this.tokenStream.LA(1);
|
|
1492
1493
|
if (_la === 15) {
|
|
1493
1494
|
{
|
|
1494
|
-
this.state =
|
|
1495
|
+
this.state = 332;
|
|
1495
1496
|
this.body();
|
|
1496
1497
|
}
|
|
1497
1498
|
}
|
|
1498
|
-
this.state =
|
|
1499
|
+
this.state = 336;
|
|
1500
|
+
this.errorHandler.sync(this);
|
|
1501
|
+
_la = this.tokenStream.LA(1);
|
|
1502
|
+
if (_la === 8) {
|
|
1503
|
+
{
|
|
1504
|
+
this.state = 335;
|
|
1505
|
+
this.match(plurnkParser.SECTION_END);
|
|
1506
|
+
}
|
|
1507
|
+
}
|
|
1508
|
+
}
|
|
1509
|
+
break;
|
|
1510
|
+
case plurnkParser.BODY_TEXT:
|
|
1511
|
+
this.enterOuterAlt(localContext, 3);
|
|
1512
|
+
{
|
|
1513
|
+
this.state = 338;
|
|
1514
|
+
this.body();
|
|
1515
|
+
this.state = 340;
|
|
1499
1516
|
this.errorHandler.sync(this);
|
|
1500
1517
|
_la = this.tokenStream.LA(1);
|
|
1501
1518
|
if (_la === 8) {
|
|
1502
1519
|
{
|
|
1503
|
-
this.state =
|
|
1520
|
+
this.state = 339;
|
|
1504
1521
|
this.match(plurnkParser.SECTION_END);
|
|
1505
1522
|
}
|
|
1506
1523
|
}
|
|
@@ -1525,7 +1542,7 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1525
1542
|
case plurnkParser.OPEN_LOOK:
|
|
1526
1543
|
case plurnkParser.OPEN_BUFF:
|
|
1527
1544
|
case plurnkParser.FENCE_CLOSE:
|
|
1528
|
-
this.enterOuterAlt(localContext,
|
|
1545
|
+
this.enterOuterAlt(localContext, 4);
|
|
1529
1546
|
// tslint:disable-next-line:no-empty
|
|
1530
1547
|
{
|
|
1531
1548
|
}
|
|
@@ -1553,27 +1570,27 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1553
1570
|
this.enterRule(localContext, 56, plurnkParser.RULE_tagOpModifiers);
|
|
1554
1571
|
let _la;
|
|
1555
1572
|
try {
|
|
1556
|
-
this.state =
|
|
1573
|
+
this.state = 378;
|
|
1557
1574
|
this.errorHandler.sync(this);
|
|
1558
1575
|
switch (this.tokenStream.LA(1)) {
|
|
1559
1576
|
case plurnkParser.LBRACKET:
|
|
1560
1577
|
this.enterOuterAlt(localContext, 1);
|
|
1561
1578
|
{
|
|
1562
|
-
this.state =
|
|
1579
|
+
this.state = 345;
|
|
1563
1580
|
this.tagSignal();
|
|
1564
|
-
this.state =
|
|
1581
|
+
this.state = 354;
|
|
1565
1582
|
this.errorHandler.sync(this);
|
|
1566
1583
|
switch (this.tokenStream.LA(1)) {
|
|
1567
1584
|
case plurnkParser.LPAREN:
|
|
1568
1585
|
{
|
|
1569
|
-
this.state =
|
|
1586
|
+
this.state = 346;
|
|
1570
1587
|
this.target();
|
|
1571
|
-
this.state =
|
|
1588
|
+
this.state = 348;
|
|
1572
1589
|
this.errorHandler.sync(this);
|
|
1573
1590
|
_la = this.tokenStream.LA(1);
|
|
1574
1591
|
if (_la === 5) {
|
|
1575
1592
|
{
|
|
1576
|
-
this.state =
|
|
1593
|
+
this.state = 347;
|
|
1577
1594
|
this.lineMarker();
|
|
1578
1595
|
}
|
|
1579
1596
|
}
|
|
@@ -1581,14 +1598,14 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1581
1598
|
break;
|
|
1582
1599
|
case plurnkParser.L_MARKER:
|
|
1583
1600
|
{
|
|
1584
|
-
this.state =
|
|
1601
|
+
this.state = 350;
|
|
1585
1602
|
this.lineMarker();
|
|
1586
|
-
this.state =
|
|
1603
|
+
this.state = 352;
|
|
1587
1604
|
this.errorHandler.sync(this);
|
|
1588
1605
|
_la = this.tokenStream.LA(1);
|
|
1589
1606
|
if (_la === 3) {
|
|
1590
1607
|
{
|
|
1591
|
-
this.state =
|
|
1608
|
+
this.state = 351;
|
|
1592
1609
|
this.target();
|
|
1593
1610
|
}
|
|
1594
1611
|
}
|
|
@@ -1597,6 +1614,7 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1597
1614
|
case plurnkParser.EOF:
|
|
1598
1615
|
case plurnkParser.BODY_OPEN:
|
|
1599
1616
|
case plurnkParser.SECTION_END:
|
|
1617
|
+
case plurnkParser.BODY_TEXT:
|
|
1600
1618
|
case plurnkParser.ANNOTATION:
|
|
1601
1619
|
case plurnkParser.OPEN_PLAN:
|
|
1602
1620
|
case plurnkParser.OPEN_FIND:
|
|
@@ -1623,21 +1641,21 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1623
1641
|
case plurnkParser.LPAREN:
|
|
1624
1642
|
this.enterOuterAlt(localContext, 2);
|
|
1625
1643
|
{
|
|
1626
|
-
this.state =
|
|
1644
|
+
this.state = 356;
|
|
1627
1645
|
this.target();
|
|
1628
|
-
this.state =
|
|
1646
|
+
this.state = 365;
|
|
1629
1647
|
this.errorHandler.sync(this);
|
|
1630
1648
|
switch (this.tokenStream.LA(1)) {
|
|
1631
1649
|
case plurnkParser.LBRACKET:
|
|
1632
1650
|
{
|
|
1633
|
-
this.state =
|
|
1651
|
+
this.state = 357;
|
|
1634
1652
|
this.tagSignal();
|
|
1635
|
-
this.state =
|
|
1653
|
+
this.state = 359;
|
|
1636
1654
|
this.errorHandler.sync(this);
|
|
1637
1655
|
_la = this.tokenStream.LA(1);
|
|
1638
1656
|
if (_la === 5) {
|
|
1639
1657
|
{
|
|
1640
|
-
this.state =
|
|
1658
|
+
this.state = 358;
|
|
1641
1659
|
this.lineMarker();
|
|
1642
1660
|
}
|
|
1643
1661
|
}
|
|
@@ -1645,14 +1663,14 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1645
1663
|
break;
|
|
1646
1664
|
case plurnkParser.L_MARKER:
|
|
1647
1665
|
{
|
|
1648
|
-
this.state =
|
|
1666
|
+
this.state = 361;
|
|
1649
1667
|
this.lineMarker();
|
|
1650
|
-
this.state =
|
|
1668
|
+
this.state = 363;
|
|
1651
1669
|
this.errorHandler.sync(this);
|
|
1652
1670
|
_la = this.tokenStream.LA(1);
|
|
1653
1671
|
if (_la === 1) {
|
|
1654
1672
|
{
|
|
1655
|
-
this.state =
|
|
1673
|
+
this.state = 362;
|
|
1656
1674
|
this.tagSignal();
|
|
1657
1675
|
}
|
|
1658
1676
|
}
|
|
@@ -1661,6 +1679,7 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1661
1679
|
case plurnkParser.EOF:
|
|
1662
1680
|
case plurnkParser.BODY_OPEN:
|
|
1663
1681
|
case plurnkParser.SECTION_END:
|
|
1682
|
+
case plurnkParser.BODY_TEXT:
|
|
1664
1683
|
case plurnkParser.ANNOTATION:
|
|
1665
1684
|
case plurnkParser.OPEN_PLAN:
|
|
1666
1685
|
case plurnkParser.OPEN_FIND:
|
|
@@ -1687,21 +1706,21 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1687
1706
|
case plurnkParser.L_MARKER:
|
|
1688
1707
|
this.enterOuterAlt(localContext, 3);
|
|
1689
1708
|
{
|
|
1690
|
-
this.state =
|
|
1709
|
+
this.state = 367;
|
|
1691
1710
|
this.lineMarker();
|
|
1692
|
-
this.state =
|
|
1711
|
+
this.state = 376;
|
|
1693
1712
|
this.errorHandler.sync(this);
|
|
1694
1713
|
switch (this.tokenStream.LA(1)) {
|
|
1695
1714
|
case plurnkParser.LBRACKET:
|
|
1696
1715
|
{
|
|
1697
|
-
this.state =
|
|
1716
|
+
this.state = 368;
|
|
1698
1717
|
this.tagSignal();
|
|
1699
|
-
this.state =
|
|
1718
|
+
this.state = 370;
|
|
1700
1719
|
this.errorHandler.sync(this);
|
|
1701
1720
|
_la = this.tokenStream.LA(1);
|
|
1702
1721
|
if (_la === 3) {
|
|
1703
1722
|
{
|
|
1704
|
-
this.state =
|
|
1723
|
+
this.state = 369;
|
|
1705
1724
|
this.target();
|
|
1706
1725
|
}
|
|
1707
1726
|
}
|
|
@@ -1709,14 +1728,14 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1709
1728
|
break;
|
|
1710
1729
|
case plurnkParser.LPAREN:
|
|
1711
1730
|
{
|
|
1712
|
-
this.state =
|
|
1731
|
+
this.state = 372;
|
|
1713
1732
|
this.target();
|
|
1714
|
-
this.state =
|
|
1733
|
+
this.state = 374;
|
|
1715
1734
|
this.errorHandler.sync(this);
|
|
1716
1735
|
_la = this.tokenStream.LA(1);
|
|
1717
1736
|
if (_la === 1) {
|
|
1718
1737
|
{
|
|
1719
|
-
this.state =
|
|
1738
|
+
this.state = 373;
|
|
1720
1739
|
this.tagSignal();
|
|
1721
1740
|
}
|
|
1722
1741
|
}
|
|
@@ -1725,6 +1744,7 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1725
1744
|
case plurnkParser.EOF:
|
|
1726
1745
|
case plurnkParser.BODY_OPEN:
|
|
1727
1746
|
case plurnkParser.SECTION_END:
|
|
1747
|
+
case plurnkParser.BODY_TEXT:
|
|
1728
1748
|
case plurnkParser.ANNOTATION:
|
|
1729
1749
|
case plurnkParser.OPEN_PLAN:
|
|
1730
1750
|
case plurnkParser.OPEN_FIND:
|
|
@@ -1771,20 +1791,20 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1771
1791
|
this.enterRule(localContext, 58, plurnkParser.RULE_intOpModifiers);
|
|
1772
1792
|
let _la;
|
|
1773
1793
|
try {
|
|
1774
|
-
this.state =
|
|
1794
|
+
this.state = 388;
|
|
1775
1795
|
this.errorHandler.sync(this);
|
|
1776
1796
|
switch (this.tokenStream.LA(1)) {
|
|
1777
1797
|
case plurnkParser.LBRACKET:
|
|
1778
1798
|
this.enterOuterAlt(localContext, 1);
|
|
1779
1799
|
{
|
|
1780
|
-
this.state =
|
|
1800
|
+
this.state = 380;
|
|
1781
1801
|
this.intSignal();
|
|
1782
|
-
this.state =
|
|
1802
|
+
this.state = 382;
|
|
1783
1803
|
this.errorHandler.sync(this);
|
|
1784
1804
|
_la = this.tokenStream.LA(1);
|
|
1785
1805
|
if (_la === 3) {
|
|
1786
1806
|
{
|
|
1787
|
-
this.state =
|
|
1807
|
+
this.state = 381;
|
|
1788
1808
|
this.target();
|
|
1789
1809
|
}
|
|
1790
1810
|
}
|
|
@@ -1793,14 +1813,14 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1793
1813
|
case plurnkParser.LPAREN:
|
|
1794
1814
|
this.enterOuterAlt(localContext, 2);
|
|
1795
1815
|
{
|
|
1796
|
-
this.state =
|
|
1816
|
+
this.state = 384;
|
|
1797
1817
|
this.target();
|
|
1798
|
-
this.state =
|
|
1818
|
+
this.state = 386;
|
|
1799
1819
|
this.errorHandler.sync(this);
|
|
1800
1820
|
_la = this.tokenStream.LA(1);
|
|
1801
1821
|
if (_la === 1) {
|
|
1802
1822
|
{
|
|
1803
|
-
this.state =
|
|
1823
|
+
this.state = 385;
|
|
1804
1824
|
this.intSignal();
|
|
1805
1825
|
}
|
|
1806
1826
|
}
|
|
@@ -1829,20 +1849,20 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1829
1849
|
this.enterRule(localContext, 60, plurnkParser.RULE_branchModifiers);
|
|
1830
1850
|
let _la;
|
|
1831
1851
|
try {
|
|
1832
|
-
this.state =
|
|
1852
|
+
this.state = 398;
|
|
1833
1853
|
this.errorHandler.sync(this);
|
|
1834
1854
|
switch (this.tokenStream.LA(1)) {
|
|
1835
1855
|
case plurnkParser.LBRACKET:
|
|
1836
1856
|
this.enterOuterAlt(localContext, 1);
|
|
1837
1857
|
{
|
|
1838
|
-
this.state =
|
|
1858
|
+
this.state = 390;
|
|
1839
1859
|
this.branchSignal();
|
|
1840
|
-
this.state =
|
|
1860
|
+
this.state = 392;
|
|
1841
1861
|
this.errorHandler.sync(this);
|
|
1842
1862
|
_la = this.tokenStream.LA(1);
|
|
1843
1863
|
if (_la === 3) {
|
|
1844
1864
|
{
|
|
1845
|
-
this.state =
|
|
1865
|
+
this.state = 391;
|
|
1846
1866
|
this.target();
|
|
1847
1867
|
}
|
|
1848
1868
|
}
|
|
@@ -1851,14 +1871,14 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1851
1871
|
case plurnkParser.LPAREN:
|
|
1852
1872
|
this.enterOuterAlt(localContext, 2);
|
|
1853
1873
|
{
|
|
1854
|
-
this.state =
|
|
1874
|
+
this.state = 394;
|
|
1855
1875
|
this.target();
|
|
1856
|
-
this.state =
|
|
1876
|
+
this.state = 396;
|
|
1857
1877
|
this.errorHandler.sync(this);
|
|
1858
1878
|
_la = this.tokenStream.LA(1);
|
|
1859
1879
|
if (_la === 1) {
|
|
1860
1880
|
{
|
|
1861
|
-
this.state =
|
|
1881
|
+
this.state = 395;
|
|
1862
1882
|
this.branchSignal();
|
|
1863
1883
|
}
|
|
1864
1884
|
}
|
|
@@ -1887,29 +1907,29 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1887
1907
|
this.enterRule(localContext, 62, plurnkParser.RULE_termModifiers);
|
|
1888
1908
|
let _la;
|
|
1889
1909
|
try {
|
|
1890
|
-
this.state =
|
|
1910
|
+
this.state = 412;
|
|
1891
1911
|
this.errorHandler.sync(this);
|
|
1892
1912
|
switch (this.tokenStream.LA(1)) {
|
|
1893
1913
|
case plurnkParser.LBRACKET:
|
|
1894
1914
|
this.enterOuterAlt(localContext, 1);
|
|
1895
1915
|
{
|
|
1896
|
-
this.state =
|
|
1916
|
+
this.state = 400;
|
|
1897
1917
|
this.dispSignal();
|
|
1898
|
-
this.state =
|
|
1918
|
+
this.state = 402;
|
|
1899
1919
|
this.errorHandler.sync(this);
|
|
1900
1920
|
_la = this.tokenStream.LA(1);
|
|
1901
1921
|
if (_la === 3) {
|
|
1902
1922
|
{
|
|
1903
|
-
this.state =
|
|
1923
|
+
this.state = 401;
|
|
1904
1924
|
this.target();
|
|
1905
1925
|
}
|
|
1906
1926
|
}
|
|
1907
|
-
this.state =
|
|
1927
|
+
this.state = 405;
|
|
1908
1928
|
this.errorHandler.sync(this);
|
|
1909
1929
|
_la = this.tokenStream.LA(1);
|
|
1910
1930
|
if (_la === 5) {
|
|
1911
1931
|
{
|
|
1912
|
-
this.state =
|
|
1932
|
+
this.state = 404;
|
|
1913
1933
|
this.lineMarker();
|
|
1914
1934
|
}
|
|
1915
1935
|
}
|
|
@@ -1918,16 +1938,16 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1918
1938
|
case plurnkParser.LPAREN:
|
|
1919
1939
|
this.enterOuterAlt(localContext, 2);
|
|
1920
1940
|
{
|
|
1921
|
-
this.state =
|
|
1941
|
+
this.state = 407;
|
|
1922
1942
|
this.target();
|
|
1923
|
-
this.state =
|
|
1943
|
+
this.state = 408;
|
|
1924
1944
|
this.dispSignal();
|
|
1925
|
-
this.state =
|
|
1945
|
+
this.state = 410;
|
|
1926
1946
|
this.errorHandler.sync(this);
|
|
1927
1947
|
_la = this.tokenStream.LA(1);
|
|
1928
1948
|
if (_la === 5) {
|
|
1929
1949
|
{
|
|
1930
|
-
this.state =
|
|
1950
|
+
this.state = 409;
|
|
1931
1951
|
this.lineMarker();
|
|
1932
1952
|
}
|
|
1933
1953
|
}
|
|
@@ -1956,20 +1976,20 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1956
1976
|
this.enterRule(localContext, 64, plurnkParser.RULE_midModifiers);
|
|
1957
1977
|
let _la;
|
|
1958
1978
|
try {
|
|
1959
|
-
this.state =
|
|
1979
|
+
this.state = 422;
|
|
1960
1980
|
this.errorHandler.sync(this);
|
|
1961
1981
|
switch (this.tokenStream.LA(1)) {
|
|
1962
1982
|
case plurnkParser.LBRACKET:
|
|
1963
1983
|
this.enterOuterAlt(localContext, 1);
|
|
1964
1984
|
{
|
|
1965
|
-
this.state =
|
|
1985
|
+
this.state = 414;
|
|
1966
1986
|
this.midSignal();
|
|
1967
|
-
this.state =
|
|
1987
|
+
this.state = 416;
|
|
1968
1988
|
this.errorHandler.sync(this);
|
|
1969
1989
|
_la = this.tokenStream.LA(1);
|
|
1970
1990
|
if (_la === 3) {
|
|
1971
1991
|
{
|
|
1972
|
-
this.state =
|
|
1992
|
+
this.state = 415;
|
|
1973
1993
|
this.target();
|
|
1974
1994
|
}
|
|
1975
1995
|
}
|
|
@@ -1978,14 +1998,14 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1978
1998
|
case plurnkParser.LPAREN:
|
|
1979
1999
|
this.enterOuterAlt(localContext, 2);
|
|
1980
2000
|
{
|
|
1981
|
-
this.state =
|
|
2001
|
+
this.state = 418;
|
|
1982
2002
|
this.target();
|
|
1983
|
-
this.state =
|
|
2003
|
+
this.state = 420;
|
|
1984
2004
|
this.errorHandler.sync(this);
|
|
1985
2005
|
_la = this.tokenStream.LA(1);
|
|
1986
2006
|
if (_la === 1) {
|
|
1987
2007
|
{
|
|
1988
|
-
this.state =
|
|
2008
|
+
this.state = 419;
|
|
1989
2009
|
this.midSignal();
|
|
1990
2010
|
}
|
|
1991
2011
|
}
|
|
@@ -2014,203 +2034,73 @@ export class plurnkParser extends antlr.Parser {
|
|
|
2014
2034
|
this.enterRule(localContext, 66, plurnkParser.RULE_execModifiers);
|
|
2015
2035
|
let _la;
|
|
2016
2036
|
try {
|
|
2017
|
-
this.
|
|
2037
|
+
this.enterOuterAlt(localContext, 1);
|
|
2038
|
+
{
|
|
2039
|
+
this.state = 425;
|
|
2040
|
+
this.errorHandler.sync(this);
|
|
2041
|
+
_la = this.tokenStream.LA(1);
|
|
2042
|
+
do {
|
|
2043
|
+
{
|
|
2044
|
+
{
|
|
2045
|
+
this.state = 424;
|
|
2046
|
+
this.execSlot();
|
|
2047
|
+
}
|
|
2048
|
+
}
|
|
2049
|
+
this.state = 427;
|
|
2050
|
+
this.errorHandler.sync(this);
|
|
2051
|
+
_la = this.tokenStream.LA(1);
|
|
2052
|
+
} while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 42) !== 0));
|
|
2053
|
+
}
|
|
2054
|
+
}
|
|
2055
|
+
catch (re) {
|
|
2056
|
+
if (re instanceof antlr.RecognitionException) {
|
|
2057
|
+
this.errorHandler.reportError(this, re);
|
|
2058
|
+
this.errorHandler.recover(this, re);
|
|
2059
|
+
}
|
|
2060
|
+
else {
|
|
2061
|
+
throw re;
|
|
2062
|
+
}
|
|
2063
|
+
}
|
|
2064
|
+
finally {
|
|
2065
|
+
this.exitRule();
|
|
2066
|
+
}
|
|
2067
|
+
return localContext;
|
|
2068
|
+
}
|
|
2069
|
+
execSlot() {
|
|
2070
|
+
let localContext = new ExecSlotContext(this.context, this.state);
|
|
2071
|
+
this.enterRule(localContext, 68, plurnkParser.RULE_execSlot);
|
|
2072
|
+
try {
|
|
2073
|
+
this.state = 433;
|
|
2018
2074
|
this.errorHandler.sync(this);
|
|
2019
|
-
switch (this.tokenStream.
|
|
2020
|
-
case
|
|
2075
|
+
switch (this.interpreter.adaptivePredict(this.tokenStream, 71, this.context)) {
|
|
2076
|
+
case 1:
|
|
2021
2077
|
this.enterOuterAlt(localContext, 1);
|
|
2022
2078
|
{
|
|
2023
|
-
this.state =
|
|
2079
|
+
this.state = 429;
|
|
2024
2080
|
this.identSignal();
|
|
2025
|
-
this.state = 427;
|
|
2026
|
-
this.errorHandler.sync(this);
|
|
2027
|
-
switch (this.tokenStream.LA(1)) {
|
|
2028
|
-
case plurnkParser.LPAREN:
|
|
2029
|
-
{
|
|
2030
|
-
this.state = 419;
|
|
2031
|
-
this.target();
|
|
2032
|
-
this.state = 421;
|
|
2033
|
-
this.errorHandler.sync(this);
|
|
2034
|
-
_la = this.tokenStream.LA(1);
|
|
2035
|
-
if (_la === 5) {
|
|
2036
|
-
{
|
|
2037
|
-
this.state = 420;
|
|
2038
|
-
this.lineMarker();
|
|
2039
|
-
}
|
|
2040
|
-
}
|
|
2041
|
-
}
|
|
2042
|
-
break;
|
|
2043
|
-
case plurnkParser.L_MARKER:
|
|
2044
|
-
{
|
|
2045
|
-
this.state = 423;
|
|
2046
|
-
this.lineMarker();
|
|
2047
|
-
this.state = 425;
|
|
2048
|
-
this.errorHandler.sync(this);
|
|
2049
|
-
_la = this.tokenStream.LA(1);
|
|
2050
|
-
if (_la === 3) {
|
|
2051
|
-
{
|
|
2052
|
-
this.state = 424;
|
|
2053
|
-
this.target();
|
|
2054
|
-
}
|
|
2055
|
-
}
|
|
2056
|
-
}
|
|
2057
|
-
break;
|
|
2058
|
-
case plurnkParser.EOF:
|
|
2059
|
-
case plurnkParser.BODY_OPEN:
|
|
2060
|
-
case plurnkParser.SECTION_END:
|
|
2061
|
-
case plurnkParser.ANNOTATION:
|
|
2062
|
-
case plurnkParser.OPEN_PLAN:
|
|
2063
|
-
case plurnkParser.OPEN_FIND:
|
|
2064
|
-
case plurnkParser.OPEN_READ:
|
|
2065
|
-
case plurnkParser.OPEN_EDIT:
|
|
2066
|
-
case plurnkParser.OPEN_COPY:
|
|
2067
|
-
case plurnkParser.OPEN_MOVE:
|
|
2068
|
-
case plurnkParser.OPEN_OPEN:
|
|
2069
|
-
case plurnkParser.OPEN_FOLD:
|
|
2070
|
-
case plurnkParser.OPEN_SEND:
|
|
2071
|
-
case plurnkParser.OPEN_EXEC:
|
|
2072
|
-
case plurnkParser.OPEN_BARE:
|
|
2073
|
-
case plurnkParser.OPEN_WORK:
|
|
2074
|
-
case plurnkParser.OPEN_FORK:
|
|
2075
|
-
case plurnkParser.OPEN_KILL:
|
|
2076
|
-
case plurnkParser.OPEN_LOOK:
|
|
2077
|
-
case plurnkParser.OPEN_BUFF:
|
|
2078
|
-
break;
|
|
2079
|
-
default:
|
|
2080
|
-
break;
|
|
2081
|
-
}
|
|
2082
2081
|
}
|
|
2083
2082
|
break;
|
|
2084
|
-
case
|
|
2083
|
+
case 2:
|
|
2085
2084
|
this.enterOuterAlt(localContext, 2);
|
|
2086
2085
|
{
|
|
2087
|
-
this.state =
|
|
2088
|
-
this.
|
|
2089
|
-
this.state = 438;
|
|
2090
|
-
this.errorHandler.sync(this);
|
|
2091
|
-
switch (this.tokenStream.LA(1)) {
|
|
2092
|
-
case plurnkParser.LBRACKET:
|
|
2093
|
-
{
|
|
2094
|
-
this.state = 430;
|
|
2095
|
-
this.identSignal();
|
|
2096
|
-
this.state = 432;
|
|
2097
|
-
this.errorHandler.sync(this);
|
|
2098
|
-
_la = this.tokenStream.LA(1);
|
|
2099
|
-
if (_la === 5) {
|
|
2100
|
-
{
|
|
2101
|
-
this.state = 431;
|
|
2102
|
-
this.lineMarker();
|
|
2103
|
-
}
|
|
2104
|
-
}
|
|
2105
|
-
}
|
|
2106
|
-
break;
|
|
2107
|
-
case plurnkParser.L_MARKER:
|
|
2108
|
-
{
|
|
2109
|
-
this.state = 434;
|
|
2110
|
-
this.lineMarker();
|
|
2111
|
-
this.state = 436;
|
|
2112
|
-
this.errorHandler.sync(this);
|
|
2113
|
-
_la = this.tokenStream.LA(1);
|
|
2114
|
-
if (_la === 1) {
|
|
2115
|
-
{
|
|
2116
|
-
this.state = 435;
|
|
2117
|
-
this.identSignal();
|
|
2118
|
-
}
|
|
2119
|
-
}
|
|
2120
|
-
}
|
|
2121
|
-
break;
|
|
2122
|
-
case plurnkParser.EOF:
|
|
2123
|
-
case plurnkParser.BODY_OPEN:
|
|
2124
|
-
case plurnkParser.SECTION_END:
|
|
2125
|
-
case plurnkParser.ANNOTATION:
|
|
2126
|
-
case plurnkParser.OPEN_PLAN:
|
|
2127
|
-
case plurnkParser.OPEN_FIND:
|
|
2128
|
-
case plurnkParser.OPEN_READ:
|
|
2129
|
-
case plurnkParser.OPEN_EDIT:
|
|
2130
|
-
case plurnkParser.OPEN_COPY:
|
|
2131
|
-
case plurnkParser.OPEN_MOVE:
|
|
2132
|
-
case plurnkParser.OPEN_OPEN:
|
|
2133
|
-
case plurnkParser.OPEN_FOLD:
|
|
2134
|
-
case plurnkParser.OPEN_SEND:
|
|
2135
|
-
case plurnkParser.OPEN_EXEC:
|
|
2136
|
-
case plurnkParser.OPEN_BARE:
|
|
2137
|
-
case plurnkParser.OPEN_WORK:
|
|
2138
|
-
case plurnkParser.OPEN_FORK:
|
|
2139
|
-
case plurnkParser.OPEN_KILL:
|
|
2140
|
-
case plurnkParser.OPEN_LOOK:
|
|
2141
|
-
case plurnkParser.OPEN_BUFF:
|
|
2142
|
-
break;
|
|
2143
|
-
default:
|
|
2144
|
-
break;
|
|
2145
|
-
}
|
|
2086
|
+
this.state = 430;
|
|
2087
|
+
this.tagSignal();
|
|
2146
2088
|
}
|
|
2147
2089
|
break;
|
|
2148
|
-
case
|
|
2090
|
+
case 3:
|
|
2149
2091
|
this.enterOuterAlt(localContext, 3);
|
|
2150
2092
|
{
|
|
2151
|
-
this.state =
|
|
2093
|
+
this.state = 431;
|
|
2094
|
+
this.target();
|
|
2095
|
+
}
|
|
2096
|
+
break;
|
|
2097
|
+
case 4:
|
|
2098
|
+
this.enterOuterAlt(localContext, 4);
|
|
2099
|
+
{
|
|
2100
|
+
this.state = 432;
|
|
2152
2101
|
this.lineMarker();
|
|
2153
|
-
this.state = 449;
|
|
2154
|
-
this.errorHandler.sync(this);
|
|
2155
|
-
switch (this.tokenStream.LA(1)) {
|
|
2156
|
-
case plurnkParser.LBRACKET:
|
|
2157
|
-
{
|
|
2158
|
-
this.state = 441;
|
|
2159
|
-
this.identSignal();
|
|
2160
|
-
this.state = 443;
|
|
2161
|
-
this.errorHandler.sync(this);
|
|
2162
|
-
_la = this.tokenStream.LA(1);
|
|
2163
|
-
if (_la === 3) {
|
|
2164
|
-
{
|
|
2165
|
-
this.state = 442;
|
|
2166
|
-
this.target();
|
|
2167
|
-
}
|
|
2168
|
-
}
|
|
2169
|
-
}
|
|
2170
|
-
break;
|
|
2171
|
-
case plurnkParser.LPAREN:
|
|
2172
|
-
{
|
|
2173
|
-
this.state = 445;
|
|
2174
|
-
this.target();
|
|
2175
|
-
this.state = 447;
|
|
2176
|
-
this.errorHandler.sync(this);
|
|
2177
|
-
_la = this.tokenStream.LA(1);
|
|
2178
|
-
if (_la === 1) {
|
|
2179
|
-
{
|
|
2180
|
-
this.state = 446;
|
|
2181
|
-
this.identSignal();
|
|
2182
|
-
}
|
|
2183
|
-
}
|
|
2184
|
-
}
|
|
2185
|
-
break;
|
|
2186
|
-
case plurnkParser.EOF:
|
|
2187
|
-
case plurnkParser.BODY_OPEN:
|
|
2188
|
-
case plurnkParser.SECTION_END:
|
|
2189
|
-
case plurnkParser.ANNOTATION:
|
|
2190
|
-
case plurnkParser.OPEN_PLAN:
|
|
2191
|
-
case plurnkParser.OPEN_FIND:
|
|
2192
|
-
case plurnkParser.OPEN_READ:
|
|
2193
|
-
case plurnkParser.OPEN_EDIT:
|
|
2194
|
-
case plurnkParser.OPEN_COPY:
|
|
2195
|
-
case plurnkParser.OPEN_MOVE:
|
|
2196
|
-
case plurnkParser.OPEN_OPEN:
|
|
2197
|
-
case plurnkParser.OPEN_FOLD:
|
|
2198
|
-
case plurnkParser.OPEN_SEND:
|
|
2199
|
-
case plurnkParser.OPEN_EXEC:
|
|
2200
|
-
case plurnkParser.OPEN_BARE:
|
|
2201
|
-
case plurnkParser.OPEN_WORK:
|
|
2202
|
-
case plurnkParser.OPEN_FORK:
|
|
2203
|
-
case plurnkParser.OPEN_KILL:
|
|
2204
|
-
case plurnkParser.OPEN_LOOK:
|
|
2205
|
-
case plurnkParser.OPEN_BUFF:
|
|
2206
|
-
break;
|
|
2207
|
-
default:
|
|
2208
|
-
break;
|
|
2209
|
-
}
|
|
2210
2102
|
}
|
|
2211
2103
|
break;
|
|
2212
|
-
default:
|
|
2213
|
-
throw new antlr.NoViableAltException(this);
|
|
2214
2104
|
}
|
|
2215
2105
|
}
|
|
2216
2106
|
catch (re) {
|
|
@@ -2229,20 +2119,20 @@ export class plurnkParser extends antlr.Parser {
|
|
|
2229
2119
|
}
|
|
2230
2120
|
tagSignal() {
|
|
2231
2121
|
let localContext = new TagSignalContext(this.context, this.state);
|
|
2232
|
-
this.enterRule(localContext,
|
|
2122
|
+
this.enterRule(localContext, 70, plurnkParser.RULE_tagSignal);
|
|
2233
2123
|
let _la;
|
|
2234
2124
|
try {
|
|
2235
2125
|
this.enterOuterAlt(localContext, 1);
|
|
2236
2126
|
{
|
|
2237
|
-
this.state =
|
|
2127
|
+
this.state = 435;
|
|
2238
2128
|
this.match(plurnkParser.LBRACKET);
|
|
2239
|
-
this.state =
|
|
2129
|
+
this.state = 439;
|
|
2240
2130
|
this.errorHandler.sync(this);
|
|
2241
2131
|
_la = this.tokenStream.LA(1);
|
|
2242
2132
|
while (_la === 9 || _la === 13) {
|
|
2243
2133
|
{
|
|
2244
2134
|
{
|
|
2245
|
-
this.state =
|
|
2135
|
+
this.state = 436;
|
|
2246
2136
|
_la = this.tokenStream.LA(1);
|
|
2247
2137
|
if (!(_la === 9 || _la === 13)) {
|
|
2248
2138
|
this.errorHandler.recoverInline(this);
|
|
@@ -2253,11 +2143,11 @@ export class plurnkParser extends antlr.Parser {
|
|
|
2253
2143
|
}
|
|
2254
2144
|
}
|
|
2255
2145
|
}
|
|
2256
|
-
this.state =
|
|
2146
|
+
this.state = 441;
|
|
2257
2147
|
this.errorHandler.sync(this);
|
|
2258
2148
|
_la = this.tokenStream.LA(1);
|
|
2259
2149
|
}
|
|
2260
|
-
this.state =
|
|
2150
|
+
this.state = 442;
|
|
2261
2151
|
this.match(plurnkParser.RBRACKET);
|
|
2262
2152
|
}
|
|
2263
2153
|
}
|
|
@@ -2277,15 +2167,15 @@ export class plurnkParser extends antlr.Parser {
|
|
|
2277
2167
|
}
|
|
2278
2168
|
branchSignal() {
|
|
2279
2169
|
let localContext = new BranchSignalContext(this.context, this.state);
|
|
2280
|
-
this.enterRule(localContext,
|
|
2170
|
+
this.enterRule(localContext, 72, plurnkParser.RULE_branchSignal);
|
|
2281
2171
|
try {
|
|
2282
2172
|
this.enterOuterAlt(localContext, 1);
|
|
2283
2173
|
{
|
|
2284
|
-
this.state =
|
|
2174
|
+
this.state = 444;
|
|
2285
2175
|
this.match(plurnkParser.LBRACKET);
|
|
2286
|
-
this.state =
|
|
2176
|
+
this.state = 445;
|
|
2287
2177
|
this.match(plurnkParser.TAG);
|
|
2288
|
-
this.state =
|
|
2178
|
+
this.state = 446;
|
|
2289
2179
|
this.match(plurnkParser.RBRACKET);
|
|
2290
2180
|
}
|
|
2291
2181
|
}
|
|
@@ -2305,19 +2195,19 @@ export class plurnkParser extends antlr.Parser {
|
|
|
2305
2195
|
}
|
|
2306
2196
|
intSignal() {
|
|
2307
2197
|
let localContext = new IntSignalContext(this.context, this.state);
|
|
2308
|
-
this.enterRule(localContext,
|
|
2198
|
+
this.enterRule(localContext, 74, plurnkParser.RULE_intSignal);
|
|
2309
2199
|
let _la;
|
|
2310
2200
|
try {
|
|
2311
2201
|
this.enterOuterAlt(localContext, 1);
|
|
2312
2202
|
{
|
|
2313
|
-
this.state =
|
|
2203
|
+
this.state = 448;
|
|
2314
2204
|
this.match(plurnkParser.LBRACKET);
|
|
2315
|
-
this.state =
|
|
2205
|
+
this.state = 450;
|
|
2316
2206
|
this.errorHandler.sync(this);
|
|
2317
2207
|
_la = this.tokenStream.LA(1);
|
|
2318
2208
|
if (_la === 10 || _la === 11) {
|
|
2319
2209
|
{
|
|
2320
|
-
this.state =
|
|
2210
|
+
this.state = 449;
|
|
2321
2211
|
_la = this.tokenStream.LA(1);
|
|
2322
2212
|
if (!(_la === 10 || _la === 11)) {
|
|
2323
2213
|
this.errorHandler.recoverInline(this);
|
|
@@ -2328,7 +2218,7 @@ export class plurnkParser extends antlr.Parser {
|
|
|
2328
2218
|
}
|
|
2329
2219
|
}
|
|
2330
2220
|
}
|
|
2331
|
-
this.state =
|
|
2221
|
+
this.state = 452;
|
|
2332
2222
|
this.match(plurnkParser.RBRACKET);
|
|
2333
2223
|
}
|
|
2334
2224
|
}
|
|
@@ -2348,23 +2238,23 @@ export class plurnkParser extends antlr.Parser {
|
|
|
2348
2238
|
}
|
|
2349
2239
|
midSignal() {
|
|
2350
2240
|
let localContext = new MidSignalContext(this.context, this.state);
|
|
2351
|
-
this.enterRule(localContext,
|
|
2241
|
+
this.enterRule(localContext, 76, plurnkParser.RULE_midSignal);
|
|
2352
2242
|
let _la;
|
|
2353
2243
|
try {
|
|
2354
2244
|
this.enterOuterAlt(localContext, 1);
|
|
2355
2245
|
{
|
|
2356
|
-
this.state =
|
|
2246
|
+
this.state = 454;
|
|
2357
2247
|
this.match(plurnkParser.LBRACKET);
|
|
2358
|
-
this.state =
|
|
2248
|
+
this.state = 456;
|
|
2359
2249
|
this.errorHandler.sync(this);
|
|
2360
2250
|
_la = this.tokenStream.LA(1);
|
|
2361
2251
|
if (_la === 10) {
|
|
2362
2252
|
{
|
|
2363
|
-
this.state =
|
|
2253
|
+
this.state = 455;
|
|
2364
2254
|
this.match(plurnkParser.INT);
|
|
2365
2255
|
}
|
|
2366
2256
|
}
|
|
2367
|
-
this.state =
|
|
2257
|
+
this.state = 458;
|
|
2368
2258
|
this.match(plurnkParser.RBRACKET);
|
|
2369
2259
|
}
|
|
2370
2260
|
}
|
|
@@ -2384,15 +2274,15 @@ export class plurnkParser extends antlr.Parser {
|
|
|
2384
2274
|
}
|
|
2385
2275
|
dispSignal() {
|
|
2386
2276
|
let localContext = new DispSignalContext(this.context, this.state);
|
|
2387
|
-
this.enterRule(localContext,
|
|
2277
|
+
this.enterRule(localContext, 78, plurnkParser.RULE_dispSignal);
|
|
2388
2278
|
try {
|
|
2389
2279
|
this.enterOuterAlt(localContext, 1);
|
|
2390
2280
|
{
|
|
2391
|
-
this.state =
|
|
2281
|
+
this.state = 460;
|
|
2392
2282
|
this.match(plurnkParser.LBRACKET);
|
|
2393
|
-
this.state =
|
|
2283
|
+
this.state = 461;
|
|
2394
2284
|
this.match(plurnkParser.DISPOSITION);
|
|
2395
|
-
this.state =
|
|
2285
|
+
this.state = 462;
|
|
2396
2286
|
this.match(plurnkParser.RBRACKET);
|
|
2397
2287
|
}
|
|
2398
2288
|
}
|
|
@@ -2412,23 +2302,23 @@ export class plurnkParser extends antlr.Parser {
|
|
|
2412
2302
|
}
|
|
2413
2303
|
identSignal() {
|
|
2414
2304
|
let localContext = new IdentSignalContext(this.context, this.state);
|
|
2415
|
-
this.enterRule(localContext,
|
|
2305
|
+
this.enterRule(localContext, 80, plurnkParser.RULE_identSignal);
|
|
2416
2306
|
let _la;
|
|
2417
2307
|
try {
|
|
2418
2308
|
this.enterOuterAlt(localContext, 1);
|
|
2419
2309
|
{
|
|
2420
|
-
this.state =
|
|
2310
|
+
this.state = 464;
|
|
2421
2311
|
this.match(plurnkParser.LBRACKET);
|
|
2422
|
-
this.state =
|
|
2312
|
+
this.state = 466;
|
|
2423
2313
|
this.errorHandler.sync(this);
|
|
2424
2314
|
_la = this.tokenStream.LA(1);
|
|
2425
2315
|
if (_la === 12) {
|
|
2426
2316
|
{
|
|
2427
|
-
this.state =
|
|
2317
|
+
this.state = 465;
|
|
2428
2318
|
this.match(plurnkParser.IDENT);
|
|
2429
2319
|
}
|
|
2430
2320
|
}
|
|
2431
|
-
this.state =
|
|
2321
|
+
this.state = 468;
|
|
2432
2322
|
this.match(plurnkParser.RBRACKET);
|
|
2433
2323
|
}
|
|
2434
2324
|
}
|
|
@@ -2448,28 +2338,28 @@ export class plurnkParser extends antlr.Parser {
|
|
|
2448
2338
|
}
|
|
2449
2339
|
target() {
|
|
2450
2340
|
let localContext = new TargetContext(this.context, this.state);
|
|
2451
|
-
this.enterRule(localContext,
|
|
2341
|
+
this.enterRule(localContext, 82, plurnkParser.RULE_target);
|
|
2452
2342
|
let _la;
|
|
2453
2343
|
try {
|
|
2454
2344
|
this.enterOuterAlt(localContext, 1);
|
|
2455
2345
|
{
|
|
2456
|
-
this.state =
|
|
2346
|
+
this.state = 470;
|
|
2457
2347
|
this.match(plurnkParser.LPAREN);
|
|
2458
|
-
this.state =
|
|
2348
|
+
this.state = 474;
|
|
2459
2349
|
this.errorHandler.sync(this);
|
|
2460
2350
|
_la = this.tokenStream.LA(1);
|
|
2461
2351
|
while (_la === 14) {
|
|
2462
2352
|
{
|
|
2463
2353
|
{
|
|
2464
|
-
this.state =
|
|
2354
|
+
this.state = 471;
|
|
2465
2355
|
this.match(plurnkParser.TARGET_TEXT);
|
|
2466
2356
|
}
|
|
2467
2357
|
}
|
|
2468
|
-
this.state =
|
|
2358
|
+
this.state = 476;
|
|
2469
2359
|
this.errorHandler.sync(this);
|
|
2470
2360
|
_la = this.tokenStream.LA(1);
|
|
2471
2361
|
}
|
|
2472
|
-
this.state =
|
|
2362
|
+
this.state = 477;
|
|
2473
2363
|
this.match(plurnkParser.RPAREN);
|
|
2474
2364
|
}
|
|
2475
2365
|
}
|
|
@@ -2489,11 +2379,11 @@ export class plurnkParser extends antlr.Parser {
|
|
|
2489
2379
|
}
|
|
2490
2380
|
lineMarker() {
|
|
2491
2381
|
let localContext = new LineMarkerContext(this.context, this.state);
|
|
2492
|
-
this.enterRule(localContext,
|
|
2382
|
+
this.enterRule(localContext, 84, plurnkParser.RULE_lineMarker);
|
|
2493
2383
|
try {
|
|
2494
2384
|
this.enterOuterAlt(localContext, 1);
|
|
2495
2385
|
{
|
|
2496
|
-
this.state =
|
|
2386
|
+
this.state = 479;
|
|
2497
2387
|
this.match(plurnkParser.L_MARKER);
|
|
2498
2388
|
}
|
|
2499
2389
|
}
|
|
@@ -2513,22 +2403,22 @@ export class plurnkParser extends antlr.Parser {
|
|
|
2513
2403
|
}
|
|
2514
2404
|
body() {
|
|
2515
2405
|
let localContext = new BodyContext(this.context, this.state);
|
|
2516
|
-
this.enterRule(localContext,
|
|
2406
|
+
this.enterRule(localContext, 86, plurnkParser.RULE_body);
|
|
2517
2407
|
let _la;
|
|
2518
2408
|
try {
|
|
2519
2409
|
this.enterOuterAlt(localContext, 1);
|
|
2520
2410
|
{
|
|
2521
|
-
this.state =
|
|
2411
|
+
this.state = 482;
|
|
2522
2412
|
this.errorHandler.sync(this);
|
|
2523
2413
|
_la = this.tokenStream.LA(1);
|
|
2524
2414
|
do {
|
|
2525
2415
|
{
|
|
2526
2416
|
{
|
|
2527
|
-
this.state =
|
|
2417
|
+
this.state = 481;
|
|
2528
2418
|
this.match(plurnkParser.BODY_TEXT);
|
|
2529
2419
|
}
|
|
2530
2420
|
}
|
|
2531
|
-
this.state =
|
|
2421
|
+
this.state = 484;
|
|
2532
2422
|
this.errorHandler.sync(this);
|
|
2533
2423
|
_la = this.tokenStream.LA(1);
|
|
2534
2424
|
} while (_la === 15);
|
|
@@ -2549,203 +2439,193 @@ export class plurnkParser extends antlr.Parser {
|
|
|
2549
2439
|
return localContext;
|
|
2550
2440
|
}
|
|
2551
2441
|
static _serializedATN = [
|
|
2552
|
-
4, 1, 43,
|
|
2442
|
+
4, 1, 43, 487, 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,
|
|
2553
2443
|
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,
|
|
2554
2444
|
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,
|
|
2555
2445
|
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,
|
|
2556
2446
|
2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33,
|
|
2557
2447
|
7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39,
|
|
2558
|
-
2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42,
|
|
2559
|
-
1, 0, 1, 0, 3, 0,
|
|
2560
|
-
|
|
2561
|
-
|
|
2562
|
-
5,
|
|
2563
|
-
|
|
2564
|
-
|
|
2565
|
-
8, 8, 1, 9, 1, 9, 3, 9,
|
|
2566
|
-
|
|
2567
|
-
11,
|
|
2568
|
-
1, 12, 1, 12, 1, 13, 1, 13, 3, 13,
|
|
2569
|
-
14, 1, 14, 3, 14,
|
|
2570
|
-
|
|
2571
|
-
16, 1, 16, 1, 16, 1, 17, 1, 17, 3, 17,
|
|
2572
|
-
1, 18, 1, 18, 3, 18,
|
|
2573
|
-
19,
|
|
2574
|
-
1, 20, 3, 20,
|
|
2575
|
-
8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 3, 22,
|
|
2576
|
-
22, 1, 23, 1, 23, 3, 23,
|
|
2577
|
-
3, 24,
|
|
2578
|
-
25, 1, 25, 3, 25,
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
8, 28,
|
|
2583
|
-
|
|
2584
|
-
3,
|
|
2585
|
-
|
|
2586
|
-
|
|
2587
|
-
8, 32, 1,
|
|
2588
|
-
|
|
2589
|
-
8,
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
|
|
2595
|
-
|
|
2596
|
-
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
|
|
2601
|
-
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
-
|
|
2605
|
-
|
|
2606
|
-
|
|
2607
|
-
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
0, 0,
|
|
2613
|
-
0, 0,
|
|
2614
|
-
0, 0,
|
|
2615
|
-
|
|
2616
|
-
0, 0,
|
|
2617
|
-
0, 0,
|
|
2618
|
-
|
|
2619
|
-
0,
|
|
2620
|
-
0,
|
|
2621
|
-
0,
|
|
2622
|
-
0,
|
|
2623
|
-
|
|
2624
|
-
|
|
2625
|
-
|
|
2626
|
-
0,
|
|
2627
|
-
|
|
2628
|
-
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
|
|
2632
|
-
|
|
2633
|
-
|
|
2634
|
-
|
|
2635
|
-
|
|
2636
|
-
|
|
2637
|
-
|
|
2638
|
-
|
|
2639
|
-
0,
|
|
2640
|
-
0,
|
|
2641
|
-
0,
|
|
2642
|
-
0, 0,
|
|
2643
|
-
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
1, 0, 0, 0,
|
|
2647
|
-
|
|
2648
|
-
1, 0, 0, 0,
|
|
2649
|
-
1, 0, 0, 0,
|
|
2650
|
-
|
|
2651
|
-
|
|
2652
|
-
|
|
2653
|
-
|
|
2654
|
-
|
|
2655
|
-
|
|
2656
|
-
|
|
2657
|
-
|
|
2658
|
-
|
|
2659
|
-
|
|
2660
|
-
|
|
2661
|
-
0,
|
|
2662
|
-
0, 0,
|
|
2663
|
-
0, 0,
|
|
2664
|
-
0, 0, 0,
|
|
2665
|
-
1, 0, 0, 0,
|
|
2666
|
-
|
|
2667
|
-
|
|
2668
|
-
|
|
2669
|
-
|
|
2670
|
-
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
|
|
2674
|
-
|
|
2675
|
-
|
|
2676
|
-
|
|
2677
|
-
|
|
2678
|
-
|
|
2679
|
-
|
|
2680
|
-
|
|
2681
|
-
0,
|
|
2682
|
-
0,
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
0, 0, 0,
|
|
2686
|
-
|
|
2687
|
-
1, 0, 0, 0,
|
|
2688
|
-
1, 0, 0, 0,
|
|
2689
|
-
1, 0, 0, 0,
|
|
2690
|
-
|
|
2691
|
-
3, 82, 41, 0,
|
|
2692
|
-
|
|
2693
|
-
|
|
2694
|
-
|
|
2695
|
-
0,
|
|
2696
|
-
0, 0,
|
|
2697
|
-
|
|
2698
|
-
1, 0, 0, 0,
|
|
2699
|
-
|
|
2700
|
-
1, 0, 0, 0,
|
|
2701
|
-
1, 0, 0, 0,
|
|
2702
|
-
|
|
2703
|
-
|
|
2704
|
-
|
|
2705
|
-
|
|
2706
|
-
|
|
2707
|
-
|
|
2708
|
-
|
|
2709
|
-
|
|
2710
|
-
|
|
2711
|
-
|
|
2712
|
-
0, 0, 0,
|
|
2713
|
-
|
|
2714
|
-
1, 0, 0, 0,
|
|
2715
|
-
|
|
2716
|
-
|
|
2717
|
-
|
|
2718
|
-
|
|
2719
|
-
|
|
2720
|
-
|
|
2721
|
-
|
|
2722
|
-
|
|
2723
|
-
0, 0,
|
|
2724
|
-
0, 0, 0,
|
|
2725
|
-
|
|
2726
|
-
|
|
2727
|
-
|
|
2728
|
-
|
|
2729
|
-
|
|
2730
|
-
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
|
-
0, 0, 0,
|
|
2734
|
-
0, 0,
|
|
2735
|
-
|
|
2736
|
-
|
|
2737
|
-
|
|
2738
|
-
|
|
2739
|
-
0, 490, 489, 1, 0, 0, 0, 491, 494, 1, 0, 0, 0, 492, 490, 1, 0, 0, 0, 492, 493, 1, 0, 0,
|
|
2740
|
-
0, 493, 495, 1, 0, 0, 0, 494, 492, 1, 0, 0, 0, 495, 496, 5, 4, 0, 0, 496, 81, 1, 0, 0, 0,
|
|
2741
|
-
497, 498, 5, 5, 0, 0, 498, 83, 1, 0, 0, 0, 499, 501, 5, 15, 0, 0, 500, 499, 1, 0, 0, 0,
|
|
2742
|
-
501, 502, 1, 0, 0, 0, 502, 500, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 85, 1, 0, 0, 0, 85,
|
|
2743
|
-
92, 96, 101, 108, 117, 125, 133, 141, 158, 173, 177, 180, 186, 189, 195, 198, 204,
|
|
2744
|
-
207, 213, 216, 222, 225, 231, 234, 241, 247, 250, 256, 259, 265, 268, 274, 277,
|
|
2745
|
-
283, 286, 292, 295, 301, 304, 310, 313, 319, 322, 331, 334, 337, 342, 346, 348,
|
|
2746
|
-
353, 357, 359, 364, 368, 370, 372, 376, 380, 382, 386, 390, 392, 396, 399, 404,
|
|
2747
|
-
406, 410, 414, 416, 421, 425, 427, 432, 436, 438, 443, 447, 449, 451, 457, 468,
|
|
2748
|
-
474, 484, 492, 502
|
|
2448
|
+
2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0,
|
|
2449
|
+
3, 0, 95, 8, 0, 1, 0, 1, 0, 3, 0, 99, 8, 0, 1, 1, 4, 1, 102, 8, 1, 11, 1, 12, 1, 103, 1, 1,
|
|
2450
|
+
1, 1, 1, 2, 5, 2, 109, 8, 2, 10, 2, 12, 2, 112, 9, 2, 1, 2, 1, 2, 1, 3, 1, 3, 5, 3, 118, 8,
|
|
2451
|
+
3, 10, 3, 12, 3, 121, 9, 3, 1, 3, 1, 3, 1, 4, 5, 4, 126, 8, 4, 10, 4, 12, 4, 129, 9, 4, 1,
|
|
2452
|
+
4, 1, 4, 1, 5, 5, 5, 134, 8, 5, 10, 5, 12, 5, 137, 9, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 3, 6,
|
|
2453
|
+
144, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7,
|
|
2454
|
+
1, 7, 3, 7, 161, 8, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8,
|
|
2455
|
+
1, 8, 3, 8, 176, 8, 8, 1, 9, 1, 9, 3, 9, 180, 8, 9, 1, 9, 3, 9, 183, 8, 9, 1, 9, 1, 9, 1, 10,
|
|
2456
|
+
1, 10, 3, 10, 189, 8, 10, 1, 10, 3, 10, 192, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 198,
|
|
2457
|
+
8, 11, 1, 11, 3, 11, 201, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 3, 12, 207, 8, 12, 1, 12, 3,
|
|
2458
|
+
12, 210, 8, 12, 1, 12, 1, 12, 1, 13, 1, 13, 3, 13, 216, 8, 13, 1, 13, 3, 13, 219, 8, 13,
|
|
2459
|
+
1, 13, 1, 13, 1, 14, 1, 14, 3, 14, 225, 8, 14, 1, 14, 3, 14, 228, 8, 14, 1, 14, 1, 14, 1,
|
|
2460
|
+
15, 1, 15, 3, 15, 234, 8, 15, 1, 15, 3, 15, 237, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16,
|
|
2461
|
+
3, 16, 244, 8, 16, 1, 16, 1, 16, 1, 17, 1, 17, 3, 17, 250, 8, 17, 1, 17, 3, 17, 253, 8,
|
|
2462
|
+
17, 1, 17, 1, 17, 1, 18, 1, 18, 3, 18, 259, 8, 18, 1, 18, 3, 18, 262, 8, 18, 1, 18, 1, 18,
|
|
2463
|
+
1, 19, 1, 19, 3, 19, 268, 8, 19, 1, 19, 3, 19, 271, 8, 19, 1, 19, 1, 19, 1, 20, 1, 20, 3,
|
|
2464
|
+
20, 277, 8, 20, 1, 20, 3, 20, 280, 8, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 286, 8, 21,
|
|
2465
|
+
1, 21, 3, 21, 289, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 3, 22, 295, 8, 22, 1, 22, 3, 22, 298,
|
|
2466
|
+
8, 22, 1, 22, 1, 22, 1, 23, 1, 23, 3, 23, 304, 8, 23, 1, 23, 3, 23, 307, 8, 23, 1, 23, 1,
|
|
2467
|
+
23, 1, 24, 1, 24, 3, 24, 313, 8, 24, 1, 24, 3, 24, 316, 8, 24, 1, 24, 1, 24, 1, 25, 1, 25,
|
|
2468
|
+
3, 25, 322, 8, 25, 1, 25, 3, 25, 325, 8, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 27, 1, 27, 1,
|
|
2469
|
+
27, 3, 27, 334, 8, 27, 1, 27, 3, 27, 337, 8, 27, 1, 27, 1, 27, 3, 27, 341, 8, 27, 1, 27,
|
|
2470
|
+
3, 27, 344, 8, 27, 1, 28, 1, 28, 1, 28, 3, 28, 349, 8, 28, 1, 28, 1, 28, 3, 28, 353, 8,
|
|
2471
|
+
28, 3, 28, 355, 8, 28, 1, 28, 1, 28, 1, 28, 3, 28, 360, 8, 28, 1, 28, 1, 28, 3, 28, 364,
|
|
2472
|
+
8, 28, 3, 28, 366, 8, 28, 1, 28, 1, 28, 1, 28, 3, 28, 371, 8, 28, 1, 28, 1, 28, 3, 28, 375,
|
|
2473
|
+
8, 28, 3, 28, 377, 8, 28, 3, 28, 379, 8, 28, 1, 29, 1, 29, 3, 29, 383, 8, 29, 1, 29, 1,
|
|
2474
|
+
29, 3, 29, 387, 8, 29, 3, 29, 389, 8, 29, 1, 30, 1, 30, 3, 30, 393, 8, 30, 1, 30, 1, 30,
|
|
2475
|
+
3, 30, 397, 8, 30, 3, 30, 399, 8, 30, 1, 31, 1, 31, 3, 31, 403, 8, 31, 1, 31, 3, 31, 406,
|
|
2476
|
+
8, 31, 1, 31, 1, 31, 1, 31, 3, 31, 411, 8, 31, 3, 31, 413, 8, 31, 1, 32, 1, 32, 3, 32, 417,
|
|
2477
|
+
8, 32, 1, 32, 1, 32, 3, 32, 421, 8, 32, 3, 32, 423, 8, 32, 1, 33, 4, 33, 426, 8, 33, 11,
|
|
2478
|
+
33, 12, 33, 427, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 434, 8, 34, 1, 35, 1, 35, 5, 35, 438,
|
|
2479
|
+
8, 35, 10, 35, 12, 35, 441, 9, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37,
|
|
2480
|
+
3, 37, 451, 8, 37, 1, 37, 1, 37, 1, 38, 1, 38, 3, 38, 457, 8, 38, 1, 38, 1, 38, 1, 39, 1,
|
|
2481
|
+
39, 1, 39, 1, 39, 1, 40, 1, 40, 3, 40, 467, 8, 40, 1, 40, 1, 40, 1, 41, 1, 41, 5, 41, 473,
|
|
2482
|
+
8, 41, 10, 41, 12, 41, 476, 9, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 43, 4, 43, 483, 8, 43,
|
|
2483
|
+
11, 43, 12, 43, 484, 1, 43, 0, 0, 44, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26,
|
|
2484
|
+
28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70,
|
|
2485
|
+
72, 74, 76, 78, 80, 82, 84, 86, 0, 2, 2, 0, 9, 9, 13, 13, 1, 0, 10, 11, 553, 0, 98, 1, 0,
|
|
2486
|
+
0, 0, 2, 101, 1, 0, 0, 0, 4, 110, 1, 0, 0, 0, 6, 115, 1, 0, 0, 0, 8, 127, 1, 0, 0, 0, 10, 135,
|
|
2487
|
+
1, 0, 0, 0, 12, 143, 1, 0, 0, 0, 14, 160, 1, 0, 0, 0, 16, 175, 1, 0, 0, 0, 18, 177, 1, 0,
|
|
2488
|
+
0, 0, 20, 186, 1, 0, 0, 0, 22, 195, 1, 0, 0, 0, 24, 204, 1, 0, 0, 0, 26, 213, 1, 0, 0, 0,
|
|
2489
|
+
28, 222, 1, 0, 0, 0, 30, 231, 1, 0, 0, 0, 32, 240, 1, 0, 0, 0, 34, 247, 1, 0, 0, 0, 36, 256,
|
|
2490
|
+
1, 0, 0, 0, 38, 265, 1, 0, 0, 0, 40, 274, 1, 0, 0, 0, 42, 283, 1, 0, 0, 0, 44, 292, 1, 0,
|
|
2491
|
+
0, 0, 46, 301, 1, 0, 0, 0, 48, 310, 1, 0, 0, 0, 50, 319, 1, 0, 0, 0, 52, 328, 1, 0, 0, 0,
|
|
2492
|
+
54, 343, 1, 0, 0, 0, 56, 378, 1, 0, 0, 0, 58, 388, 1, 0, 0, 0, 60, 398, 1, 0, 0, 0, 62, 412,
|
|
2493
|
+
1, 0, 0, 0, 64, 422, 1, 0, 0, 0, 66, 425, 1, 0, 0, 0, 68, 433, 1, 0, 0, 0, 70, 435, 1, 0,
|
|
2494
|
+
0, 0, 72, 444, 1, 0, 0, 0, 74, 448, 1, 0, 0, 0, 76, 454, 1, 0, 0, 0, 78, 460, 1, 0, 0, 0,
|
|
2495
|
+
80, 464, 1, 0, 0, 0, 82, 470, 1, 0, 0, 0, 84, 479, 1, 0, 0, 0, 86, 482, 1, 0, 0, 0, 88, 89,
|
|
2496
|
+
3, 4, 2, 0, 89, 90, 5, 0, 0, 1, 90, 99, 1, 0, 0, 0, 91, 92, 5, 34, 0, 0, 92, 94, 3, 6, 3, 0,
|
|
2497
|
+
93, 95, 5, 35, 0, 0, 94, 93, 1, 0, 0, 0, 94, 95, 1, 0, 0, 0, 95, 96, 1, 0, 0, 0, 96, 97, 5,
|
|
2498
|
+
0, 0, 1, 97, 99, 1, 0, 0, 0, 98, 88, 1, 0, 0, 0, 98, 91, 1, 0, 0, 0, 99, 1, 1, 0, 0, 0, 100,
|
|
2499
|
+
102, 3, 4, 2, 0, 101, 100, 1, 0, 0, 0, 102, 103, 1, 0, 0, 0, 103, 101, 1, 0, 0, 0, 103,
|
|
2500
|
+
104, 1, 0, 0, 0, 104, 105, 1, 0, 0, 0, 105, 106, 5, 0, 0, 1, 106, 3, 1, 0, 0, 0, 107, 109,
|
|
2501
|
+
5, 16, 0, 0, 108, 107, 1, 0, 0, 0, 109, 112, 1, 0, 0, 0, 110, 108, 1, 0, 0, 0, 110, 111,
|
|
2502
|
+
1, 0, 0, 0, 111, 113, 1, 0, 0, 0, 112, 110, 1, 0, 0, 0, 113, 114, 3, 6, 3, 0, 114, 5, 1,
|
|
2503
|
+
0, 0, 0, 115, 119, 3, 46, 23, 0, 116, 118, 3, 16, 8, 0, 117, 116, 1, 0, 0, 0, 118, 121,
|
|
2504
|
+
1, 0, 0, 0, 119, 117, 1, 0, 0, 0, 119, 120, 1, 0, 0, 0, 120, 122, 1, 0, 0, 0, 121, 119,
|
|
2505
|
+
1, 0, 0, 0, 122, 123, 3, 32, 16, 0, 123, 7, 1, 0, 0, 0, 124, 126, 3, 14, 7, 0, 125, 124,
|
|
2506
|
+
1, 0, 0, 0, 126, 129, 1, 0, 0, 0, 127, 125, 1, 0, 0, 0, 127, 128, 1, 0, 0, 0, 128, 130,
|
|
2507
|
+
1, 0, 0, 0, 129, 127, 1, 0, 0, 0, 130, 131, 5, 0, 0, 1, 131, 9, 1, 0, 0, 0, 132, 134, 3,
|
|
2508
|
+
12, 6, 0, 133, 132, 1, 0, 0, 0, 134, 137, 1, 0, 0, 0, 135, 133, 1, 0, 0, 0, 135, 136, 1,
|
|
2509
|
+
0, 0, 0, 136, 138, 1, 0, 0, 0, 137, 135, 1, 0, 0, 0, 138, 139, 5, 0, 0, 1, 139, 11, 1, 0,
|
|
2510
|
+
0, 0, 140, 144, 3, 14, 7, 0, 141, 144, 3, 48, 24, 0, 142, 144, 3, 50, 25, 0, 143, 140,
|
|
2511
|
+
1, 0, 0, 0, 143, 141, 1, 0, 0, 0, 143, 142, 1, 0, 0, 0, 144, 13, 1, 0, 0, 0, 145, 161, 3,
|
|
2512
|
+
18, 9, 0, 146, 161, 3, 20, 10, 0, 147, 161, 3, 22, 11, 0, 148, 161, 3, 24, 12, 0, 149,
|
|
2513
|
+
161, 3, 26, 13, 0, 150, 161, 3, 28, 14, 0, 151, 161, 3, 30, 15, 0, 152, 161, 3, 32, 16,
|
|
2514
|
+
0, 153, 161, 3, 34, 17, 0, 154, 161, 3, 36, 18, 0, 155, 161, 3, 38, 19, 0, 156, 161,
|
|
2515
|
+
3, 40, 20, 0, 157, 161, 3, 42, 21, 0, 158, 161, 3, 44, 22, 0, 159, 161, 3, 46, 23, 0,
|
|
2516
|
+
160, 145, 1, 0, 0, 0, 160, 146, 1, 0, 0, 0, 160, 147, 1, 0, 0, 0, 160, 148, 1, 0, 0, 0,
|
|
2517
|
+
160, 149, 1, 0, 0, 0, 160, 150, 1, 0, 0, 0, 160, 151, 1, 0, 0, 0, 160, 152, 1, 0, 0, 0,
|
|
2518
|
+
160, 153, 1, 0, 0, 0, 160, 154, 1, 0, 0, 0, 160, 155, 1, 0, 0, 0, 160, 156, 1, 0, 0, 0,
|
|
2519
|
+
160, 157, 1, 0, 0, 0, 160, 158, 1, 0, 0, 0, 160, 159, 1, 0, 0, 0, 161, 15, 1, 0, 0, 0, 162,
|
|
2520
|
+
176, 3, 18, 9, 0, 163, 176, 3, 20, 10, 0, 164, 176, 3, 22, 11, 0, 165, 176, 3, 24, 12,
|
|
2521
|
+
0, 166, 176, 3, 26, 13, 0, 167, 176, 3, 28, 14, 0, 168, 176, 3, 30, 15, 0, 169, 176,
|
|
2522
|
+
3, 34, 17, 0, 170, 176, 3, 36, 18, 0, 171, 176, 3, 38, 19, 0, 172, 176, 3, 40, 20, 0,
|
|
2523
|
+
173, 176, 3, 42, 21, 0, 174, 176, 3, 44, 22, 0, 175, 162, 1, 0, 0, 0, 175, 163, 1, 0,
|
|
2524
|
+
0, 0, 175, 164, 1, 0, 0, 0, 175, 165, 1, 0, 0, 0, 175, 166, 1, 0, 0, 0, 175, 167, 1, 0,
|
|
2525
|
+
0, 0, 175, 168, 1, 0, 0, 0, 175, 169, 1, 0, 0, 0, 175, 170, 1, 0, 0, 0, 175, 171, 1, 0,
|
|
2526
|
+
0, 0, 175, 172, 1, 0, 0, 0, 175, 173, 1, 0, 0, 0, 175, 174, 1, 0, 0, 0, 176, 17, 1, 0, 0,
|
|
2527
|
+
0, 177, 179, 5, 19, 0, 0, 178, 180, 3, 56, 28, 0, 179, 178, 1, 0, 0, 0, 179, 180, 1, 0,
|
|
2528
|
+
0, 0, 180, 182, 1, 0, 0, 0, 181, 183, 3, 52, 26, 0, 182, 181, 1, 0, 0, 0, 182, 183, 1,
|
|
2529
|
+
0, 0, 0, 183, 184, 1, 0, 0, 0, 184, 185, 3, 54, 27, 0, 185, 19, 1, 0, 0, 0, 186, 188, 5,
|
|
2530
|
+
20, 0, 0, 187, 189, 3, 56, 28, 0, 188, 187, 1, 0, 0, 0, 188, 189, 1, 0, 0, 0, 189, 191,
|
|
2531
|
+
1, 0, 0, 0, 190, 192, 3, 52, 26, 0, 191, 190, 1, 0, 0, 0, 191, 192, 1, 0, 0, 0, 192, 193,
|
|
2532
|
+
1, 0, 0, 0, 193, 194, 3, 54, 27, 0, 194, 21, 1, 0, 0, 0, 195, 197, 5, 21, 0, 0, 196, 198,
|
|
2533
|
+
3, 56, 28, 0, 197, 196, 1, 0, 0, 0, 197, 198, 1, 0, 0, 0, 198, 200, 1, 0, 0, 0, 199, 201,
|
|
2534
|
+
3, 52, 26, 0, 200, 199, 1, 0, 0, 0, 200, 201, 1, 0, 0, 0, 201, 202, 1, 0, 0, 0, 202, 203,
|
|
2535
|
+
3, 54, 27, 0, 203, 23, 1, 0, 0, 0, 204, 206, 5, 22, 0, 0, 205, 207, 3, 56, 28, 0, 206,
|
|
2536
|
+
205, 1, 0, 0, 0, 206, 207, 1, 0, 0, 0, 207, 209, 1, 0, 0, 0, 208, 210, 3, 52, 26, 0, 209,
|
|
2537
|
+
208, 1, 0, 0, 0, 209, 210, 1, 0, 0, 0, 210, 211, 1, 0, 0, 0, 211, 212, 3, 54, 27, 0, 212,
|
|
2538
|
+
25, 1, 0, 0, 0, 213, 215, 5, 23, 0, 0, 214, 216, 3, 56, 28, 0, 215, 214, 1, 0, 0, 0, 215,
|
|
2539
|
+
216, 1, 0, 0, 0, 216, 218, 1, 0, 0, 0, 217, 219, 3, 52, 26, 0, 218, 217, 1, 0, 0, 0, 218,
|
|
2540
|
+
219, 1, 0, 0, 0, 219, 220, 1, 0, 0, 0, 220, 221, 3, 54, 27, 0, 221, 27, 1, 0, 0, 0, 222,
|
|
2541
|
+
224, 5, 24, 0, 0, 223, 225, 3, 56, 28, 0, 224, 223, 1, 0, 0, 0, 224, 225, 1, 0, 0, 0, 225,
|
|
2542
|
+
227, 1, 0, 0, 0, 226, 228, 3, 52, 26, 0, 227, 226, 1, 0, 0, 0, 227, 228, 1, 0, 0, 0, 228,
|
|
2543
|
+
229, 1, 0, 0, 0, 229, 230, 3, 54, 27, 0, 230, 29, 1, 0, 0, 0, 231, 233, 5, 25, 0, 0, 232,
|
|
2544
|
+
234, 3, 56, 28, 0, 233, 232, 1, 0, 0, 0, 233, 234, 1, 0, 0, 0, 234, 236, 1, 0, 0, 0, 235,
|
|
2545
|
+
237, 3, 52, 26, 0, 236, 235, 1, 0, 0, 0, 236, 237, 1, 0, 0, 0, 237, 238, 1, 0, 0, 0, 238,
|
|
2546
|
+
239, 3, 54, 27, 0, 239, 31, 1, 0, 0, 0, 240, 241, 5, 26, 0, 0, 241, 243, 3, 62, 31, 0,
|
|
2547
|
+
242, 244, 3, 52, 26, 0, 243, 242, 1, 0, 0, 0, 243, 244, 1, 0, 0, 0, 244, 245, 1, 0, 0,
|
|
2548
|
+
0, 245, 246, 3, 54, 27, 0, 246, 33, 1, 0, 0, 0, 247, 249, 5, 26, 0, 0, 248, 250, 3, 64,
|
|
2549
|
+
32, 0, 249, 248, 1, 0, 0, 0, 249, 250, 1, 0, 0, 0, 250, 252, 1, 0, 0, 0, 251, 253, 3, 52,
|
|
2550
|
+
26, 0, 252, 251, 1, 0, 0, 0, 252, 253, 1, 0, 0, 0, 253, 254, 1, 0, 0, 0, 254, 255, 3, 54,
|
|
2551
|
+
27, 0, 255, 35, 1, 0, 0, 0, 256, 258, 5, 27, 0, 0, 257, 259, 3, 66, 33, 0, 258, 257, 1,
|
|
2552
|
+
0, 0, 0, 258, 259, 1, 0, 0, 0, 259, 261, 1, 0, 0, 0, 260, 262, 3, 52, 26, 0, 261, 260,
|
|
2553
|
+
1, 0, 0, 0, 261, 262, 1, 0, 0, 0, 262, 263, 1, 0, 0, 0, 263, 264, 3, 54, 27, 0, 264, 37,
|
|
2554
|
+
1, 0, 0, 0, 265, 267, 5, 28, 0, 0, 266, 268, 3, 70, 35, 0, 267, 266, 1, 0, 0, 0, 267, 268,
|
|
2555
|
+
1, 0, 0, 0, 268, 270, 1, 0, 0, 0, 269, 271, 3, 52, 26, 0, 270, 269, 1, 0, 0, 0, 270, 271,
|
|
2556
|
+
1, 0, 0, 0, 271, 272, 1, 0, 0, 0, 272, 273, 3, 54, 27, 0, 273, 39, 1, 0, 0, 0, 274, 276,
|
|
2557
|
+
5, 29, 0, 0, 275, 277, 3, 60, 30, 0, 276, 275, 1, 0, 0, 0, 276, 277, 1, 0, 0, 0, 277, 279,
|
|
2558
|
+
1, 0, 0, 0, 278, 280, 3, 52, 26, 0, 279, 278, 1, 0, 0, 0, 279, 280, 1, 0, 0, 0, 280, 281,
|
|
2559
|
+
1, 0, 0, 0, 281, 282, 3, 54, 27, 0, 282, 41, 1, 0, 0, 0, 283, 285, 5, 30, 0, 0, 284, 286,
|
|
2560
|
+
3, 60, 30, 0, 285, 284, 1, 0, 0, 0, 285, 286, 1, 0, 0, 0, 286, 288, 1, 0, 0, 0, 287, 289,
|
|
2561
|
+
3, 52, 26, 0, 288, 287, 1, 0, 0, 0, 288, 289, 1, 0, 0, 0, 289, 290, 1, 0, 0, 0, 290, 291,
|
|
2562
|
+
3, 54, 27, 0, 291, 43, 1, 0, 0, 0, 292, 294, 5, 31, 0, 0, 293, 295, 3, 58, 29, 0, 294,
|
|
2563
|
+
293, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 297, 1, 0, 0, 0, 296, 298, 3, 52, 26, 0, 297,
|
|
2564
|
+
296, 1, 0, 0, 0, 297, 298, 1, 0, 0, 0, 298, 299, 1, 0, 0, 0, 299, 300, 3, 54, 27, 0, 300,
|
|
2565
|
+
45, 1, 0, 0, 0, 301, 303, 5, 18, 0, 0, 302, 304, 3, 56, 28, 0, 303, 302, 1, 0, 0, 0, 303,
|
|
2566
|
+
304, 1, 0, 0, 0, 304, 306, 1, 0, 0, 0, 305, 307, 3, 52, 26, 0, 306, 305, 1, 0, 0, 0, 306,
|
|
2567
|
+
307, 1, 0, 0, 0, 307, 308, 1, 0, 0, 0, 308, 309, 3, 54, 27, 0, 309, 47, 1, 0, 0, 0, 310,
|
|
2568
|
+
312, 5, 32, 0, 0, 311, 313, 3, 56, 28, 0, 312, 311, 1, 0, 0, 0, 312, 313, 1, 0, 0, 0, 313,
|
|
2569
|
+
315, 1, 0, 0, 0, 314, 316, 3, 52, 26, 0, 315, 314, 1, 0, 0, 0, 315, 316, 1, 0, 0, 0, 316,
|
|
2570
|
+
317, 1, 0, 0, 0, 317, 318, 3, 54, 27, 0, 318, 49, 1, 0, 0, 0, 319, 321, 5, 33, 0, 0, 320,
|
|
2571
|
+
322, 3, 56, 28, 0, 321, 320, 1, 0, 0, 0, 321, 322, 1, 0, 0, 0, 322, 324, 1, 0, 0, 0, 323,
|
|
2572
|
+
325, 3, 52, 26, 0, 324, 323, 1, 0, 0, 0, 324, 325, 1, 0, 0, 0, 325, 326, 1, 0, 0, 0, 326,
|
|
2573
|
+
327, 3, 54, 27, 0, 327, 51, 1, 0, 0, 0, 328, 329, 5, 17, 0, 0, 329, 53, 1, 0, 0, 0, 330,
|
|
2574
|
+
344, 5, 8, 0, 0, 331, 333, 5, 7, 0, 0, 332, 334, 3, 86, 43, 0, 333, 332, 1, 0, 0, 0, 333,
|
|
2575
|
+
334, 1, 0, 0, 0, 334, 336, 1, 0, 0, 0, 335, 337, 5, 8, 0, 0, 336, 335, 1, 0, 0, 0, 336,
|
|
2576
|
+
337, 1, 0, 0, 0, 337, 344, 1, 0, 0, 0, 338, 340, 3, 86, 43, 0, 339, 341, 5, 8, 0, 0, 340,
|
|
2577
|
+
339, 1, 0, 0, 0, 340, 341, 1, 0, 0, 0, 341, 344, 1, 0, 0, 0, 342, 344, 1, 0, 0, 0, 343,
|
|
2578
|
+
330, 1, 0, 0, 0, 343, 331, 1, 0, 0, 0, 343, 338, 1, 0, 0, 0, 343, 342, 1, 0, 0, 0, 344,
|
|
2579
|
+
55, 1, 0, 0, 0, 345, 354, 3, 70, 35, 0, 346, 348, 3, 82, 41, 0, 347, 349, 3, 84, 42, 0,
|
|
2580
|
+
348, 347, 1, 0, 0, 0, 348, 349, 1, 0, 0, 0, 349, 355, 1, 0, 0, 0, 350, 352, 3, 84, 42,
|
|
2581
|
+
0, 351, 353, 3, 82, 41, 0, 352, 351, 1, 0, 0, 0, 352, 353, 1, 0, 0, 0, 353, 355, 1, 0,
|
|
2582
|
+
0, 0, 354, 346, 1, 0, 0, 0, 354, 350, 1, 0, 0, 0, 354, 355, 1, 0, 0, 0, 355, 379, 1, 0,
|
|
2583
|
+
0, 0, 356, 365, 3, 82, 41, 0, 357, 359, 3, 70, 35, 0, 358, 360, 3, 84, 42, 0, 359, 358,
|
|
2584
|
+
1, 0, 0, 0, 359, 360, 1, 0, 0, 0, 360, 366, 1, 0, 0, 0, 361, 363, 3, 84, 42, 0, 362, 364,
|
|
2585
|
+
3, 70, 35, 0, 363, 362, 1, 0, 0, 0, 363, 364, 1, 0, 0, 0, 364, 366, 1, 0, 0, 0, 365, 357,
|
|
2586
|
+
1, 0, 0, 0, 365, 361, 1, 0, 0, 0, 365, 366, 1, 0, 0, 0, 366, 379, 1, 0, 0, 0, 367, 376,
|
|
2587
|
+
3, 84, 42, 0, 368, 370, 3, 70, 35, 0, 369, 371, 3, 82, 41, 0, 370, 369, 1, 0, 0, 0, 370,
|
|
2588
|
+
371, 1, 0, 0, 0, 371, 377, 1, 0, 0, 0, 372, 374, 3, 82, 41, 0, 373, 375, 3, 70, 35, 0,
|
|
2589
|
+
374, 373, 1, 0, 0, 0, 374, 375, 1, 0, 0, 0, 375, 377, 1, 0, 0, 0, 376, 368, 1, 0, 0, 0,
|
|
2590
|
+
376, 372, 1, 0, 0, 0, 376, 377, 1, 0, 0, 0, 377, 379, 1, 0, 0, 0, 378, 345, 1, 0, 0, 0,
|
|
2591
|
+
378, 356, 1, 0, 0, 0, 378, 367, 1, 0, 0, 0, 379, 57, 1, 0, 0, 0, 380, 382, 3, 74, 37, 0,
|
|
2592
|
+
381, 383, 3, 82, 41, 0, 382, 381, 1, 0, 0, 0, 382, 383, 1, 0, 0, 0, 383, 389, 1, 0, 0,
|
|
2593
|
+
0, 384, 386, 3, 82, 41, 0, 385, 387, 3, 74, 37, 0, 386, 385, 1, 0, 0, 0, 386, 387, 1,
|
|
2594
|
+
0, 0, 0, 387, 389, 1, 0, 0, 0, 388, 380, 1, 0, 0, 0, 388, 384, 1, 0, 0, 0, 389, 59, 1, 0,
|
|
2595
|
+
0, 0, 390, 392, 3, 72, 36, 0, 391, 393, 3, 82, 41, 0, 392, 391, 1, 0, 0, 0, 392, 393,
|
|
2596
|
+
1, 0, 0, 0, 393, 399, 1, 0, 0, 0, 394, 396, 3, 82, 41, 0, 395, 397, 3, 72, 36, 0, 396,
|
|
2597
|
+
395, 1, 0, 0, 0, 396, 397, 1, 0, 0, 0, 397, 399, 1, 0, 0, 0, 398, 390, 1, 0, 0, 0, 398,
|
|
2598
|
+
394, 1, 0, 0, 0, 399, 61, 1, 0, 0, 0, 400, 402, 3, 78, 39, 0, 401, 403, 3, 82, 41, 0, 402,
|
|
2599
|
+
401, 1, 0, 0, 0, 402, 403, 1, 0, 0, 0, 403, 405, 1, 0, 0, 0, 404, 406, 3, 84, 42, 0, 405,
|
|
2600
|
+
404, 1, 0, 0, 0, 405, 406, 1, 0, 0, 0, 406, 413, 1, 0, 0, 0, 407, 408, 3, 82, 41, 0, 408,
|
|
2601
|
+
410, 3, 78, 39, 0, 409, 411, 3, 84, 42, 0, 410, 409, 1, 0, 0, 0, 410, 411, 1, 0, 0, 0,
|
|
2602
|
+
411, 413, 1, 0, 0, 0, 412, 400, 1, 0, 0, 0, 412, 407, 1, 0, 0, 0, 413, 63, 1, 0, 0, 0, 414,
|
|
2603
|
+
416, 3, 76, 38, 0, 415, 417, 3, 82, 41, 0, 416, 415, 1, 0, 0, 0, 416, 417, 1, 0, 0, 0,
|
|
2604
|
+
417, 423, 1, 0, 0, 0, 418, 420, 3, 82, 41, 0, 419, 421, 3, 76, 38, 0, 420, 419, 1, 0,
|
|
2605
|
+
0, 0, 420, 421, 1, 0, 0, 0, 421, 423, 1, 0, 0, 0, 422, 414, 1, 0, 0, 0, 422, 418, 1, 0,
|
|
2606
|
+
0, 0, 423, 65, 1, 0, 0, 0, 424, 426, 3, 68, 34, 0, 425, 424, 1, 0, 0, 0, 426, 427, 1, 0,
|
|
2607
|
+
0, 0, 427, 425, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 67, 1, 0, 0, 0, 429, 434, 3, 80,
|
|
2608
|
+
40, 0, 430, 434, 3, 70, 35, 0, 431, 434, 3, 82, 41, 0, 432, 434, 3, 84, 42, 0, 433, 429,
|
|
2609
|
+
1, 0, 0, 0, 433, 430, 1, 0, 0, 0, 433, 431, 1, 0, 0, 0, 433, 432, 1, 0, 0, 0, 434, 69, 1,
|
|
2610
|
+
0, 0, 0, 435, 439, 5, 1, 0, 0, 436, 438, 7, 0, 0, 0, 437, 436, 1, 0, 0, 0, 438, 441, 1,
|
|
2611
|
+
0, 0, 0, 439, 437, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 442, 1, 0, 0, 0, 441, 439, 1,
|
|
2612
|
+
0, 0, 0, 442, 443, 5, 2, 0, 0, 443, 71, 1, 0, 0, 0, 444, 445, 5, 1, 0, 0, 445, 446, 5, 13,
|
|
2613
|
+
0, 0, 446, 447, 5, 2, 0, 0, 447, 73, 1, 0, 0, 0, 448, 450, 5, 1, 0, 0, 449, 451, 7, 1, 0,
|
|
2614
|
+
0, 450, 449, 1, 0, 0, 0, 450, 451, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 453, 5, 2, 0,
|
|
2615
|
+
0, 453, 75, 1, 0, 0, 0, 454, 456, 5, 1, 0, 0, 455, 457, 5, 10, 0, 0, 456, 455, 1, 0, 0,
|
|
2616
|
+
0, 456, 457, 1, 0, 0, 0, 457, 458, 1, 0, 0, 0, 458, 459, 5, 2, 0, 0, 459, 77, 1, 0, 0, 0,
|
|
2617
|
+
460, 461, 5, 1, 0, 0, 461, 462, 5, 11, 0, 0, 462, 463, 5, 2, 0, 0, 463, 79, 1, 0, 0, 0,
|
|
2618
|
+
464, 466, 5, 1, 0, 0, 465, 467, 5, 12, 0, 0, 466, 465, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0,
|
|
2619
|
+
467, 468, 1, 0, 0, 0, 468, 469, 5, 2, 0, 0, 469, 81, 1, 0, 0, 0, 470, 474, 5, 3, 0, 0, 471,
|
|
2620
|
+
473, 5, 14, 0, 0, 472, 471, 1, 0, 0, 0, 473, 476, 1, 0, 0, 0, 474, 472, 1, 0, 0, 0, 474,
|
|
2621
|
+
475, 1, 0, 0, 0, 475, 477, 1, 0, 0, 0, 476, 474, 1, 0, 0, 0, 477, 478, 5, 4, 0, 0, 478,
|
|
2622
|
+
83, 1, 0, 0, 0, 479, 480, 5, 5, 0, 0, 480, 85, 1, 0, 0, 0, 481, 483, 5, 15, 0, 0, 482, 481,
|
|
2623
|
+
1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 482, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 87, 1,
|
|
2624
|
+
0, 0, 0, 78, 94, 98, 103, 110, 119, 127, 135, 143, 160, 175, 179, 182, 188, 191, 197,
|
|
2625
|
+
200, 206, 209, 215, 218, 224, 227, 233, 236, 243, 249, 252, 258, 261, 267, 270,
|
|
2626
|
+
276, 279, 285, 288, 294, 297, 303, 306, 312, 315, 321, 324, 333, 336, 340, 343,
|
|
2627
|
+
348, 352, 354, 359, 363, 365, 370, 374, 376, 378, 382, 386, 388, 392, 396, 398,
|
|
2628
|
+
402, 405, 410, 412, 416, 420, 422, 427, 433, 439, 450, 456, 466, 474, 484
|
|
2749
2629
|
];
|
|
2750
2630
|
static __ATN;
|
|
2751
2631
|
static get _ATN() {
|
|
@@ -3699,12 +3579,37 @@ export class MidModifiersContext extends antlr.ParserRuleContext {
|
|
|
3699
3579
|
}
|
|
3700
3580
|
}
|
|
3701
3581
|
export class ExecModifiersContext extends antlr.ParserRuleContext {
|
|
3582
|
+
constructor(parent, invokingState) {
|
|
3583
|
+
super(parent, invokingState);
|
|
3584
|
+
}
|
|
3585
|
+
execSlot(i) {
|
|
3586
|
+
if (i === undefined) {
|
|
3587
|
+
return this.getRuleContexts(ExecSlotContext);
|
|
3588
|
+
}
|
|
3589
|
+
return this.getRuleContext(i, ExecSlotContext);
|
|
3590
|
+
}
|
|
3591
|
+
get ruleIndex() {
|
|
3592
|
+
return plurnkParser.RULE_execModifiers;
|
|
3593
|
+
}
|
|
3594
|
+
accept(visitor) {
|
|
3595
|
+
if (visitor.visitExecModifiers) {
|
|
3596
|
+
return visitor.visitExecModifiers(this);
|
|
3597
|
+
}
|
|
3598
|
+
else {
|
|
3599
|
+
return visitor.visitChildren(this);
|
|
3600
|
+
}
|
|
3601
|
+
}
|
|
3602
|
+
}
|
|
3603
|
+
export class ExecSlotContext extends antlr.ParserRuleContext {
|
|
3702
3604
|
constructor(parent, invokingState) {
|
|
3703
3605
|
super(parent, invokingState);
|
|
3704
3606
|
}
|
|
3705
3607
|
identSignal() {
|
|
3706
3608
|
return this.getRuleContext(0, IdentSignalContext);
|
|
3707
3609
|
}
|
|
3610
|
+
tagSignal() {
|
|
3611
|
+
return this.getRuleContext(0, TagSignalContext);
|
|
3612
|
+
}
|
|
3708
3613
|
target() {
|
|
3709
3614
|
return this.getRuleContext(0, TargetContext);
|
|
3710
3615
|
}
|
|
@@ -3712,11 +3617,11 @@ export class ExecModifiersContext extends antlr.ParserRuleContext {
|
|
|
3712
3617
|
return this.getRuleContext(0, LineMarkerContext);
|
|
3713
3618
|
}
|
|
3714
3619
|
get ruleIndex() {
|
|
3715
|
-
return plurnkParser.
|
|
3620
|
+
return plurnkParser.RULE_execSlot;
|
|
3716
3621
|
}
|
|
3717
3622
|
accept(visitor) {
|
|
3718
|
-
if (visitor.
|
|
3719
|
-
return visitor.
|
|
3623
|
+
if (visitor.visitExecSlot) {
|
|
3624
|
+
return visitor.visitExecSlot(this);
|
|
3720
3625
|
}
|
|
3721
3626
|
else {
|
|
3722
3627
|
return visitor.visitChildren(this);
|