@plurnk/plurnk-grammar 0.74.53 → 0.74.56

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.
@@ -26,17 +26,19 @@ export class plurnkParser extends antlr.Parser {
26
26
  static OPEN_FOLD = 24;
27
27
  static OPEN_SEND = 25;
28
28
  static OPEN_EXEC = 26;
29
- static OPEN_KILL = 27;
30
- static OPEN_PLAN = 28;
31
- static OPEN_LOOK = 29;
32
- static OPEN_BUFF = 30;
33
- static WS = 31;
34
- static SLOTS_WS = 32;
35
- static ST_WS = 33;
36
- static SI_WS = 34;
37
- static SD_WS = 35;
38
- static ST_COMMA = 36;
39
- static B_COLON = 37;
29
+ static OPEN_WORK = 27;
30
+ static OPEN_FORK = 28;
31
+ static OPEN_KILL = 29;
32
+ static OPEN_PLAN = 30;
33
+ static OPEN_LOOK = 31;
34
+ static OPEN_BUFF = 32;
35
+ static WS = 33;
36
+ static SLOTS_WS = 34;
37
+ static ST_WS = 35;
38
+ static SI_WS = 36;
39
+ static SD_WS = 37;
40
+ static ST_COMMA = 38;
41
+ static B_COLON = 39;
40
42
  static RULE_document = 0;
41
43
  static RULE_log = 1;
42
44
  static RULE_turnStatement = 2;
@@ -56,47 +58,50 @@ export class plurnkParser extends antlr.Parser {
56
58
  static RULE_sendStatement = 16;
57
59
  static RULE_midSend = 17;
58
60
  static RULE_execStatement = 18;
59
- static RULE_killStatement = 19;
60
- static RULE_planStatement = 20;
61
- static RULE_lookStatement = 21;
62
- static RULE_buffStatement = 22;
63
- static RULE_tagOpModifiers = 23;
64
- static RULE_intOpModifiers = 24;
65
- static RULE_termModifiers = 25;
66
- static RULE_midModifiers = 26;
67
- static RULE_execModifiers = 27;
68
- static RULE_tagSignal = 28;
69
- static RULE_intSignal = 29;
70
- static RULE_midSignal = 30;
71
- static RULE_dispSignal = 31;
72
- static RULE_identSignal = 32;
73
- static RULE_target = 33;
74
- static RULE_lineMarker = 34;
75
- static RULE_body = 35;
61
+ static RULE_workStatement = 19;
62
+ static RULE_forkStatement = 20;
63
+ static RULE_killStatement = 21;
64
+ static RULE_planStatement = 22;
65
+ static RULE_lookStatement = 23;
66
+ static RULE_buffStatement = 24;
67
+ static RULE_tagOpModifiers = 25;
68
+ static RULE_intOpModifiers = 26;
69
+ static RULE_termModifiers = 27;
70
+ static RULE_midModifiers = 28;
71
+ static RULE_execModifiers = 29;
72
+ static RULE_tagSignal = 30;
73
+ static RULE_intSignal = 31;
74
+ static RULE_midSignal = 32;
75
+ static RULE_dispSignal = 33;
76
+ static RULE_identSignal = 34;
77
+ static RULE_target = 35;
78
+ static RULE_lineMarker = 36;
79
+ static RULE_body = 37;
76
80
  static literalNames = [
77
81
  null, null, null, null, null, null, null, null, null, null, null,
78
82
  null, null, null, null, null, null, null, null, null, null, null,
79
83
  null, null, null, null, null, null, null, null, null, null, null,
80
- null, null, null, "','", "':'"
84
+ null, null, null, null, null, "','", "':'"
81
85
  ];
82
86
  static symbolicNames = [
83
87
  null, "LBRACKET", "RBRACKET", "LPAREN", "RPAREN", "L_MARKER", "COLON",
84
88
  "COMMA", "INT", "DISPOSITION", "IDENT", "TAG", "TARGET_TEXT", "BODY_TEXT",
85
89
  "CLOSE_TAG", "TEXT", "OPEN_TURN", "CLOSE_TURN", "OPEN_FIND", "OPEN_READ",
86
90
  "OPEN_EDIT", "OPEN_COPY", "OPEN_MOVE", "OPEN_OPEN", "OPEN_FOLD",
87
- "OPEN_SEND", "OPEN_EXEC", "OPEN_KILL", "OPEN_PLAN", "OPEN_LOOK",
88
- "OPEN_BUFF", "WS", "SLOTS_WS", "ST_WS", "SI_WS", "SD_WS", "ST_COMMA",
89
- "B_COLON"
91
+ "OPEN_SEND", "OPEN_EXEC", "OPEN_WORK", "OPEN_FORK", "OPEN_KILL",
92
+ "OPEN_PLAN", "OPEN_LOOK", "OPEN_BUFF", "WS", "SLOTS_WS", "ST_WS",
93
+ "SI_WS", "SD_WS", "ST_COMMA", "B_COLON"
90
94
  ];
91
95
  static ruleNames = [
92
96
  "document", "log", "turnStatement", "turnContent", "statementSeq",
93
97
  "clientStatementSeq", "clientStatement", "statement", "midStatement",
94
98
  "findStatement", "readStatement", "editStatement", "copyStatement",
95
99
  "moveStatement", "openStatement", "foldStatement", "sendStatement",
96
- "midSend", "execStatement", "killStatement", "planStatement", "lookStatement",
97
- "buffStatement", "tagOpModifiers", "intOpModifiers", "termModifiers",
98
- "midModifiers", "execModifiers", "tagSignal", "intSignal", "midSignal",
99
- "dispSignal", "identSignal", "target", "lineMarker", "body",
100
+ "midSend", "execStatement", "workStatement", "forkStatement", "killStatement",
101
+ "planStatement", "lookStatement", "buffStatement", "tagOpModifiers",
102
+ "intOpModifiers", "termModifiers", "midModifiers", "execModifiers",
103
+ "tagSignal", "intSignal", "midSignal", "dispSignal", "identSignal",
104
+ "target", "lineMarker", "body",
100
105
  ];
101
106
  get grammarFileName() { return "plurnkParser.g4"; }
102
107
  get literalNames() { return plurnkParser.literalNames; }
@@ -116,9 +121,9 @@ export class plurnkParser extends antlr.Parser {
116
121
  try {
117
122
  this.enterOuterAlt(localContext, 1);
118
123
  {
119
- this.state = 72;
124
+ this.state = 76;
120
125
  this.turnContent();
121
- this.state = 73;
126
+ this.state = 77;
122
127
  this.match(plurnkParser.EOF);
123
128
  }
124
129
  }
@@ -143,21 +148,21 @@ export class plurnkParser extends antlr.Parser {
143
148
  try {
144
149
  this.enterOuterAlt(localContext, 1);
145
150
  {
146
- this.state = 76;
151
+ this.state = 80;
147
152
  this.errorHandler.sync(this);
148
153
  _la = this.tokenStream.LA(1);
149
154
  do {
150
155
  {
151
156
  {
152
- this.state = 75;
157
+ this.state = 79;
153
158
  this.turnStatement();
154
159
  }
155
160
  }
156
- this.state = 78;
161
+ this.state = 82;
157
162
  this.errorHandler.sync(this);
158
163
  _la = this.tokenStream.LA(1);
159
164
  } while (_la === 16);
160
- this.state = 80;
165
+ this.state = 84;
161
166
  this.match(plurnkParser.EOF);
162
167
  }
163
168
  }
@@ -182,22 +187,22 @@ export class plurnkParser extends antlr.Parser {
182
187
  try {
183
188
  this.enterOuterAlt(localContext, 1);
184
189
  {
185
- this.state = 82;
190
+ this.state = 86;
186
191
  this.match(plurnkParser.OPEN_TURN);
187
- this.state = 84;
192
+ this.state = 88;
188
193
  this.errorHandler.sync(this);
189
194
  _la = this.tokenStream.LA(1);
190
195
  if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 42) !== 0)) {
191
196
  {
192
- this.state = 83;
197
+ this.state = 87;
193
198
  this.tagOpModifiers();
194
199
  }
195
200
  }
196
- this.state = 86;
201
+ this.state = 90;
197
202
  this.match(plurnkParser.COLON);
198
- this.state = 87;
203
+ this.state = 91;
199
204
  this.turnContent();
200
- this.state = 88;
205
+ this.state = 92;
201
206
  this.match(plurnkParser.CLOSE_TURN);
202
207
  }
203
208
  }
@@ -223,29 +228,29 @@ export class plurnkParser extends antlr.Parser {
223
228
  let alternative;
224
229
  this.enterOuterAlt(localContext, 1);
225
230
  {
226
- this.state = 93;
231
+ this.state = 97;
227
232
  this.errorHandler.sync(this);
228
233
  _la = this.tokenStream.LA(1);
229
234
  while (_la === 15) {
230
235
  {
231
236
  {
232
- this.state = 90;
237
+ this.state = 94;
233
238
  this.match(plurnkParser.TEXT);
234
239
  }
235
240
  }
236
- this.state = 95;
241
+ this.state = 99;
237
242
  this.errorHandler.sync(this);
238
243
  _la = this.tokenStream.LA(1);
239
244
  }
240
- this.state = 96;
245
+ this.state = 100;
241
246
  this.planStatement();
242
- this.state = 101;
247
+ this.state = 105;
243
248
  this.errorHandler.sync(this);
244
249
  alternative = this.interpreter.adaptivePredict(this.tokenStream, 4, this.context);
245
250
  while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) {
246
251
  if (alternative === 1) {
247
252
  {
248
- this.state = 99;
253
+ this.state = 103;
249
254
  this.errorHandler.sync(this);
250
255
  switch (this.tokenStream.LA(1)) {
251
256
  case plurnkParser.OPEN_FIND:
@@ -257,15 +262,17 @@ export class plurnkParser extends antlr.Parser {
257
262
  case plurnkParser.OPEN_FOLD:
258
263
  case plurnkParser.OPEN_SEND:
259
264
  case plurnkParser.OPEN_EXEC:
265
+ case plurnkParser.OPEN_WORK:
266
+ case plurnkParser.OPEN_FORK:
260
267
  case plurnkParser.OPEN_KILL:
261
268
  {
262
- this.state = 97;
269
+ this.state = 101;
263
270
  this.midStatement();
264
271
  }
265
272
  break;
266
273
  case plurnkParser.TEXT:
267
274
  {
268
- this.state = 98;
275
+ this.state = 102;
269
276
  this.match(plurnkParser.TEXT);
270
277
  }
271
278
  break;
@@ -274,23 +281,23 @@ export class plurnkParser extends antlr.Parser {
274
281
  }
275
282
  }
276
283
  }
277
- this.state = 103;
284
+ this.state = 107;
278
285
  this.errorHandler.sync(this);
279
286
  alternative = this.interpreter.adaptivePredict(this.tokenStream, 4, this.context);
280
287
  }
281
- this.state = 104;
282
- this.sendStatement();
283
288
  this.state = 108;
289
+ this.sendStatement();
290
+ this.state = 112;
284
291
  this.errorHandler.sync(this);
285
292
  _la = this.tokenStream.LA(1);
286
293
  while (_la === 15) {
287
294
  {
288
295
  {
289
- this.state = 105;
296
+ this.state = 109;
290
297
  this.match(plurnkParser.TEXT);
291
298
  }
292
299
  }
293
- this.state = 110;
300
+ this.state = 114;
294
301
  this.errorHandler.sync(this);
295
302
  _la = this.tokenStream.LA(1);
296
303
  }
@@ -317,21 +324,21 @@ export class plurnkParser extends antlr.Parser {
317
324
  try {
318
325
  this.enterOuterAlt(localContext, 1);
319
326
  {
320
- this.state = 114;
327
+ this.state = 118;
321
328
  this.errorHandler.sync(this);
322
329
  _la = this.tokenStream.LA(1);
323
- while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 536608768) !== 0)) {
330
+ while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 2147221504) !== 0)) {
324
331
  {
325
332
  {
326
- this.state = 111;
333
+ this.state = 115;
327
334
  this.statement();
328
335
  }
329
336
  }
330
- this.state = 116;
337
+ this.state = 120;
331
338
  this.errorHandler.sync(this);
332
339
  _la = this.tokenStream.LA(1);
333
340
  }
334
- this.state = 117;
341
+ this.state = 121;
335
342
  this.match(plurnkParser.EOF);
336
343
  }
337
344
  }
@@ -356,21 +363,21 @@ export class plurnkParser extends antlr.Parser {
356
363
  try {
357
364
  this.enterOuterAlt(localContext, 1);
358
365
  {
359
- this.state = 122;
366
+ this.state = 126;
360
367
  this.errorHandler.sync(this);
361
368
  _la = this.tokenStream.LA(1);
362
- while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 2147221504) !== 0)) {
369
+ while (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 32767) !== 0)) {
363
370
  {
364
371
  {
365
- this.state = 119;
372
+ this.state = 123;
366
373
  this.clientStatement();
367
374
  }
368
375
  }
369
- this.state = 124;
376
+ this.state = 128;
370
377
  this.errorHandler.sync(this);
371
378
  _la = this.tokenStream.LA(1);
372
379
  }
373
- this.state = 125;
380
+ this.state = 129;
374
381
  this.match(plurnkParser.EOF);
375
382
  }
376
383
  }
@@ -392,7 +399,7 @@ export class plurnkParser extends antlr.Parser {
392
399
  let localContext = new ClientStatementContext(this.context, this.state);
393
400
  this.enterRule(localContext, 12, plurnkParser.RULE_clientStatement);
394
401
  try {
395
- this.state = 130;
402
+ this.state = 134;
396
403
  this.errorHandler.sync(this);
397
404
  switch (this.tokenStream.LA(1)) {
398
405
  case plurnkParser.OPEN_FIND:
@@ -404,25 +411,27 @@ export class plurnkParser extends antlr.Parser {
404
411
  case plurnkParser.OPEN_FOLD:
405
412
  case plurnkParser.OPEN_SEND:
406
413
  case plurnkParser.OPEN_EXEC:
414
+ case plurnkParser.OPEN_WORK:
415
+ case plurnkParser.OPEN_FORK:
407
416
  case plurnkParser.OPEN_KILL:
408
417
  case plurnkParser.OPEN_PLAN:
409
418
  this.enterOuterAlt(localContext, 1);
410
419
  {
411
- this.state = 127;
420
+ this.state = 131;
412
421
  this.statement();
413
422
  }
414
423
  break;
415
424
  case plurnkParser.OPEN_LOOK:
416
425
  this.enterOuterAlt(localContext, 2);
417
426
  {
418
- this.state = 128;
427
+ this.state = 132;
419
428
  this.lookStatement();
420
429
  }
421
430
  break;
422
431
  case plurnkParser.OPEN_BUFF:
423
432
  this.enterOuterAlt(localContext, 3);
424
433
  {
425
- this.state = 129;
434
+ this.state = 133;
426
435
  this.buffStatement();
427
436
  }
428
437
  break;
@@ -448,90 +457,104 @@ export class plurnkParser extends antlr.Parser {
448
457
  let localContext = new StatementContext(this.context, this.state);
449
458
  this.enterRule(localContext, 14, plurnkParser.RULE_statement);
450
459
  try {
451
- this.state = 144;
460
+ this.state = 150;
452
461
  this.errorHandler.sync(this);
453
462
  switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context)) {
454
463
  case 1:
455
464
  this.enterOuterAlt(localContext, 1);
456
465
  {
457
- this.state = 132;
466
+ this.state = 136;
458
467
  this.findStatement();
459
468
  }
460
469
  break;
461
470
  case 2:
462
471
  this.enterOuterAlt(localContext, 2);
463
472
  {
464
- this.state = 133;
473
+ this.state = 137;
465
474
  this.readStatement();
466
475
  }
467
476
  break;
468
477
  case 3:
469
478
  this.enterOuterAlt(localContext, 3);
470
479
  {
471
- this.state = 134;
480
+ this.state = 138;
472
481
  this.editStatement();
473
482
  }
474
483
  break;
475
484
  case 4:
476
485
  this.enterOuterAlt(localContext, 4);
477
486
  {
478
- this.state = 135;
487
+ this.state = 139;
479
488
  this.copyStatement();
480
489
  }
481
490
  break;
482
491
  case 5:
483
492
  this.enterOuterAlt(localContext, 5);
484
493
  {
485
- this.state = 136;
494
+ this.state = 140;
486
495
  this.moveStatement();
487
496
  }
488
497
  break;
489
498
  case 6:
490
499
  this.enterOuterAlt(localContext, 6);
491
500
  {
492
- this.state = 137;
501
+ this.state = 141;
493
502
  this.openStatement();
494
503
  }
495
504
  break;
496
505
  case 7:
497
506
  this.enterOuterAlt(localContext, 7);
498
507
  {
499
- this.state = 138;
508
+ this.state = 142;
500
509
  this.foldStatement();
501
510
  }
502
511
  break;
503
512
  case 8:
504
513
  this.enterOuterAlt(localContext, 8);
505
514
  {
506
- this.state = 139;
515
+ this.state = 143;
507
516
  this.sendStatement();
508
517
  }
509
518
  break;
510
519
  case 9:
511
520
  this.enterOuterAlt(localContext, 9);
512
521
  {
513
- this.state = 140;
522
+ this.state = 144;
514
523
  this.midSend();
515
524
  }
516
525
  break;
517
526
  case 10:
518
527
  this.enterOuterAlt(localContext, 10);
519
528
  {
520
- this.state = 141;
529
+ this.state = 145;
521
530
  this.execStatement();
522
531
  }
523
532
  break;
524
533
  case 11:
525
534
  this.enterOuterAlt(localContext, 11);
526
535
  {
527
- this.state = 142;
528
- this.killStatement();
536
+ this.state = 146;
537
+ this.workStatement();
529
538
  }
530
539
  break;
531
540
  case 12:
532
541
  this.enterOuterAlt(localContext, 12);
533
542
  {
534
- this.state = 143;
543
+ this.state = 147;
544
+ this.forkStatement();
545
+ }
546
+ break;
547
+ case 13:
548
+ this.enterOuterAlt(localContext, 13);
549
+ {
550
+ this.state = 148;
551
+ this.killStatement();
552
+ }
553
+ break;
554
+ case 14:
555
+ this.enterOuterAlt(localContext, 14);
556
+ {
557
+ this.state = 149;
535
558
  this.planStatement();
536
559
  }
537
560
  break;
@@ -555,76 +578,90 @@ export class plurnkParser extends antlr.Parser {
555
578
  let localContext = new MidStatementContext(this.context, this.state);
556
579
  this.enterRule(localContext, 16, plurnkParser.RULE_midStatement);
557
580
  try {
558
- this.state = 156;
581
+ this.state = 164;
559
582
  this.errorHandler.sync(this);
560
583
  switch (this.tokenStream.LA(1)) {
561
584
  case plurnkParser.OPEN_FIND:
562
585
  this.enterOuterAlt(localContext, 1);
563
586
  {
564
- this.state = 146;
587
+ this.state = 152;
565
588
  this.findStatement();
566
589
  }
567
590
  break;
568
591
  case plurnkParser.OPEN_READ:
569
592
  this.enterOuterAlt(localContext, 2);
570
593
  {
571
- this.state = 147;
594
+ this.state = 153;
572
595
  this.readStatement();
573
596
  }
574
597
  break;
575
598
  case plurnkParser.OPEN_EDIT:
576
599
  this.enterOuterAlt(localContext, 3);
577
600
  {
578
- this.state = 148;
601
+ this.state = 154;
579
602
  this.editStatement();
580
603
  }
581
604
  break;
582
605
  case plurnkParser.OPEN_COPY:
583
606
  this.enterOuterAlt(localContext, 4);
584
607
  {
585
- this.state = 149;
608
+ this.state = 155;
586
609
  this.copyStatement();
587
610
  }
588
611
  break;
589
612
  case plurnkParser.OPEN_MOVE:
590
613
  this.enterOuterAlt(localContext, 5);
591
614
  {
592
- this.state = 150;
615
+ this.state = 156;
593
616
  this.moveStatement();
594
617
  }
595
618
  break;
596
619
  case plurnkParser.OPEN_OPEN:
597
620
  this.enterOuterAlt(localContext, 6);
598
621
  {
599
- this.state = 151;
622
+ this.state = 157;
600
623
  this.openStatement();
601
624
  }
602
625
  break;
603
626
  case plurnkParser.OPEN_FOLD:
604
627
  this.enterOuterAlt(localContext, 7);
605
628
  {
606
- this.state = 152;
629
+ this.state = 158;
607
630
  this.foldStatement();
608
631
  }
609
632
  break;
610
633
  case plurnkParser.OPEN_SEND:
611
634
  this.enterOuterAlt(localContext, 8);
612
635
  {
613
- this.state = 153;
636
+ this.state = 159;
614
637
  this.midSend();
615
638
  }
616
639
  break;
617
640
  case plurnkParser.OPEN_EXEC:
618
641
  this.enterOuterAlt(localContext, 9);
619
642
  {
620
- this.state = 154;
643
+ this.state = 160;
621
644
  this.execStatement();
622
645
  }
623
646
  break;
624
- case plurnkParser.OPEN_KILL:
647
+ case plurnkParser.OPEN_WORK:
625
648
  this.enterOuterAlt(localContext, 10);
626
649
  {
627
- this.state = 155;
650
+ this.state = 161;
651
+ this.workStatement();
652
+ }
653
+ break;
654
+ case plurnkParser.OPEN_FORK:
655
+ this.enterOuterAlt(localContext, 11);
656
+ {
657
+ this.state = 162;
658
+ this.forkStatement();
659
+ }
660
+ break;
661
+ case plurnkParser.OPEN_KILL:
662
+ this.enterOuterAlt(localContext, 12);
663
+ {
664
+ this.state = 163;
628
665
  this.killStatement();
629
666
  }
630
667
  break;
@@ -653,36 +690,36 @@ export class plurnkParser extends antlr.Parser {
653
690
  try {
654
691
  this.enterOuterAlt(localContext, 1);
655
692
  {
656
- this.state = 158;
693
+ this.state = 166;
657
694
  this.match(plurnkParser.OPEN_FIND);
658
- this.state = 160;
695
+ this.state = 168;
659
696
  this.errorHandler.sync(this);
660
697
  _la = this.tokenStream.LA(1);
661
698
  if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 42) !== 0)) {
662
699
  {
663
- this.state = 159;
700
+ this.state = 167;
664
701
  this.tagOpModifiers();
665
702
  }
666
703
  }
667
- this.state = 163;
704
+ this.state = 171;
668
705
  this.errorHandler.sync(this);
669
706
  _la = this.tokenStream.LA(1);
670
707
  if (_la === 6) {
671
708
  {
672
- this.state = 162;
709
+ this.state = 170;
673
710
  this.match(plurnkParser.COLON);
674
711
  }
675
712
  }
676
- this.state = 166;
713
+ this.state = 174;
677
714
  this.errorHandler.sync(this);
678
715
  _la = this.tokenStream.LA(1);
679
716
  if (_la === 13) {
680
717
  {
681
- this.state = 165;
718
+ this.state = 173;
682
719
  this.body();
683
720
  }
684
721
  }
685
- this.state = 168;
722
+ this.state = 176;
686
723
  this.match(plurnkParser.CLOSE_TAG);
687
724
  }
688
725
  }
@@ -707,36 +744,36 @@ export class plurnkParser extends antlr.Parser {
707
744
  try {
708
745
  this.enterOuterAlt(localContext, 1);
709
746
  {
710
- this.state = 170;
747
+ this.state = 178;
711
748
  this.match(plurnkParser.OPEN_READ);
712
- this.state = 172;
749
+ this.state = 180;
713
750
  this.errorHandler.sync(this);
714
751
  _la = this.tokenStream.LA(1);
715
752
  if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 42) !== 0)) {
716
753
  {
717
- this.state = 171;
754
+ this.state = 179;
718
755
  this.tagOpModifiers();
719
756
  }
720
757
  }
721
- this.state = 175;
758
+ this.state = 183;
722
759
  this.errorHandler.sync(this);
723
760
  _la = this.tokenStream.LA(1);
724
761
  if (_la === 6) {
725
762
  {
726
- this.state = 174;
763
+ this.state = 182;
727
764
  this.match(plurnkParser.COLON);
728
765
  }
729
766
  }
730
- this.state = 178;
767
+ this.state = 186;
731
768
  this.errorHandler.sync(this);
732
769
  _la = this.tokenStream.LA(1);
733
770
  if (_la === 13) {
734
771
  {
735
- this.state = 177;
772
+ this.state = 185;
736
773
  this.body();
737
774
  }
738
775
  }
739
- this.state = 180;
776
+ this.state = 188;
740
777
  this.match(plurnkParser.CLOSE_TAG);
741
778
  }
742
779
  }
@@ -761,36 +798,36 @@ export class plurnkParser extends antlr.Parser {
761
798
  try {
762
799
  this.enterOuterAlt(localContext, 1);
763
800
  {
764
- this.state = 182;
801
+ this.state = 190;
765
802
  this.match(plurnkParser.OPEN_EDIT);
766
- this.state = 184;
803
+ this.state = 192;
767
804
  this.errorHandler.sync(this);
768
805
  _la = this.tokenStream.LA(1);
769
806
  if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 42) !== 0)) {
770
807
  {
771
- this.state = 183;
808
+ this.state = 191;
772
809
  this.tagOpModifiers();
773
810
  }
774
811
  }
775
- this.state = 187;
812
+ this.state = 195;
776
813
  this.errorHandler.sync(this);
777
814
  _la = this.tokenStream.LA(1);
778
815
  if (_la === 6) {
779
816
  {
780
- this.state = 186;
817
+ this.state = 194;
781
818
  this.match(plurnkParser.COLON);
782
819
  }
783
820
  }
784
- this.state = 190;
821
+ this.state = 198;
785
822
  this.errorHandler.sync(this);
786
823
  _la = this.tokenStream.LA(1);
787
824
  if (_la === 13) {
788
825
  {
789
- this.state = 189;
826
+ this.state = 197;
790
827
  this.body();
791
828
  }
792
829
  }
793
- this.state = 192;
830
+ this.state = 200;
794
831
  this.match(plurnkParser.CLOSE_TAG);
795
832
  }
796
833
  }
@@ -815,36 +852,36 @@ export class plurnkParser extends antlr.Parser {
815
852
  try {
816
853
  this.enterOuterAlt(localContext, 1);
817
854
  {
818
- this.state = 194;
855
+ this.state = 202;
819
856
  this.match(plurnkParser.OPEN_COPY);
820
- this.state = 196;
857
+ this.state = 204;
821
858
  this.errorHandler.sync(this);
822
859
  _la = this.tokenStream.LA(1);
823
860
  if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 42) !== 0)) {
824
861
  {
825
- this.state = 195;
862
+ this.state = 203;
826
863
  this.tagOpModifiers();
827
864
  }
828
865
  }
829
- this.state = 199;
866
+ this.state = 207;
830
867
  this.errorHandler.sync(this);
831
868
  _la = this.tokenStream.LA(1);
832
869
  if (_la === 6) {
833
870
  {
834
- this.state = 198;
871
+ this.state = 206;
835
872
  this.match(plurnkParser.COLON);
836
873
  }
837
874
  }
838
- this.state = 202;
875
+ this.state = 210;
839
876
  this.errorHandler.sync(this);
840
877
  _la = this.tokenStream.LA(1);
841
878
  if (_la === 13) {
842
879
  {
843
- this.state = 201;
880
+ this.state = 209;
844
881
  this.body();
845
882
  }
846
883
  }
847
- this.state = 204;
884
+ this.state = 212;
848
885
  this.match(plurnkParser.CLOSE_TAG);
849
886
  }
850
887
  }
@@ -869,36 +906,36 @@ export class plurnkParser extends antlr.Parser {
869
906
  try {
870
907
  this.enterOuterAlt(localContext, 1);
871
908
  {
872
- this.state = 206;
909
+ this.state = 214;
873
910
  this.match(plurnkParser.OPEN_MOVE);
874
- this.state = 208;
911
+ this.state = 216;
875
912
  this.errorHandler.sync(this);
876
913
  _la = this.tokenStream.LA(1);
877
914
  if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 42) !== 0)) {
878
915
  {
879
- this.state = 207;
916
+ this.state = 215;
880
917
  this.tagOpModifiers();
881
918
  }
882
919
  }
883
- this.state = 211;
920
+ this.state = 219;
884
921
  this.errorHandler.sync(this);
885
922
  _la = this.tokenStream.LA(1);
886
923
  if (_la === 6) {
887
924
  {
888
- this.state = 210;
925
+ this.state = 218;
889
926
  this.match(plurnkParser.COLON);
890
927
  }
891
928
  }
892
- this.state = 214;
929
+ this.state = 222;
893
930
  this.errorHandler.sync(this);
894
931
  _la = this.tokenStream.LA(1);
895
932
  if (_la === 13) {
896
933
  {
897
- this.state = 213;
934
+ this.state = 221;
898
935
  this.body();
899
936
  }
900
937
  }
901
- this.state = 216;
938
+ this.state = 224;
902
939
  this.match(plurnkParser.CLOSE_TAG);
903
940
  }
904
941
  }
@@ -923,36 +960,36 @@ export class plurnkParser extends antlr.Parser {
923
960
  try {
924
961
  this.enterOuterAlt(localContext, 1);
925
962
  {
926
- this.state = 218;
963
+ this.state = 226;
927
964
  this.match(plurnkParser.OPEN_OPEN);
928
- this.state = 220;
965
+ this.state = 228;
929
966
  this.errorHandler.sync(this);
930
967
  _la = this.tokenStream.LA(1);
931
968
  if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 42) !== 0)) {
932
969
  {
933
- this.state = 219;
970
+ this.state = 227;
934
971
  this.tagOpModifiers();
935
972
  }
936
973
  }
937
- this.state = 223;
974
+ this.state = 231;
938
975
  this.errorHandler.sync(this);
939
976
  _la = this.tokenStream.LA(1);
940
977
  if (_la === 6) {
941
978
  {
942
- this.state = 222;
979
+ this.state = 230;
943
980
  this.match(plurnkParser.COLON);
944
981
  }
945
982
  }
946
- this.state = 226;
983
+ this.state = 234;
947
984
  this.errorHandler.sync(this);
948
985
  _la = this.tokenStream.LA(1);
949
986
  if (_la === 13) {
950
987
  {
951
- this.state = 225;
988
+ this.state = 233;
952
989
  this.body();
953
990
  }
954
991
  }
955
- this.state = 228;
992
+ this.state = 236;
956
993
  this.match(plurnkParser.CLOSE_TAG);
957
994
  }
958
995
  }
@@ -977,36 +1014,36 @@ export class plurnkParser extends antlr.Parser {
977
1014
  try {
978
1015
  this.enterOuterAlt(localContext, 1);
979
1016
  {
980
- this.state = 230;
1017
+ this.state = 238;
981
1018
  this.match(plurnkParser.OPEN_FOLD);
982
- this.state = 232;
1019
+ this.state = 240;
983
1020
  this.errorHandler.sync(this);
984
1021
  _la = this.tokenStream.LA(1);
985
1022
  if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 42) !== 0)) {
986
1023
  {
987
- this.state = 231;
1024
+ this.state = 239;
988
1025
  this.tagOpModifiers();
989
1026
  }
990
1027
  }
991
- this.state = 235;
1028
+ this.state = 243;
992
1029
  this.errorHandler.sync(this);
993
1030
  _la = this.tokenStream.LA(1);
994
1031
  if (_la === 6) {
995
1032
  {
996
- this.state = 234;
1033
+ this.state = 242;
997
1034
  this.match(plurnkParser.COLON);
998
1035
  }
999
1036
  }
1000
- this.state = 238;
1037
+ this.state = 246;
1001
1038
  this.errorHandler.sync(this);
1002
1039
  _la = this.tokenStream.LA(1);
1003
1040
  if (_la === 13) {
1004
1041
  {
1005
- this.state = 237;
1042
+ this.state = 245;
1006
1043
  this.body();
1007
1044
  }
1008
1045
  }
1009
- this.state = 240;
1046
+ this.state = 248;
1010
1047
  this.match(plurnkParser.CLOSE_TAG);
1011
1048
  }
1012
1049
  }
@@ -1031,29 +1068,29 @@ export class plurnkParser extends antlr.Parser {
1031
1068
  try {
1032
1069
  this.enterOuterAlt(localContext, 1);
1033
1070
  {
1034
- this.state = 242;
1071
+ this.state = 250;
1035
1072
  this.match(plurnkParser.OPEN_SEND);
1036
- this.state = 243;
1073
+ this.state = 251;
1037
1074
  this.termModifiers();
1038
- this.state = 245;
1075
+ this.state = 253;
1039
1076
  this.errorHandler.sync(this);
1040
1077
  _la = this.tokenStream.LA(1);
1041
1078
  if (_la === 6) {
1042
1079
  {
1043
- this.state = 244;
1080
+ this.state = 252;
1044
1081
  this.match(plurnkParser.COLON);
1045
1082
  }
1046
1083
  }
1047
- this.state = 248;
1084
+ this.state = 256;
1048
1085
  this.errorHandler.sync(this);
1049
1086
  _la = this.tokenStream.LA(1);
1050
1087
  if (_la === 13) {
1051
1088
  {
1052
- this.state = 247;
1089
+ this.state = 255;
1053
1090
  this.body();
1054
1091
  }
1055
1092
  }
1056
- this.state = 250;
1093
+ this.state = 258;
1057
1094
  this.match(plurnkParser.CLOSE_TAG);
1058
1095
  }
1059
1096
  }
@@ -1078,36 +1115,36 @@ export class plurnkParser extends antlr.Parser {
1078
1115
  try {
1079
1116
  this.enterOuterAlt(localContext, 1);
1080
1117
  {
1081
- this.state = 252;
1118
+ this.state = 260;
1082
1119
  this.match(plurnkParser.OPEN_SEND);
1083
- this.state = 254;
1120
+ this.state = 262;
1084
1121
  this.errorHandler.sync(this);
1085
1122
  _la = this.tokenStream.LA(1);
1086
1123
  if (_la === 1 || _la === 3) {
1087
1124
  {
1088
- this.state = 253;
1125
+ this.state = 261;
1089
1126
  this.midModifiers();
1090
1127
  }
1091
1128
  }
1092
- this.state = 257;
1129
+ this.state = 265;
1093
1130
  this.errorHandler.sync(this);
1094
1131
  _la = this.tokenStream.LA(1);
1095
1132
  if (_la === 6) {
1096
1133
  {
1097
- this.state = 256;
1134
+ this.state = 264;
1098
1135
  this.match(plurnkParser.COLON);
1099
1136
  }
1100
1137
  }
1101
- this.state = 260;
1138
+ this.state = 268;
1102
1139
  this.errorHandler.sync(this);
1103
1140
  _la = this.tokenStream.LA(1);
1104
1141
  if (_la === 13) {
1105
1142
  {
1106
- this.state = 259;
1143
+ this.state = 267;
1107
1144
  this.body();
1108
1145
  }
1109
1146
  }
1110
- this.state = 262;
1147
+ this.state = 270;
1111
1148
  this.match(plurnkParser.CLOSE_TAG);
1112
1149
  }
1113
1150
  }
@@ -1132,36 +1169,144 @@ export class plurnkParser extends antlr.Parser {
1132
1169
  try {
1133
1170
  this.enterOuterAlt(localContext, 1);
1134
1171
  {
1135
- this.state = 264;
1172
+ this.state = 272;
1136
1173
  this.match(plurnkParser.OPEN_EXEC);
1137
- this.state = 266;
1174
+ this.state = 274;
1138
1175
  this.errorHandler.sync(this);
1139
1176
  _la = this.tokenStream.LA(1);
1140
1177
  if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 42) !== 0)) {
1141
1178
  {
1142
- this.state = 265;
1179
+ this.state = 273;
1143
1180
  this.execModifiers();
1144
1181
  }
1145
1182
  }
1146
- this.state = 269;
1183
+ this.state = 277;
1147
1184
  this.errorHandler.sync(this);
1148
1185
  _la = this.tokenStream.LA(1);
1149
1186
  if (_la === 6) {
1150
1187
  {
1151
- this.state = 268;
1188
+ this.state = 276;
1152
1189
  this.match(plurnkParser.COLON);
1153
1190
  }
1154
1191
  }
1155
- this.state = 272;
1192
+ this.state = 280;
1156
1193
  this.errorHandler.sync(this);
1157
1194
  _la = this.tokenStream.LA(1);
1158
1195
  if (_la === 13) {
1159
1196
  {
1160
- this.state = 271;
1197
+ this.state = 279;
1161
1198
  this.body();
1162
1199
  }
1163
1200
  }
1164
- this.state = 274;
1201
+ this.state = 282;
1202
+ this.match(plurnkParser.CLOSE_TAG);
1203
+ }
1204
+ }
1205
+ catch (re) {
1206
+ if (re instanceof antlr.RecognitionException) {
1207
+ this.errorHandler.reportError(this, re);
1208
+ this.errorHandler.recover(this, re);
1209
+ }
1210
+ else {
1211
+ throw re;
1212
+ }
1213
+ }
1214
+ finally {
1215
+ this.exitRule();
1216
+ }
1217
+ return localContext;
1218
+ }
1219
+ workStatement() {
1220
+ let localContext = new WorkStatementContext(this.context, this.state);
1221
+ this.enterRule(localContext, 38, plurnkParser.RULE_workStatement);
1222
+ let _la;
1223
+ try {
1224
+ this.enterOuterAlt(localContext, 1);
1225
+ {
1226
+ this.state = 284;
1227
+ this.match(plurnkParser.OPEN_WORK);
1228
+ this.state = 286;
1229
+ this.errorHandler.sync(this);
1230
+ _la = this.tokenStream.LA(1);
1231
+ if (_la === 3) {
1232
+ {
1233
+ this.state = 285;
1234
+ this.target();
1235
+ }
1236
+ }
1237
+ this.state = 289;
1238
+ this.errorHandler.sync(this);
1239
+ _la = this.tokenStream.LA(1);
1240
+ if (_la === 6) {
1241
+ {
1242
+ this.state = 288;
1243
+ this.match(plurnkParser.COLON);
1244
+ }
1245
+ }
1246
+ this.state = 292;
1247
+ this.errorHandler.sync(this);
1248
+ _la = this.tokenStream.LA(1);
1249
+ if (_la === 13) {
1250
+ {
1251
+ this.state = 291;
1252
+ this.body();
1253
+ }
1254
+ }
1255
+ this.state = 294;
1256
+ this.match(plurnkParser.CLOSE_TAG);
1257
+ }
1258
+ }
1259
+ catch (re) {
1260
+ if (re instanceof antlr.RecognitionException) {
1261
+ this.errorHandler.reportError(this, re);
1262
+ this.errorHandler.recover(this, re);
1263
+ }
1264
+ else {
1265
+ throw re;
1266
+ }
1267
+ }
1268
+ finally {
1269
+ this.exitRule();
1270
+ }
1271
+ return localContext;
1272
+ }
1273
+ forkStatement() {
1274
+ let localContext = new ForkStatementContext(this.context, this.state);
1275
+ this.enterRule(localContext, 40, plurnkParser.RULE_forkStatement);
1276
+ let _la;
1277
+ try {
1278
+ this.enterOuterAlt(localContext, 1);
1279
+ {
1280
+ this.state = 296;
1281
+ this.match(plurnkParser.OPEN_FORK);
1282
+ this.state = 298;
1283
+ this.errorHandler.sync(this);
1284
+ _la = this.tokenStream.LA(1);
1285
+ if (_la === 3) {
1286
+ {
1287
+ this.state = 297;
1288
+ this.target();
1289
+ }
1290
+ }
1291
+ this.state = 301;
1292
+ this.errorHandler.sync(this);
1293
+ _la = this.tokenStream.LA(1);
1294
+ if (_la === 6) {
1295
+ {
1296
+ this.state = 300;
1297
+ this.match(plurnkParser.COLON);
1298
+ }
1299
+ }
1300
+ this.state = 304;
1301
+ this.errorHandler.sync(this);
1302
+ _la = this.tokenStream.LA(1);
1303
+ if (_la === 13) {
1304
+ {
1305
+ this.state = 303;
1306
+ this.body();
1307
+ }
1308
+ }
1309
+ this.state = 306;
1165
1310
  this.match(plurnkParser.CLOSE_TAG);
1166
1311
  }
1167
1312
  }
@@ -1181,41 +1326,41 @@ export class plurnkParser extends antlr.Parser {
1181
1326
  }
1182
1327
  killStatement() {
1183
1328
  let localContext = new KillStatementContext(this.context, this.state);
1184
- this.enterRule(localContext, 38, plurnkParser.RULE_killStatement);
1329
+ this.enterRule(localContext, 42, plurnkParser.RULE_killStatement);
1185
1330
  let _la;
1186
1331
  try {
1187
1332
  this.enterOuterAlt(localContext, 1);
1188
1333
  {
1189
- this.state = 276;
1334
+ this.state = 308;
1190
1335
  this.match(plurnkParser.OPEN_KILL);
1191
- this.state = 278;
1336
+ this.state = 310;
1192
1337
  this.errorHandler.sync(this);
1193
1338
  _la = this.tokenStream.LA(1);
1194
1339
  if (_la === 1 || _la === 3) {
1195
1340
  {
1196
- this.state = 277;
1341
+ this.state = 309;
1197
1342
  this.intOpModifiers();
1198
1343
  }
1199
1344
  }
1200
- this.state = 281;
1345
+ this.state = 313;
1201
1346
  this.errorHandler.sync(this);
1202
1347
  _la = this.tokenStream.LA(1);
1203
1348
  if (_la === 6) {
1204
1349
  {
1205
- this.state = 280;
1350
+ this.state = 312;
1206
1351
  this.match(plurnkParser.COLON);
1207
1352
  }
1208
1353
  }
1209
- this.state = 284;
1354
+ this.state = 316;
1210
1355
  this.errorHandler.sync(this);
1211
1356
  _la = this.tokenStream.LA(1);
1212
1357
  if (_la === 13) {
1213
1358
  {
1214
- this.state = 283;
1359
+ this.state = 315;
1215
1360
  this.body();
1216
1361
  }
1217
1362
  }
1218
- this.state = 286;
1363
+ this.state = 318;
1219
1364
  this.match(plurnkParser.CLOSE_TAG);
1220
1365
  }
1221
1366
  }
@@ -1235,41 +1380,41 @@ export class plurnkParser extends antlr.Parser {
1235
1380
  }
1236
1381
  planStatement() {
1237
1382
  let localContext = new PlanStatementContext(this.context, this.state);
1238
- this.enterRule(localContext, 40, plurnkParser.RULE_planStatement);
1383
+ this.enterRule(localContext, 44, plurnkParser.RULE_planStatement);
1239
1384
  let _la;
1240
1385
  try {
1241
1386
  this.enterOuterAlt(localContext, 1);
1242
1387
  {
1243
- this.state = 288;
1388
+ this.state = 320;
1244
1389
  this.match(plurnkParser.OPEN_PLAN);
1245
- this.state = 290;
1390
+ this.state = 322;
1246
1391
  this.errorHandler.sync(this);
1247
1392
  _la = this.tokenStream.LA(1);
1248
1393
  if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 42) !== 0)) {
1249
1394
  {
1250
- this.state = 289;
1395
+ this.state = 321;
1251
1396
  this.tagOpModifiers();
1252
1397
  }
1253
1398
  }
1254
- this.state = 293;
1399
+ this.state = 325;
1255
1400
  this.errorHandler.sync(this);
1256
1401
  _la = this.tokenStream.LA(1);
1257
1402
  if (_la === 6) {
1258
1403
  {
1259
- this.state = 292;
1404
+ this.state = 324;
1260
1405
  this.match(plurnkParser.COLON);
1261
1406
  }
1262
1407
  }
1263
- this.state = 296;
1408
+ this.state = 328;
1264
1409
  this.errorHandler.sync(this);
1265
1410
  _la = this.tokenStream.LA(1);
1266
1411
  if (_la === 13) {
1267
1412
  {
1268
- this.state = 295;
1413
+ this.state = 327;
1269
1414
  this.body();
1270
1415
  }
1271
1416
  }
1272
- this.state = 298;
1417
+ this.state = 330;
1273
1418
  this.match(plurnkParser.CLOSE_TAG);
1274
1419
  }
1275
1420
  }
@@ -1289,41 +1434,41 @@ export class plurnkParser extends antlr.Parser {
1289
1434
  }
1290
1435
  lookStatement() {
1291
1436
  let localContext = new LookStatementContext(this.context, this.state);
1292
- this.enterRule(localContext, 42, plurnkParser.RULE_lookStatement);
1437
+ this.enterRule(localContext, 46, plurnkParser.RULE_lookStatement);
1293
1438
  let _la;
1294
1439
  try {
1295
1440
  this.enterOuterAlt(localContext, 1);
1296
1441
  {
1297
- this.state = 300;
1442
+ this.state = 332;
1298
1443
  this.match(plurnkParser.OPEN_LOOK);
1299
- this.state = 302;
1444
+ this.state = 334;
1300
1445
  this.errorHandler.sync(this);
1301
1446
  _la = this.tokenStream.LA(1);
1302
1447
  if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 42) !== 0)) {
1303
1448
  {
1304
- this.state = 301;
1449
+ this.state = 333;
1305
1450
  this.tagOpModifiers();
1306
1451
  }
1307
1452
  }
1308
- this.state = 305;
1453
+ this.state = 337;
1309
1454
  this.errorHandler.sync(this);
1310
1455
  _la = this.tokenStream.LA(1);
1311
1456
  if (_la === 6) {
1312
1457
  {
1313
- this.state = 304;
1458
+ this.state = 336;
1314
1459
  this.match(plurnkParser.COLON);
1315
1460
  }
1316
1461
  }
1317
- this.state = 308;
1462
+ this.state = 340;
1318
1463
  this.errorHandler.sync(this);
1319
1464
  _la = this.tokenStream.LA(1);
1320
1465
  if (_la === 13) {
1321
1466
  {
1322
- this.state = 307;
1467
+ this.state = 339;
1323
1468
  this.body();
1324
1469
  }
1325
1470
  }
1326
- this.state = 310;
1471
+ this.state = 342;
1327
1472
  this.match(plurnkParser.CLOSE_TAG);
1328
1473
  }
1329
1474
  }
@@ -1343,41 +1488,41 @@ export class plurnkParser extends antlr.Parser {
1343
1488
  }
1344
1489
  buffStatement() {
1345
1490
  let localContext = new BuffStatementContext(this.context, this.state);
1346
- this.enterRule(localContext, 44, plurnkParser.RULE_buffStatement);
1491
+ this.enterRule(localContext, 48, plurnkParser.RULE_buffStatement);
1347
1492
  let _la;
1348
1493
  try {
1349
1494
  this.enterOuterAlt(localContext, 1);
1350
1495
  {
1351
- this.state = 312;
1496
+ this.state = 344;
1352
1497
  this.match(plurnkParser.OPEN_BUFF);
1353
- this.state = 314;
1498
+ this.state = 346;
1354
1499
  this.errorHandler.sync(this);
1355
1500
  _la = this.tokenStream.LA(1);
1356
1501
  if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 42) !== 0)) {
1357
1502
  {
1358
- this.state = 313;
1503
+ this.state = 345;
1359
1504
  this.tagOpModifiers();
1360
1505
  }
1361
1506
  }
1362
- this.state = 317;
1507
+ this.state = 349;
1363
1508
  this.errorHandler.sync(this);
1364
1509
  _la = this.tokenStream.LA(1);
1365
1510
  if (_la === 6) {
1366
1511
  {
1367
- this.state = 316;
1512
+ this.state = 348;
1368
1513
  this.match(plurnkParser.COLON);
1369
1514
  }
1370
1515
  }
1371
- this.state = 320;
1516
+ this.state = 352;
1372
1517
  this.errorHandler.sync(this);
1373
1518
  _la = this.tokenStream.LA(1);
1374
1519
  if (_la === 13) {
1375
1520
  {
1376
- this.state = 319;
1521
+ this.state = 351;
1377
1522
  this.body();
1378
1523
  }
1379
1524
  }
1380
- this.state = 322;
1525
+ this.state = 354;
1381
1526
  this.match(plurnkParser.CLOSE_TAG);
1382
1527
  }
1383
1528
  }
@@ -1397,30 +1542,30 @@ export class plurnkParser extends antlr.Parser {
1397
1542
  }
1398
1543
  tagOpModifiers() {
1399
1544
  let localContext = new TagOpModifiersContext(this.context, this.state);
1400
- this.enterRule(localContext, 46, plurnkParser.RULE_tagOpModifiers);
1545
+ this.enterRule(localContext, 50, plurnkParser.RULE_tagOpModifiers);
1401
1546
  let _la;
1402
1547
  try {
1403
- this.state = 357;
1548
+ this.state = 389;
1404
1549
  this.errorHandler.sync(this);
1405
1550
  switch (this.tokenStream.LA(1)) {
1406
1551
  case plurnkParser.LBRACKET:
1407
1552
  this.enterOuterAlt(localContext, 1);
1408
1553
  {
1409
- this.state = 324;
1554
+ this.state = 356;
1410
1555
  this.tagSignal();
1411
- this.state = 333;
1556
+ this.state = 365;
1412
1557
  this.errorHandler.sync(this);
1413
1558
  switch (this.tokenStream.LA(1)) {
1414
1559
  case plurnkParser.LPAREN:
1415
1560
  {
1416
- this.state = 325;
1561
+ this.state = 357;
1417
1562
  this.target();
1418
- this.state = 327;
1563
+ this.state = 359;
1419
1564
  this.errorHandler.sync(this);
1420
1565
  _la = this.tokenStream.LA(1);
1421
1566
  if (_la === 5) {
1422
1567
  {
1423
- this.state = 326;
1568
+ this.state = 358;
1424
1569
  this.lineMarker();
1425
1570
  }
1426
1571
  }
@@ -1428,14 +1573,14 @@ export class plurnkParser extends antlr.Parser {
1428
1573
  break;
1429
1574
  case plurnkParser.L_MARKER:
1430
1575
  {
1431
- this.state = 329;
1576
+ this.state = 361;
1432
1577
  this.lineMarker();
1433
- this.state = 331;
1578
+ this.state = 363;
1434
1579
  this.errorHandler.sync(this);
1435
1580
  _la = this.tokenStream.LA(1);
1436
1581
  if (_la === 3) {
1437
1582
  {
1438
- this.state = 330;
1583
+ this.state = 362;
1439
1584
  this.target();
1440
1585
  }
1441
1586
  }
@@ -1453,21 +1598,21 @@ export class plurnkParser extends antlr.Parser {
1453
1598
  case plurnkParser.LPAREN:
1454
1599
  this.enterOuterAlt(localContext, 2);
1455
1600
  {
1456
- this.state = 335;
1601
+ this.state = 367;
1457
1602
  this.target();
1458
- this.state = 344;
1603
+ this.state = 376;
1459
1604
  this.errorHandler.sync(this);
1460
1605
  switch (this.tokenStream.LA(1)) {
1461
1606
  case plurnkParser.LBRACKET:
1462
1607
  {
1463
- this.state = 336;
1608
+ this.state = 368;
1464
1609
  this.tagSignal();
1465
- this.state = 338;
1610
+ this.state = 370;
1466
1611
  this.errorHandler.sync(this);
1467
1612
  _la = this.tokenStream.LA(1);
1468
1613
  if (_la === 5) {
1469
1614
  {
1470
- this.state = 337;
1615
+ this.state = 369;
1471
1616
  this.lineMarker();
1472
1617
  }
1473
1618
  }
@@ -1475,14 +1620,14 @@ export class plurnkParser extends antlr.Parser {
1475
1620
  break;
1476
1621
  case plurnkParser.L_MARKER:
1477
1622
  {
1478
- this.state = 340;
1623
+ this.state = 372;
1479
1624
  this.lineMarker();
1480
- this.state = 342;
1625
+ this.state = 374;
1481
1626
  this.errorHandler.sync(this);
1482
1627
  _la = this.tokenStream.LA(1);
1483
1628
  if (_la === 1) {
1484
1629
  {
1485
- this.state = 341;
1630
+ this.state = 373;
1486
1631
  this.tagSignal();
1487
1632
  }
1488
1633
  }
@@ -1500,21 +1645,21 @@ export class plurnkParser extends antlr.Parser {
1500
1645
  case plurnkParser.L_MARKER:
1501
1646
  this.enterOuterAlt(localContext, 3);
1502
1647
  {
1503
- this.state = 346;
1648
+ this.state = 378;
1504
1649
  this.lineMarker();
1505
- this.state = 355;
1650
+ this.state = 387;
1506
1651
  this.errorHandler.sync(this);
1507
1652
  switch (this.tokenStream.LA(1)) {
1508
1653
  case plurnkParser.LBRACKET:
1509
1654
  {
1510
- this.state = 347;
1655
+ this.state = 379;
1511
1656
  this.tagSignal();
1512
- this.state = 349;
1657
+ this.state = 381;
1513
1658
  this.errorHandler.sync(this);
1514
1659
  _la = this.tokenStream.LA(1);
1515
1660
  if (_la === 3) {
1516
1661
  {
1517
- this.state = 348;
1662
+ this.state = 380;
1518
1663
  this.target();
1519
1664
  }
1520
1665
  }
@@ -1522,14 +1667,14 @@ export class plurnkParser extends antlr.Parser {
1522
1667
  break;
1523
1668
  case plurnkParser.LPAREN:
1524
1669
  {
1525
- this.state = 351;
1670
+ this.state = 383;
1526
1671
  this.target();
1527
- this.state = 353;
1672
+ this.state = 385;
1528
1673
  this.errorHandler.sync(this);
1529
1674
  _la = this.tokenStream.LA(1);
1530
1675
  if (_la === 1) {
1531
1676
  {
1532
- this.state = 352;
1677
+ this.state = 384;
1533
1678
  this.tagSignal();
1534
1679
  }
1535
1680
  }
@@ -1564,23 +1709,23 @@ export class plurnkParser extends antlr.Parser {
1564
1709
  }
1565
1710
  intOpModifiers() {
1566
1711
  let localContext = new IntOpModifiersContext(this.context, this.state);
1567
- this.enterRule(localContext, 48, plurnkParser.RULE_intOpModifiers);
1712
+ this.enterRule(localContext, 52, plurnkParser.RULE_intOpModifiers);
1568
1713
  let _la;
1569
1714
  try {
1570
- this.state = 367;
1715
+ this.state = 399;
1571
1716
  this.errorHandler.sync(this);
1572
1717
  switch (this.tokenStream.LA(1)) {
1573
1718
  case plurnkParser.LBRACKET:
1574
1719
  this.enterOuterAlt(localContext, 1);
1575
1720
  {
1576
- this.state = 359;
1721
+ this.state = 391;
1577
1722
  this.intSignal();
1578
- this.state = 361;
1723
+ this.state = 393;
1579
1724
  this.errorHandler.sync(this);
1580
1725
  _la = this.tokenStream.LA(1);
1581
1726
  if (_la === 3) {
1582
1727
  {
1583
- this.state = 360;
1728
+ this.state = 392;
1584
1729
  this.target();
1585
1730
  }
1586
1731
  }
@@ -1589,14 +1734,14 @@ export class plurnkParser extends antlr.Parser {
1589
1734
  case plurnkParser.LPAREN:
1590
1735
  this.enterOuterAlt(localContext, 2);
1591
1736
  {
1592
- this.state = 363;
1737
+ this.state = 395;
1593
1738
  this.target();
1594
- this.state = 365;
1739
+ this.state = 397;
1595
1740
  this.errorHandler.sync(this);
1596
1741
  _la = this.tokenStream.LA(1);
1597
1742
  if (_la === 1) {
1598
1743
  {
1599
- this.state = 364;
1744
+ this.state = 396;
1600
1745
  this.intSignal();
1601
1746
  }
1602
1747
  }
@@ -1622,23 +1767,23 @@ export class plurnkParser extends antlr.Parser {
1622
1767
  }
1623
1768
  termModifiers() {
1624
1769
  let localContext = new TermModifiersContext(this.context, this.state);
1625
- this.enterRule(localContext, 50, plurnkParser.RULE_termModifiers);
1770
+ this.enterRule(localContext, 54, plurnkParser.RULE_termModifiers);
1626
1771
  let _la;
1627
1772
  try {
1628
- this.state = 376;
1773
+ this.state = 408;
1629
1774
  this.errorHandler.sync(this);
1630
1775
  switch (this.tokenStream.LA(1)) {
1631
1776
  case plurnkParser.LBRACKET:
1632
1777
  this.enterOuterAlt(localContext, 1);
1633
1778
  {
1634
- this.state = 369;
1779
+ this.state = 401;
1635
1780
  this.dispSignal();
1636
- this.state = 371;
1781
+ this.state = 403;
1637
1782
  this.errorHandler.sync(this);
1638
1783
  _la = this.tokenStream.LA(1);
1639
1784
  if (_la === 3) {
1640
1785
  {
1641
- this.state = 370;
1786
+ this.state = 402;
1642
1787
  this.target();
1643
1788
  }
1644
1789
  }
@@ -1647,9 +1792,9 @@ export class plurnkParser extends antlr.Parser {
1647
1792
  case plurnkParser.LPAREN:
1648
1793
  this.enterOuterAlt(localContext, 2);
1649
1794
  {
1650
- this.state = 373;
1795
+ this.state = 405;
1651
1796
  this.target();
1652
- this.state = 374;
1797
+ this.state = 406;
1653
1798
  this.dispSignal();
1654
1799
  }
1655
1800
  break;
@@ -1673,23 +1818,23 @@ export class plurnkParser extends antlr.Parser {
1673
1818
  }
1674
1819
  midModifiers() {
1675
1820
  let localContext = new MidModifiersContext(this.context, this.state);
1676
- this.enterRule(localContext, 52, plurnkParser.RULE_midModifiers);
1821
+ this.enterRule(localContext, 56, plurnkParser.RULE_midModifiers);
1677
1822
  let _la;
1678
1823
  try {
1679
- this.state = 386;
1824
+ this.state = 418;
1680
1825
  this.errorHandler.sync(this);
1681
1826
  switch (this.tokenStream.LA(1)) {
1682
1827
  case plurnkParser.LBRACKET:
1683
1828
  this.enterOuterAlt(localContext, 1);
1684
1829
  {
1685
- this.state = 378;
1830
+ this.state = 410;
1686
1831
  this.midSignal();
1687
- this.state = 380;
1832
+ this.state = 412;
1688
1833
  this.errorHandler.sync(this);
1689
1834
  _la = this.tokenStream.LA(1);
1690
1835
  if (_la === 3) {
1691
1836
  {
1692
- this.state = 379;
1837
+ this.state = 411;
1693
1838
  this.target();
1694
1839
  }
1695
1840
  }
@@ -1698,14 +1843,14 @@ export class plurnkParser extends antlr.Parser {
1698
1843
  case plurnkParser.LPAREN:
1699
1844
  this.enterOuterAlt(localContext, 2);
1700
1845
  {
1701
- this.state = 382;
1846
+ this.state = 414;
1702
1847
  this.target();
1703
- this.state = 384;
1848
+ this.state = 416;
1704
1849
  this.errorHandler.sync(this);
1705
1850
  _la = this.tokenStream.LA(1);
1706
1851
  if (_la === 1) {
1707
1852
  {
1708
- this.state = 383;
1853
+ this.state = 415;
1709
1854
  this.midSignal();
1710
1855
  }
1711
1856
  }
@@ -1731,30 +1876,30 @@ export class plurnkParser extends antlr.Parser {
1731
1876
  }
1732
1877
  execModifiers() {
1733
1878
  let localContext = new ExecModifiersContext(this.context, this.state);
1734
- this.enterRule(localContext, 54, plurnkParser.RULE_execModifiers);
1879
+ this.enterRule(localContext, 58, plurnkParser.RULE_execModifiers);
1735
1880
  let _la;
1736
1881
  try {
1737
- this.state = 421;
1882
+ this.state = 453;
1738
1883
  this.errorHandler.sync(this);
1739
1884
  switch (this.tokenStream.LA(1)) {
1740
1885
  case plurnkParser.LBRACKET:
1741
1886
  this.enterOuterAlt(localContext, 1);
1742
1887
  {
1743
- this.state = 388;
1888
+ this.state = 420;
1744
1889
  this.identSignal();
1745
- this.state = 397;
1890
+ this.state = 429;
1746
1891
  this.errorHandler.sync(this);
1747
1892
  switch (this.tokenStream.LA(1)) {
1748
1893
  case plurnkParser.LPAREN:
1749
1894
  {
1750
- this.state = 389;
1895
+ this.state = 421;
1751
1896
  this.target();
1752
- this.state = 391;
1897
+ this.state = 423;
1753
1898
  this.errorHandler.sync(this);
1754
1899
  _la = this.tokenStream.LA(1);
1755
1900
  if (_la === 5) {
1756
1901
  {
1757
- this.state = 390;
1902
+ this.state = 422;
1758
1903
  this.lineMarker();
1759
1904
  }
1760
1905
  }
@@ -1762,14 +1907,14 @@ export class plurnkParser extends antlr.Parser {
1762
1907
  break;
1763
1908
  case plurnkParser.L_MARKER:
1764
1909
  {
1765
- this.state = 393;
1910
+ this.state = 425;
1766
1911
  this.lineMarker();
1767
- this.state = 395;
1912
+ this.state = 427;
1768
1913
  this.errorHandler.sync(this);
1769
1914
  _la = this.tokenStream.LA(1);
1770
1915
  if (_la === 3) {
1771
1916
  {
1772
- this.state = 394;
1917
+ this.state = 426;
1773
1918
  this.target();
1774
1919
  }
1775
1920
  }
@@ -1787,21 +1932,21 @@ export class plurnkParser extends antlr.Parser {
1787
1932
  case plurnkParser.LPAREN:
1788
1933
  this.enterOuterAlt(localContext, 2);
1789
1934
  {
1790
- this.state = 399;
1935
+ this.state = 431;
1791
1936
  this.target();
1792
- this.state = 408;
1937
+ this.state = 440;
1793
1938
  this.errorHandler.sync(this);
1794
1939
  switch (this.tokenStream.LA(1)) {
1795
1940
  case plurnkParser.LBRACKET:
1796
1941
  {
1797
- this.state = 400;
1942
+ this.state = 432;
1798
1943
  this.identSignal();
1799
- this.state = 402;
1944
+ this.state = 434;
1800
1945
  this.errorHandler.sync(this);
1801
1946
  _la = this.tokenStream.LA(1);
1802
1947
  if (_la === 5) {
1803
1948
  {
1804
- this.state = 401;
1949
+ this.state = 433;
1805
1950
  this.lineMarker();
1806
1951
  }
1807
1952
  }
@@ -1809,14 +1954,14 @@ export class plurnkParser extends antlr.Parser {
1809
1954
  break;
1810
1955
  case plurnkParser.L_MARKER:
1811
1956
  {
1812
- this.state = 404;
1957
+ this.state = 436;
1813
1958
  this.lineMarker();
1814
- this.state = 406;
1959
+ this.state = 438;
1815
1960
  this.errorHandler.sync(this);
1816
1961
  _la = this.tokenStream.LA(1);
1817
1962
  if (_la === 1) {
1818
1963
  {
1819
- this.state = 405;
1964
+ this.state = 437;
1820
1965
  this.identSignal();
1821
1966
  }
1822
1967
  }
@@ -1834,21 +1979,21 @@ export class plurnkParser extends antlr.Parser {
1834
1979
  case plurnkParser.L_MARKER:
1835
1980
  this.enterOuterAlt(localContext, 3);
1836
1981
  {
1837
- this.state = 410;
1982
+ this.state = 442;
1838
1983
  this.lineMarker();
1839
- this.state = 419;
1984
+ this.state = 451;
1840
1985
  this.errorHandler.sync(this);
1841
1986
  switch (this.tokenStream.LA(1)) {
1842
1987
  case plurnkParser.LBRACKET:
1843
1988
  {
1844
- this.state = 411;
1989
+ this.state = 443;
1845
1990
  this.identSignal();
1846
- this.state = 413;
1991
+ this.state = 445;
1847
1992
  this.errorHandler.sync(this);
1848
1993
  _la = this.tokenStream.LA(1);
1849
1994
  if (_la === 3) {
1850
1995
  {
1851
- this.state = 412;
1996
+ this.state = 444;
1852
1997
  this.target();
1853
1998
  }
1854
1999
  }
@@ -1856,14 +2001,14 @@ export class plurnkParser extends antlr.Parser {
1856
2001
  break;
1857
2002
  case plurnkParser.LPAREN:
1858
2003
  {
1859
- this.state = 415;
2004
+ this.state = 447;
1860
2005
  this.target();
1861
- this.state = 417;
2006
+ this.state = 449;
1862
2007
  this.errorHandler.sync(this);
1863
2008
  _la = this.tokenStream.LA(1);
1864
2009
  if (_la === 1) {
1865
2010
  {
1866
- this.state = 416;
2011
+ this.state = 448;
1867
2012
  this.identSignal();
1868
2013
  }
1869
2014
  }
@@ -1898,20 +2043,20 @@ export class plurnkParser extends antlr.Parser {
1898
2043
  }
1899
2044
  tagSignal() {
1900
2045
  let localContext = new TagSignalContext(this.context, this.state);
1901
- this.enterRule(localContext, 56, plurnkParser.RULE_tagSignal);
2046
+ this.enterRule(localContext, 60, plurnkParser.RULE_tagSignal);
1902
2047
  let _la;
1903
2048
  try {
1904
2049
  this.enterOuterAlt(localContext, 1);
1905
2050
  {
1906
- this.state = 423;
2051
+ this.state = 455;
1907
2052
  this.match(plurnkParser.LBRACKET);
1908
- this.state = 427;
2053
+ this.state = 459;
1909
2054
  this.errorHandler.sync(this);
1910
2055
  _la = this.tokenStream.LA(1);
1911
2056
  while (_la === 7 || _la === 11) {
1912
2057
  {
1913
2058
  {
1914
- this.state = 424;
2059
+ this.state = 456;
1915
2060
  _la = this.tokenStream.LA(1);
1916
2061
  if (!(_la === 7 || _la === 11)) {
1917
2062
  this.errorHandler.recoverInline(this);
@@ -1922,11 +2067,11 @@ export class plurnkParser extends antlr.Parser {
1922
2067
  }
1923
2068
  }
1924
2069
  }
1925
- this.state = 429;
2070
+ this.state = 461;
1926
2071
  this.errorHandler.sync(this);
1927
2072
  _la = this.tokenStream.LA(1);
1928
2073
  }
1929
- this.state = 430;
2074
+ this.state = 462;
1930
2075
  this.match(plurnkParser.RBRACKET);
1931
2076
  }
1932
2077
  }
@@ -1946,19 +2091,19 @@ export class plurnkParser extends antlr.Parser {
1946
2091
  }
1947
2092
  intSignal() {
1948
2093
  let localContext = new IntSignalContext(this.context, this.state);
1949
- this.enterRule(localContext, 58, plurnkParser.RULE_intSignal);
2094
+ this.enterRule(localContext, 62, plurnkParser.RULE_intSignal);
1950
2095
  let _la;
1951
2096
  try {
1952
2097
  this.enterOuterAlt(localContext, 1);
1953
2098
  {
1954
- this.state = 432;
2099
+ this.state = 464;
1955
2100
  this.match(plurnkParser.LBRACKET);
1956
- this.state = 434;
2101
+ this.state = 466;
1957
2102
  this.errorHandler.sync(this);
1958
2103
  _la = this.tokenStream.LA(1);
1959
2104
  if (_la === 8 || _la === 9) {
1960
2105
  {
1961
- this.state = 433;
2106
+ this.state = 465;
1962
2107
  _la = this.tokenStream.LA(1);
1963
2108
  if (!(_la === 8 || _la === 9)) {
1964
2109
  this.errorHandler.recoverInline(this);
@@ -1969,7 +2114,7 @@ export class plurnkParser extends antlr.Parser {
1969
2114
  }
1970
2115
  }
1971
2116
  }
1972
- this.state = 436;
2117
+ this.state = 468;
1973
2118
  this.match(plurnkParser.RBRACKET);
1974
2119
  }
1975
2120
  }
@@ -1989,23 +2134,23 @@ export class plurnkParser extends antlr.Parser {
1989
2134
  }
1990
2135
  midSignal() {
1991
2136
  let localContext = new MidSignalContext(this.context, this.state);
1992
- this.enterRule(localContext, 60, plurnkParser.RULE_midSignal);
2137
+ this.enterRule(localContext, 64, plurnkParser.RULE_midSignal);
1993
2138
  let _la;
1994
2139
  try {
1995
2140
  this.enterOuterAlt(localContext, 1);
1996
2141
  {
1997
- this.state = 438;
2142
+ this.state = 470;
1998
2143
  this.match(plurnkParser.LBRACKET);
1999
- this.state = 440;
2144
+ this.state = 472;
2000
2145
  this.errorHandler.sync(this);
2001
2146
  _la = this.tokenStream.LA(1);
2002
2147
  if (_la === 8) {
2003
2148
  {
2004
- this.state = 439;
2149
+ this.state = 471;
2005
2150
  this.match(plurnkParser.INT);
2006
2151
  }
2007
2152
  }
2008
- this.state = 442;
2153
+ this.state = 474;
2009
2154
  this.match(plurnkParser.RBRACKET);
2010
2155
  }
2011
2156
  }
@@ -2025,15 +2170,15 @@ export class plurnkParser extends antlr.Parser {
2025
2170
  }
2026
2171
  dispSignal() {
2027
2172
  let localContext = new DispSignalContext(this.context, this.state);
2028
- this.enterRule(localContext, 62, plurnkParser.RULE_dispSignal);
2173
+ this.enterRule(localContext, 66, plurnkParser.RULE_dispSignal);
2029
2174
  try {
2030
2175
  this.enterOuterAlt(localContext, 1);
2031
2176
  {
2032
- this.state = 444;
2177
+ this.state = 476;
2033
2178
  this.match(plurnkParser.LBRACKET);
2034
- this.state = 445;
2179
+ this.state = 477;
2035
2180
  this.match(plurnkParser.DISPOSITION);
2036
- this.state = 446;
2181
+ this.state = 478;
2037
2182
  this.match(plurnkParser.RBRACKET);
2038
2183
  }
2039
2184
  }
@@ -2053,23 +2198,23 @@ export class plurnkParser extends antlr.Parser {
2053
2198
  }
2054
2199
  identSignal() {
2055
2200
  let localContext = new IdentSignalContext(this.context, this.state);
2056
- this.enterRule(localContext, 64, plurnkParser.RULE_identSignal);
2201
+ this.enterRule(localContext, 68, plurnkParser.RULE_identSignal);
2057
2202
  let _la;
2058
2203
  try {
2059
2204
  this.enterOuterAlt(localContext, 1);
2060
2205
  {
2061
- this.state = 448;
2206
+ this.state = 480;
2062
2207
  this.match(plurnkParser.LBRACKET);
2063
- this.state = 450;
2208
+ this.state = 482;
2064
2209
  this.errorHandler.sync(this);
2065
2210
  _la = this.tokenStream.LA(1);
2066
2211
  if (_la === 10) {
2067
2212
  {
2068
- this.state = 449;
2213
+ this.state = 481;
2069
2214
  this.match(plurnkParser.IDENT);
2070
2215
  }
2071
2216
  }
2072
- this.state = 452;
2217
+ this.state = 484;
2073
2218
  this.match(plurnkParser.RBRACKET);
2074
2219
  }
2075
2220
  }
@@ -2089,23 +2234,23 @@ export class plurnkParser extends antlr.Parser {
2089
2234
  }
2090
2235
  target() {
2091
2236
  let localContext = new TargetContext(this.context, this.state);
2092
- this.enterRule(localContext, 66, plurnkParser.RULE_target);
2237
+ this.enterRule(localContext, 70, plurnkParser.RULE_target);
2093
2238
  let _la;
2094
2239
  try {
2095
2240
  this.enterOuterAlt(localContext, 1);
2096
2241
  {
2097
- this.state = 454;
2242
+ this.state = 486;
2098
2243
  this.match(plurnkParser.LPAREN);
2099
- this.state = 456;
2244
+ this.state = 488;
2100
2245
  this.errorHandler.sync(this);
2101
2246
  _la = this.tokenStream.LA(1);
2102
2247
  if (_la === 12) {
2103
2248
  {
2104
- this.state = 455;
2249
+ this.state = 487;
2105
2250
  this.match(plurnkParser.TARGET_TEXT);
2106
2251
  }
2107
2252
  }
2108
- this.state = 458;
2253
+ this.state = 490;
2109
2254
  this.match(plurnkParser.RPAREN);
2110
2255
  }
2111
2256
  }
@@ -2125,11 +2270,11 @@ export class plurnkParser extends antlr.Parser {
2125
2270
  }
2126
2271
  lineMarker() {
2127
2272
  let localContext = new LineMarkerContext(this.context, this.state);
2128
- this.enterRule(localContext, 68, plurnkParser.RULE_lineMarker);
2273
+ this.enterRule(localContext, 72, plurnkParser.RULE_lineMarker);
2129
2274
  try {
2130
2275
  this.enterOuterAlt(localContext, 1);
2131
2276
  {
2132
- this.state = 460;
2277
+ this.state = 492;
2133
2278
  this.match(plurnkParser.L_MARKER);
2134
2279
  }
2135
2280
  }
@@ -2149,22 +2294,22 @@ export class plurnkParser extends antlr.Parser {
2149
2294
  }
2150
2295
  body() {
2151
2296
  let localContext = new BodyContext(this.context, this.state);
2152
- this.enterRule(localContext, 70, plurnkParser.RULE_body);
2297
+ this.enterRule(localContext, 74, plurnkParser.RULE_body);
2153
2298
  let _la;
2154
2299
  try {
2155
2300
  this.enterOuterAlt(localContext, 1);
2156
2301
  {
2157
- this.state = 463;
2302
+ this.state = 495;
2158
2303
  this.errorHandler.sync(this);
2159
2304
  _la = this.tokenStream.LA(1);
2160
2305
  do {
2161
2306
  {
2162
2307
  {
2163
- this.state = 462;
2308
+ this.state = 494;
2164
2309
  this.match(plurnkParser.BODY_TEXT);
2165
2310
  }
2166
2311
  }
2167
- this.state = 465;
2312
+ this.state = 497;
2168
2313
  this.errorHandler.sync(this);
2169
2314
  _la = this.tokenStream.LA(1);
2170
2315
  } while (_la === 13);
@@ -2185,190 +2330,203 @@ export class plurnkParser extends antlr.Parser {
2185
2330
  return localContext;
2186
2331
  }
2187
2332
  static _serializedATN = [
2188
- 4, 1, 37, 468, 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,
2333
+ 4, 1, 39, 500, 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,
2189
2334
  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,
2190
2335
  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,
2191
2336
  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,
2192
2337
  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,
2193
- 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 1, 0, 1, 0, 1, 0, 1, 1, 4, 1, 77, 8, 1, 11, 1, 12, 1, 78,
2194
- 1, 1, 1, 1, 1, 2, 1, 2, 3, 2, 85, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 3, 5, 3, 92, 8, 3, 10, 3, 12,
2195
- 3, 95, 9, 3, 1, 3, 1, 3, 1, 3, 5, 3, 100, 8, 3, 10, 3, 12, 3, 103, 9, 3, 1, 3, 1, 3, 5, 3, 107,
2196
- 8, 3, 10, 3, 12, 3, 110, 9, 3, 1, 4, 5, 4, 113, 8, 4, 10, 4, 12, 4, 116, 9, 4, 1, 4, 1, 4,
2197
- 1, 5, 5, 5, 121, 8, 5, 10, 5, 12, 5, 124, 9, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 3, 6, 131, 8,
2198
- 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, 3, 7, 145, 8, 7, 1,
2199
- 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 157, 8, 8, 1, 9, 1, 9, 3, 9, 161,
2200
- 8, 9, 1, 9, 3, 9, 164, 8, 9, 1, 9, 3, 9, 167, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 3, 10, 173, 8,
2201
- 10, 1, 10, 3, 10, 176, 8, 10, 1, 10, 3, 10, 179, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11,
2202
- 185, 8, 11, 1, 11, 3, 11, 188, 8, 11, 1, 11, 3, 11, 191, 8, 11, 1, 11, 1, 11, 1, 12, 1,
2203
- 12, 3, 12, 197, 8, 12, 1, 12, 3, 12, 200, 8, 12, 1, 12, 3, 12, 203, 8, 12, 1, 12, 1, 12,
2204
- 1, 13, 1, 13, 3, 13, 209, 8, 13, 1, 13, 3, 13, 212, 8, 13, 1, 13, 3, 13, 215, 8, 13, 1,
2205
- 13, 1, 13, 1, 14, 1, 14, 3, 14, 221, 8, 14, 1, 14, 3, 14, 224, 8, 14, 1, 14, 3, 14, 227,
2206
- 8, 14, 1, 14, 1, 14, 1, 15, 1, 15, 3, 15, 233, 8, 15, 1, 15, 3, 15, 236, 8, 15, 1, 15, 3,
2207
- 15, 239, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 3, 16, 246, 8, 16, 1, 16, 3, 16, 249,
2208
- 8, 16, 1, 16, 1, 16, 1, 17, 1, 17, 3, 17, 255, 8, 17, 1, 17, 3, 17, 258, 8, 17, 1, 17, 3,
2209
- 17, 261, 8, 17, 1, 17, 1, 17, 1, 18, 1, 18, 3, 18, 267, 8, 18, 1, 18, 3, 18, 270, 8, 18,
2210
- 1, 18, 3, 18, 273, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 3, 19, 279, 8, 19, 1, 19, 3, 19, 282,
2211
- 8, 19, 1, 19, 3, 19, 285, 8, 19, 1, 19, 1, 19, 1, 20, 1, 20, 3, 20, 291, 8, 20, 1, 20, 3,
2212
- 20, 294, 8, 20, 1, 20, 3, 20, 297, 8, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 303, 8, 21,
2213
- 1, 21, 3, 21, 306, 8, 21, 1, 21, 3, 21, 309, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 3, 22, 315,
2214
- 8, 22, 1, 22, 3, 22, 318, 8, 22, 1, 22, 3, 22, 321, 8, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1,
2215
- 23, 3, 23, 328, 8, 23, 1, 23, 1, 23, 3, 23, 332, 8, 23, 3, 23, 334, 8, 23, 1, 23, 1, 23,
2216
- 1, 23, 3, 23, 339, 8, 23, 1, 23, 1, 23, 3, 23, 343, 8, 23, 3, 23, 345, 8, 23, 1, 23, 1,
2217
- 23, 1, 23, 3, 23, 350, 8, 23, 1, 23, 1, 23, 3, 23, 354, 8, 23, 3, 23, 356, 8, 23, 3, 23,
2218
- 358, 8, 23, 1, 24, 1, 24, 3, 24, 362, 8, 24, 1, 24, 1, 24, 3, 24, 366, 8, 24, 3, 24, 368,
2219
- 8, 24, 1, 25, 1, 25, 3, 25, 372, 8, 25, 1, 25, 1, 25, 1, 25, 3, 25, 377, 8, 25, 1, 26, 1,
2220
- 26, 3, 26, 381, 8, 26, 1, 26, 1, 26, 3, 26, 385, 8, 26, 3, 26, 387, 8, 26, 1, 27, 1, 27,
2221
- 1, 27, 3, 27, 392, 8, 27, 1, 27, 1, 27, 3, 27, 396, 8, 27, 3, 27, 398, 8, 27, 1, 27, 1,
2222
- 27, 1, 27, 3, 27, 403, 8, 27, 1, 27, 1, 27, 3, 27, 407, 8, 27, 3, 27, 409, 8, 27, 1, 27,
2223
- 1, 27, 1, 27, 3, 27, 414, 8, 27, 1, 27, 1, 27, 3, 27, 418, 8, 27, 3, 27, 420, 8, 27, 3,
2224
- 27, 422, 8, 27, 1, 28, 1, 28, 5, 28, 426, 8, 28, 10, 28, 12, 28, 429, 9, 28, 1, 28, 1,
2225
- 28, 1, 29, 1, 29, 3, 29, 435, 8, 29, 1, 29, 1, 29, 1, 30, 1, 30, 3, 30, 441, 8, 30, 1, 30,
2226
- 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 451, 8, 32, 1, 32, 1, 32, 1, 33,
2227
- 1, 33, 3, 33, 457, 8, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 35, 4, 35, 464, 8, 35, 11, 35,
2228
- 12, 35, 465, 1, 35, 0, 0, 36, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30,
2229
- 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 0, 2,
2230
- 2, 0, 7, 7, 11, 11, 1, 0, 8, 9, 544, 0, 72, 1, 0, 0, 0, 2, 76, 1, 0, 0, 0, 4, 82, 1, 0, 0, 0,
2231
- 6, 93, 1, 0, 0, 0, 8, 114, 1, 0, 0, 0, 10, 122, 1, 0, 0, 0, 12, 130, 1, 0, 0, 0, 14, 144,
2232
- 1, 0, 0, 0, 16, 156, 1, 0, 0, 0, 18, 158, 1, 0, 0, 0, 20, 170, 1, 0, 0, 0, 22, 182, 1, 0,
2233
- 0, 0, 24, 194, 1, 0, 0, 0, 26, 206, 1, 0, 0, 0, 28, 218, 1, 0, 0, 0, 30, 230, 1, 0, 0, 0,
2234
- 32, 242, 1, 0, 0, 0, 34, 252, 1, 0, 0, 0, 36, 264, 1, 0, 0, 0, 38, 276, 1, 0, 0, 0, 40, 288,
2235
- 1, 0, 0, 0, 42, 300, 1, 0, 0, 0, 44, 312, 1, 0, 0, 0, 46, 357, 1, 0, 0, 0, 48, 367, 1, 0,
2236
- 0, 0, 50, 376, 1, 0, 0, 0, 52, 386, 1, 0, 0, 0, 54, 421, 1, 0, 0, 0, 56, 423, 1, 0, 0, 0,
2237
- 58, 432, 1, 0, 0, 0, 60, 438, 1, 0, 0, 0, 62, 444, 1, 0, 0, 0, 64, 448, 1, 0, 0, 0, 66, 454,
2238
- 1, 0, 0, 0, 68, 460, 1, 0, 0, 0, 70, 463, 1, 0, 0, 0, 72, 73, 3, 6, 3, 0, 73, 74, 5, 0, 0,
2239
- 1, 74, 1, 1, 0, 0, 0, 75, 77, 3, 4, 2, 0, 76, 75, 1, 0, 0, 0, 77, 78, 1, 0, 0, 0, 78, 76, 1,
2240
- 0, 0, 0, 78, 79, 1, 0, 0, 0, 79, 80, 1, 0, 0, 0, 80, 81, 5, 0, 0, 1, 81, 3, 1, 0, 0, 0, 82,
2241
- 84, 5, 16, 0, 0, 83, 85, 3, 46, 23, 0, 84, 83, 1, 0, 0, 0, 84, 85, 1, 0, 0, 0, 85, 86, 1,
2242
- 0, 0, 0, 86, 87, 5, 6, 0, 0, 87, 88, 3, 6, 3, 0, 88, 89, 5, 17, 0, 0, 89, 5, 1, 0, 0, 0, 90,
2243
- 92, 5, 15, 0, 0, 91, 90, 1, 0, 0, 0, 92, 95, 1, 0, 0, 0, 93, 91, 1, 0, 0, 0, 93, 94, 1, 0,
2244
- 0, 0, 94, 96, 1, 0, 0, 0, 95, 93, 1, 0, 0, 0, 96, 101, 3, 40, 20, 0, 97, 100, 3, 16, 8, 0,
2245
- 98, 100, 5, 15, 0, 0, 99, 97, 1, 0, 0, 0, 99, 98, 1, 0, 0, 0, 100, 103, 1, 0, 0, 0, 101,
2246
- 99, 1, 0, 0, 0, 101, 102, 1, 0, 0, 0, 102, 104, 1, 0, 0, 0, 103, 101, 1, 0, 0, 0, 104, 108,
2247
- 3, 32, 16, 0, 105, 107, 5, 15, 0, 0, 106, 105, 1, 0, 0, 0, 107, 110, 1, 0, 0, 0, 108, 106,
2248
- 1, 0, 0, 0, 108, 109, 1, 0, 0, 0, 109, 7, 1, 0, 0, 0, 110, 108, 1, 0, 0, 0, 111, 113, 3,
2249
- 14, 7, 0, 112, 111, 1, 0, 0, 0, 113, 116, 1, 0, 0, 0, 114, 112, 1, 0, 0, 0, 114, 115, 1,
2250
- 0, 0, 0, 115, 117, 1, 0, 0, 0, 116, 114, 1, 0, 0, 0, 117, 118, 5, 0, 0, 1, 118, 9, 1, 0,
2251
- 0, 0, 119, 121, 3, 12, 6, 0, 120, 119, 1, 0, 0, 0, 121, 124, 1, 0, 0, 0, 122, 120, 1, 0,
2252
- 0, 0, 122, 123, 1, 0, 0, 0, 123, 125, 1, 0, 0, 0, 124, 122, 1, 0, 0, 0, 125, 126, 5, 0,
2253
- 0, 1, 126, 11, 1, 0, 0, 0, 127, 131, 3, 14, 7, 0, 128, 131, 3, 42, 21, 0, 129, 131, 3,
2254
- 44, 22, 0, 130, 127, 1, 0, 0, 0, 130, 128, 1, 0, 0, 0, 130, 129, 1, 0, 0, 0, 131, 13, 1,
2255
- 0, 0, 0, 132, 145, 3, 18, 9, 0, 133, 145, 3, 20, 10, 0, 134, 145, 3, 22, 11, 0, 135, 145,
2256
- 3, 24, 12, 0, 136, 145, 3, 26, 13, 0, 137, 145, 3, 28, 14, 0, 138, 145, 3, 30, 15, 0,
2257
- 139, 145, 3, 32, 16, 0, 140, 145, 3, 34, 17, 0, 141, 145, 3, 36, 18, 0, 142, 145, 3,
2258
- 38, 19, 0, 143, 145, 3, 40, 20, 0, 144, 132, 1, 0, 0, 0, 144, 133, 1, 0, 0, 0, 144, 134,
2259
- 1, 0, 0, 0, 144, 135, 1, 0, 0, 0, 144, 136, 1, 0, 0, 0, 144, 137, 1, 0, 0, 0, 144, 138,
2260
- 1, 0, 0, 0, 144, 139, 1, 0, 0, 0, 144, 140, 1, 0, 0, 0, 144, 141, 1, 0, 0, 0, 144, 142,
2261
- 1, 0, 0, 0, 144, 143, 1, 0, 0, 0, 145, 15, 1, 0, 0, 0, 146, 157, 3, 18, 9, 0, 147, 157,
2262
- 3, 20, 10, 0, 148, 157, 3, 22, 11, 0, 149, 157, 3, 24, 12, 0, 150, 157, 3, 26, 13, 0,
2263
- 151, 157, 3, 28, 14, 0, 152, 157, 3, 30, 15, 0, 153, 157, 3, 34, 17, 0, 154, 157, 3,
2264
- 36, 18, 0, 155, 157, 3, 38, 19, 0, 156, 146, 1, 0, 0, 0, 156, 147, 1, 0, 0, 0, 156, 148,
2265
- 1, 0, 0, 0, 156, 149, 1, 0, 0, 0, 156, 150, 1, 0, 0, 0, 156, 151, 1, 0, 0, 0, 156, 152,
2266
- 1, 0, 0, 0, 156, 153, 1, 0, 0, 0, 156, 154, 1, 0, 0, 0, 156, 155, 1, 0, 0, 0, 157, 17, 1,
2267
- 0, 0, 0, 158, 160, 5, 18, 0, 0, 159, 161, 3, 46, 23, 0, 160, 159, 1, 0, 0, 0, 160, 161,
2268
- 1, 0, 0, 0, 161, 163, 1, 0, 0, 0, 162, 164, 5, 6, 0, 0, 163, 162, 1, 0, 0, 0, 163, 164,
2269
- 1, 0, 0, 0, 164, 166, 1, 0, 0, 0, 165, 167, 3, 70, 35, 0, 166, 165, 1, 0, 0, 0, 166, 167,
2270
- 1, 0, 0, 0, 167, 168, 1, 0, 0, 0, 168, 169, 5, 14, 0, 0, 169, 19, 1, 0, 0, 0, 170, 172,
2271
- 5, 19, 0, 0, 171, 173, 3, 46, 23, 0, 172, 171, 1, 0, 0, 0, 172, 173, 1, 0, 0, 0, 173, 175,
2272
- 1, 0, 0, 0, 174, 176, 5, 6, 0, 0, 175, 174, 1, 0, 0, 0, 175, 176, 1, 0, 0, 0, 176, 178,
2273
- 1, 0, 0, 0, 177, 179, 3, 70, 35, 0, 178, 177, 1, 0, 0, 0, 178, 179, 1, 0, 0, 0, 179, 180,
2274
- 1, 0, 0, 0, 180, 181, 5, 14, 0, 0, 181, 21, 1, 0, 0, 0, 182, 184, 5, 20, 0, 0, 183, 185,
2275
- 3, 46, 23, 0, 184, 183, 1, 0, 0, 0, 184, 185, 1, 0, 0, 0, 185, 187, 1, 0, 0, 0, 186, 188,
2276
- 5, 6, 0, 0, 187, 186, 1, 0, 0, 0, 187, 188, 1, 0, 0, 0, 188, 190, 1, 0, 0, 0, 189, 191,
2277
- 3, 70, 35, 0, 190, 189, 1, 0, 0, 0, 190, 191, 1, 0, 0, 0, 191, 192, 1, 0, 0, 0, 192, 193,
2278
- 5, 14, 0, 0, 193, 23, 1, 0, 0, 0, 194, 196, 5, 21, 0, 0, 195, 197, 3, 46, 23, 0, 196, 195,
2279
- 1, 0, 0, 0, 196, 197, 1, 0, 0, 0, 197, 199, 1, 0, 0, 0, 198, 200, 5, 6, 0, 0, 199, 198,
2280
- 1, 0, 0, 0, 199, 200, 1, 0, 0, 0, 200, 202, 1, 0, 0, 0, 201, 203, 3, 70, 35, 0, 202, 201,
2281
- 1, 0, 0, 0, 202, 203, 1, 0, 0, 0, 203, 204, 1, 0, 0, 0, 204, 205, 5, 14, 0, 0, 205, 25,
2282
- 1, 0, 0, 0, 206, 208, 5, 22, 0, 0, 207, 209, 3, 46, 23, 0, 208, 207, 1, 0, 0, 0, 208, 209,
2283
- 1, 0, 0, 0, 209, 211, 1, 0, 0, 0, 210, 212, 5, 6, 0, 0, 211, 210, 1, 0, 0, 0, 211, 212,
2284
- 1, 0, 0, 0, 212, 214, 1, 0, 0, 0, 213, 215, 3, 70, 35, 0, 214, 213, 1, 0, 0, 0, 214, 215,
2285
- 1, 0, 0, 0, 215, 216, 1, 0, 0, 0, 216, 217, 5, 14, 0, 0, 217, 27, 1, 0, 0, 0, 218, 220,
2286
- 5, 23, 0, 0, 219, 221, 3, 46, 23, 0, 220, 219, 1, 0, 0, 0, 220, 221, 1, 0, 0, 0, 221, 223,
2287
- 1, 0, 0, 0, 222, 224, 5, 6, 0, 0, 223, 222, 1, 0, 0, 0, 223, 224, 1, 0, 0, 0, 224, 226,
2288
- 1, 0, 0, 0, 225, 227, 3, 70, 35, 0, 226, 225, 1, 0, 0, 0, 226, 227, 1, 0, 0, 0, 227, 228,
2289
- 1, 0, 0, 0, 228, 229, 5, 14, 0, 0, 229, 29, 1, 0, 0, 0, 230, 232, 5, 24, 0, 0, 231, 233,
2290
- 3, 46, 23, 0, 232, 231, 1, 0, 0, 0, 232, 233, 1, 0, 0, 0, 233, 235, 1, 0, 0, 0, 234, 236,
2291
- 5, 6, 0, 0, 235, 234, 1, 0, 0, 0, 235, 236, 1, 0, 0, 0, 236, 238, 1, 0, 0, 0, 237, 239,
2292
- 3, 70, 35, 0, 238, 237, 1, 0, 0, 0, 238, 239, 1, 0, 0, 0, 239, 240, 1, 0, 0, 0, 240, 241,
2293
- 5, 14, 0, 0, 241, 31, 1, 0, 0, 0, 242, 243, 5, 25, 0, 0, 243, 245, 3, 50, 25, 0, 244, 246,
2294
- 5, 6, 0, 0, 245, 244, 1, 0, 0, 0, 245, 246, 1, 0, 0, 0, 246, 248, 1, 0, 0, 0, 247, 249,
2295
- 3, 70, 35, 0, 248, 247, 1, 0, 0, 0, 248, 249, 1, 0, 0, 0, 249, 250, 1, 0, 0, 0, 250, 251,
2296
- 5, 14, 0, 0, 251, 33, 1, 0, 0, 0, 252, 254, 5, 25, 0, 0, 253, 255, 3, 52, 26, 0, 254, 253,
2297
- 1, 0, 0, 0, 254, 255, 1, 0, 0, 0, 255, 257, 1, 0, 0, 0, 256, 258, 5, 6, 0, 0, 257, 256,
2298
- 1, 0, 0, 0, 257, 258, 1, 0, 0, 0, 258, 260, 1, 0, 0, 0, 259, 261, 3, 70, 35, 0, 260, 259,
2299
- 1, 0, 0, 0, 260, 261, 1, 0, 0, 0, 261, 262, 1, 0, 0, 0, 262, 263, 5, 14, 0, 0, 263, 35,
2300
- 1, 0, 0, 0, 264, 266, 5, 26, 0, 0, 265, 267, 3, 54, 27, 0, 266, 265, 1, 0, 0, 0, 266, 267,
2301
- 1, 0, 0, 0, 267, 269, 1, 0, 0, 0, 268, 270, 5, 6, 0, 0, 269, 268, 1, 0, 0, 0, 269, 270,
2302
- 1, 0, 0, 0, 270, 272, 1, 0, 0, 0, 271, 273, 3, 70, 35, 0, 272, 271, 1, 0, 0, 0, 272, 273,
2303
- 1, 0, 0, 0, 273, 274, 1, 0, 0, 0, 274, 275, 5, 14, 0, 0, 275, 37, 1, 0, 0, 0, 276, 278,
2304
- 5, 27, 0, 0, 277, 279, 3, 48, 24, 0, 278, 277, 1, 0, 0, 0, 278, 279, 1, 0, 0, 0, 279, 281,
2305
- 1, 0, 0, 0, 280, 282, 5, 6, 0, 0, 281, 280, 1, 0, 0, 0, 281, 282, 1, 0, 0, 0, 282, 284,
2306
- 1, 0, 0, 0, 283, 285, 3, 70, 35, 0, 284, 283, 1, 0, 0, 0, 284, 285, 1, 0, 0, 0, 285, 286,
2307
- 1, 0, 0, 0, 286, 287, 5, 14, 0, 0, 287, 39, 1, 0, 0, 0, 288, 290, 5, 28, 0, 0, 289, 291,
2308
- 3, 46, 23, 0, 290, 289, 1, 0, 0, 0, 290, 291, 1, 0, 0, 0, 291, 293, 1, 0, 0, 0, 292, 294,
2309
- 5, 6, 0, 0, 293, 292, 1, 0, 0, 0, 293, 294, 1, 0, 0, 0, 294, 296, 1, 0, 0, 0, 295, 297,
2310
- 3, 70, 35, 0, 296, 295, 1, 0, 0, 0, 296, 297, 1, 0, 0, 0, 297, 298, 1, 0, 0, 0, 298, 299,
2311
- 5, 14, 0, 0, 299, 41, 1, 0, 0, 0, 300, 302, 5, 29, 0, 0, 301, 303, 3, 46, 23, 0, 302, 301,
2312
- 1, 0, 0, 0, 302, 303, 1, 0, 0, 0, 303, 305, 1, 0, 0, 0, 304, 306, 5, 6, 0, 0, 305, 304,
2313
- 1, 0, 0, 0, 305, 306, 1, 0, 0, 0, 306, 308, 1, 0, 0, 0, 307, 309, 3, 70, 35, 0, 308, 307,
2314
- 1, 0, 0, 0, 308, 309, 1, 0, 0, 0, 309, 310, 1, 0, 0, 0, 310, 311, 5, 14, 0, 0, 311, 43,
2315
- 1, 0, 0, 0, 312, 314, 5, 30, 0, 0, 313, 315, 3, 46, 23, 0, 314, 313, 1, 0, 0, 0, 314, 315,
2316
- 1, 0, 0, 0, 315, 317, 1, 0, 0, 0, 316, 318, 5, 6, 0, 0, 317, 316, 1, 0, 0, 0, 317, 318,
2317
- 1, 0, 0, 0, 318, 320, 1, 0, 0, 0, 319, 321, 3, 70, 35, 0, 320, 319, 1, 0, 0, 0, 320, 321,
2318
- 1, 0, 0, 0, 321, 322, 1, 0, 0, 0, 322, 323, 5, 14, 0, 0, 323, 45, 1, 0, 0, 0, 324, 333,
2319
- 3, 56, 28, 0, 325, 327, 3, 66, 33, 0, 326, 328, 3, 68, 34, 0, 327, 326, 1, 0, 0, 0, 327,
2320
- 328, 1, 0, 0, 0, 328, 334, 1, 0, 0, 0, 329, 331, 3, 68, 34, 0, 330, 332, 3, 66, 33, 0,
2321
- 331, 330, 1, 0, 0, 0, 331, 332, 1, 0, 0, 0, 332, 334, 1, 0, 0, 0, 333, 325, 1, 0, 0, 0,
2322
- 333, 329, 1, 0, 0, 0, 333, 334, 1, 0, 0, 0, 334, 358, 1, 0, 0, 0, 335, 344, 3, 66, 33,
2323
- 0, 336, 338, 3, 56, 28, 0, 337, 339, 3, 68, 34, 0, 338, 337, 1, 0, 0, 0, 338, 339, 1,
2324
- 0, 0, 0, 339, 345, 1, 0, 0, 0, 340, 342, 3, 68, 34, 0, 341, 343, 3, 56, 28, 0, 342, 341,
2325
- 1, 0, 0, 0, 342, 343, 1, 0, 0, 0, 343, 345, 1, 0, 0, 0, 344, 336, 1, 0, 0, 0, 344, 340,
2326
- 1, 0, 0, 0, 344, 345, 1, 0, 0, 0, 345, 358, 1, 0, 0, 0, 346, 355, 3, 68, 34, 0, 347, 349,
2327
- 3, 56, 28, 0, 348, 350, 3, 66, 33, 0, 349, 348, 1, 0, 0, 0, 349, 350, 1, 0, 0, 0, 350,
2328
- 356, 1, 0, 0, 0, 351, 353, 3, 66, 33, 0, 352, 354, 3, 56, 28, 0, 353, 352, 1, 0, 0, 0,
2329
- 353, 354, 1, 0, 0, 0, 354, 356, 1, 0, 0, 0, 355, 347, 1, 0, 0, 0, 355, 351, 1, 0, 0, 0,
2330
- 355, 356, 1, 0, 0, 0, 356, 358, 1, 0, 0, 0, 357, 324, 1, 0, 0, 0, 357, 335, 1, 0, 0, 0,
2331
- 357, 346, 1, 0, 0, 0, 358, 47, 1, 0, 0, 0, 359, 361, 3, 58, 29, 0, 360, 362, 3, 66, 33,
2332
- 0, 361, 360, 1, 0, 0, 0, 361, 362, 1, 0, 0, 0, 362, 368, 1, 0, 0, 0, 363, 365, 3, 66, 33,
2333
- 0, 364, 366, 3, 58, 29, 0, 365, 364, 1, 0, 0, 0, 365, 366, 1, 0, 0, 0, 366, 368, 1, 0,
2334
- 0, 0, 367, 359, 1, 0, 0, 0, 367, 363, 1, 0, 0, 0, 368, 49, 1, 0, 0, 0, 369, 371, 3, 62,
2335
- 31, 0, 370, 372, 3, 66, 33, 0, 371, 370, 1, 0, 0, 0, 371, 372, 1, 0, 0, 0, 372, 377, 1,
2336
- 0, 0, 0, 373, 374, 3, 66, 33, 0, 374, 375, 3, 62, 31, 0, 375, 377, 1, 0, 0, 0, 376, 369,
2337
- 1, 0, 0, 0, 376, 373, 1, 0, 0, 0, 377, 51, 1, 0, 0, 0, 378, 380, 3, 60, 30, 0, 379, 381,
2338
- 3, 66, 33, 0, 380, 379, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 387, 1, 0, 0, 0, 382, 384,
2339
- 3, 66, 33, 0, 383, 385, 3, 60, 30, 0, 384, 383, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385,
2340
- 387, 1, 0, 0, 0, 386, 378, 1, 0, 0, 0, 386, 382, 1, 0, 0, 0, 387, 53, 1, 0, 0, 0, 388, 397,
2341
- 3, 64, 32, 0, 389, 391, 3, 66, 33, 0, 390, 392, 3, 68, 34, 0, 391, 390, 1, 0, 0, 0, 391,
2342
- 392, 1, 0, 0, 0, 392, 398, 1, 0, 0, 0, 393, 395, 3, 68, 34, 0, 394, 396, 3, 66, 33, 0,
2343
- 395, 394, 1, 0, 0, 0, 395, 396, 1, 0, 0, 0, 396, 398, 1, 0, 0, 0, 397, 389, 1, 0, 0, 0,
2344
- 397, 393, 1, 0, 0, 0, 397, 398, 1, 0, 0, 0, 398, 422, 1, 0, 0, 0, 399, 408, 3, 66, 33,
2345
- 0, 400, 402, 3, 64, 32, 0, 401, 403, 3, 68, 34, 0, 402, 401, 1, 0, 0, 0, 402, 403, 1,
2346
- 0, 0, 0, 403, 409, 1, 0, 0, 0, 404, 406, 3, 68, 34, 0, 405, 407, 3, 64, 32, 0, 406, 405,
2347
- 1, 0, 0, 0, 406, 407, 1, 0, 0, 0, 407, 409, 1, 0, 0, 0, 408, 400, 1, 0, 0, 0, 408, 404,
2348
- 1, 0, 0, 0, 408, 409, 1, 0, 0, 0, 409, 422, 1, 0, 0, 0, 410, 419, 3, 68, 34, 0, 411, 413,
2349
- 3, 64, 32, 0, 412, 414, 3, 66, 33, 0, 413, 412, 1, 0, 0, 0, 413, 414, 1, 0, 0, 0, 414,
2350
- 420, 1, 0, 0, 0, 415, 417, 3, 66, 33, 0, 416, 418, 3, 64, 32, 0, 417, 416, 1, 0, 0, 0,
2351
- 417, 418, 1, 0, 0, 0, 418, 420, 1, 0, 0, 0, 419, 411, 1, 0, 0, 0, 419, 415, 1, 0, 0, 0,
2352
- 419, 420, 1, 0, 0, 0, 420, 422, 1, 0, 0, 0, 421, 388, 1, 0, 0, 0, 421, 399, 1, 0, 0, 0,
2353
- 421, 410, 1, 0, 0, 0, 422, 55, 1, 0, 0, 0, 423, 427, 5, 1, 0, 0, 424, 426, 7, 0, 0, 0, 425,
2354
- 424, 1, 0, 0, 0, 426, 429, 1, 0, 0, 0, 427, 425, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428,
2355
- 430, 1, 0, 0, 0, 429, 427, 1, 0, 0, 0, 430, 431, 5, 2, 0, 0, 431, 57, 1, 0, 0, 0, 432, 434,
2356
- 5, 1, 0, 0, 433, 435, 7, 1, 0, 0, 434, 433, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 436,
2357
- 1, 0, 0, 0, 436, 437, 5, 2, 0, 0, 437, 59, 1, 0, 0, 0, 438, 440, 5, 1, 0, 0, 439, 441, 5,
2358
- 8, 0, 0, 440, 439, 1, 0, 0, 0, 440, 441, 1, 0, 0, 0, 441, 442, 1, 0, 0, 0, 442, 443, 5,
2359
- 2, 0, 0, 443, 61, 1, 0, 0, 0, 444, 445, 5, 1, 0, 0, 445, 446, 5, 9, 0, 0, 446, 447, 5, 2,
2360
- 0, 0, 447, 63, 1, 0, 0, 0, 448, 450, 5, 1, 0, 0, 449, 451, 5, 10, 0, 0, 450, 449, 1, 0,
2361
- 0, 0, 450, 451, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 453, 5, 2, 0, 0, 453, 65, 1, 0, 0,
2362
- 0, 454, 456, 5, 3, 0, 0, 455, 457, 5, 12, 0, 0, 456, 455, 1, 0, 0, 0, 456, 457, 1, 0, 0,
2363
- 0, 457, 458, 1, 0, 0, 0, 458, 459, 5, 4, 0, 0, 459, 67, 1, 0, 0, 0, 460, 461, 5, 5, 0, 0,
2364
- 461, 69, 1, 0, 0, 0, 462, 464, 5, 13, 0, 0, 463, 462, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0,
2365
- 465, 463, 1, 0, 0, 0, 465, 466, 1, 0, 0, 0, 466, 71, 1, 0, 0, 0, 86, 78, 84, 93, 99, 101,
2366
- 108, 114, 122, 130, 144, 156, 160, 163, 166, 172, 175, 178, 184, 187, 190, 196,
2367
- 199, 202, 208, 211, 214, 220, 223, 226, 232, 235, 238, 245, 248, 254, 257, 260,
2368
- 266, 269, 272, 278, 281, 284, 290, 293, 296, 302, 305, 308, 314, 317, 320, 327,
2369
- 331, 333, 338, 342, 344, 349, 353, 355, 357, 361, 365, 367, 371, 376, 380, 384,
2370
- 386, 391, 395, 397, 402, 406, 408, 413, 417, 419, 421, 427, 434, 440, 450, 456,
2371
- 465
2338
+ 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 1, 0, 1, 0, 1, 0, 1, 1, 4, 1,
2339
+ 81, 8, 1, 11, 1, 12, 1, 82, 1, 1, 1, 1, 1, 2, 1, 2, 3, 2, 89, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1,
2340
+ 3, 5, 3, 96, 8, 3, 10, 3, 12, 3, 99, 9, 3, 1, 3, 1, 3, 1, 3, 5, 3, 104, 8, 3, 10, 3, 12, 3,
2341
+ 107, 9, 3, 1, 3, 1, 3, 5, 3, 111, 8, 3, 10, 3, 12, 3, 114, 9, 3, 1, 4, 5, 4, 117, 8, 4, 10,
2342
+ 4, 12, 4, 120, 9, 4, 1, 4, 1, 4, 1, 5, 5, 5, 125, 8, 5, 10, 5, 12, 5, 128, 9, 5, 1, 5, 1, 5,
2343
+ 1, 6, 1, 6, 1, 6, 3, 6, 135, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7,
2344
+ 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 151, 8, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8,
2345
+ 1, 8, 1, 8, 1, 8, 3, 8, 165, 8, 8, 1, 9, 1, 9, 3, 9, 169, 8, 9, 1, 9, 3, 9, 172, 8, 9, 1, 9,
2346
+ 3, 9, 175, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 3, 10, 181, 8, 10, 1, 10, 3, 10, 184, 8, 10, 1,
2347
+ 10, 3, 10, 187, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 193, 8, 11, 1, 11, 3, 11, 196,
2348
+ 8, 11, 1, 11, 3, 11, 199, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 3, 12, 205, 8, 12, 1, 12, 3,
2349
+ 12, 208, 8, 12, 1, 12, 3, 12, 211, 8, 12, 1, 12, 1, 12, 1, 13, 1, 13, 3, 13, 217, 8, 13,
2350
+ 1, 13, 3, 13, 220, 8, 13, 1, 13, 3, 13, 223, 8, 13, 1, 13, 1, 13, 1, 14, 1, 14, 3, 14, 229,
2351
+ 8, 14, 1, 14, 3, 14, 232, 8, 14, 1, 14, 3, 14, 235, 8, 14, 1, 14, 1, 14, 1, 15, 1, 15, 3,
2352
+ 15, 241, 8, 15, 1, 15, 3, 15, 244, 8, 15, 1, 15, 3, 15, 247, 8, 15, 1, 15, 1, 15, 1, 16,
2353
+ 1, 16, 1, 16, 3, 16, 254, 8, 16, 1, 16, 3, 16, 257, 8, 16, 1, 16, 1, 16, 1, 17, 1, 17, 3,
2354
+ 17, 263, 8, 17, 1, 17, 3, 17, 266, 8, 17, 1, 17, 3, 17, 269, 8, 17, 1, 17, 1, 17, 1, 18,
2355
+ 1, 18, 3, 18, 275, 8, 18, 1, 18, 3, 18, 278, 8, 18, 1, 18, 3, 18, 281, 8, 18, 1, 18, 1,
2356
+ 18, 1, 19, 1, 19, 3, 19, 287, 8, 19, 1, 19, 3, 19, 290, 8, 19, 1, 19, 3, 19, 293, 8, 19,
2357
+ 1, 19, 1, 19, 1, 20, 1, 20, 3, 20, 299, 8, 20, 1, 20, 3, 20, 302, 8, 20, 1, 20, 3, 20, 305,
2358
+ 8, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 311, 8, 21, 1, 21, 3, 21, 314, 8, 21, 1, 21, 3,
2359
+ 21, 317, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 3, 22, 323, 8, 22, 1, 22, 3, 22, 326, 8, 22,
2360
+ 1, 22, 3, 22, 329, 8, 22, 1, 22, 1, 22, 1, 23, 1, 23, 3, 23, 335, 8, 23, 1, 23, 3, 23, 338,
2361
+ 8, 23, 1, 23, 3, 23, 341, 8, 23, 1, 23, 1, 23, 1, 24, 1, 24, 3, 24, 347, 8, 24, 1, 24, 3,
2362
+ 24, 350, 8, 24, 1, 24, 3, 24, 353, 8, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 3, 25, 360,
2363
+ 8, 25, 1, 25, 1, 25, 3, 25, 364, 8, 25, 3, 25, 366, 8, 25, 1, 25, 1, 25, 1, 25, 3, 25, 371,
2364
+ 8, 25, 1, 25, 1, 25, 3, 25, 375, 8, 25, 3, 25, 377, 8, 25, 1, 25, 1, 25, 1, 25, 3, 25, 382,
2365
+ 8, 25, 1, 25, 1, 25, 3, 25, 386, 8, 25, 3, 25, 388, 8, 25, 3, 25, 390, 8, 25, 1, 26, 1,
2366
+ 26, 3, 26, 394, 8, 26, 1, 26, 1, 26, 3, 26, 398, 8, 26, 3, 26, 400, 8, 26, 1, 27, 1, 27,
2367
+ 3, 27, 404, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 409, 8, 27, 1, 28, 1, 28, 3, 28, 413, 8,
2368
+ 28, 1, 28, 1, 28, 3, 28, 417, 8, 28, 3, 28, 419, 8, 28, 1, 29, 1, 29, 1, 29, 3, 29, 424,
2369
+ 8, 29, 1, 29, 1, 29, 3, 29, 428, 8, 29, 3, 29, 430, 8, 29, 1, 29, 1, 29, 1, 29, 3, 29, 435,
2370
+ 8, 29, 1, 29, 1, 29, 3, 29, 439, 8, 29, 3, 29, 441, 8, 29, 1, 29, 1, 29, 1, 29, 3, 29, 446,
2371
+ 8, 29, 1, 29, 1, 29, 3, 29, 450, 8, 29, 3, 29, 452, 8, 29, 3, 29, 454, 8, 29, 1, 30, 1,
2372
+ 30, 5, 30, 458, 8, 30, 10, 30, 12, 30, 461, 9, 30, 1, 30, 1, 30, 1, 31, 1, 31, 3, 31, 467,
2373
+ 8, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 473, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33,
2374
+ 1, 33, 1, 34, 1, 34, 3, 34, 483, 8, 34, 1, 34, 1, 34, 1, 35, 1, 35, 3, 35, 489, 8, 35, 1,
2375
+ 35, 1, 35, 1, 36, 1, 36, 1, 37, 4, 37, 496, 8, 37, 11, 37, 12, 37, 497, 1, 37, 0, 0, 38,
2376
+ 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44,
2377
+ 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 0, 2, 2, 0, 7, 7, 11, 11, 1,
2378
+ 0, 8, 9, 584, 0, 76, 1, 0, 0, 0, 2, 80, 1, 0, 0, 0, 4, 86, 1, 0, 0, 0, 6, 97, 1, 0, 0, 0, 8,
2379
+ 118, 1, 0, 0, 0, 10, 126, 1, 0, 0, 0, 12, 134, 1, 0, 0, 0, 14, 150, 1, 0, 0, 0, 16, 164,
2380
+ 1, 0, 0, 0, 18, 166, 1, 0, 0, 0, 20, 178, 1, 0, 0, 0, 22, 190, 1, 0, 0, 0, 24, 202, 1, 0,
2381
+ 0, 0, 26, 214, 1, 0, 0, 0, 28, 226, 1, 0, 0, 0, 30, 238, 1, 0, 0, 0, 32, 250, 1, 0, 0, 0,
2382
+ 34, 260, 1, 0, 0, 0, 36, 272, 1, 0, 0, 0, 38, 284, 1, 0, 0, 0, 40, 296, 1, 0, 0, 0, 42, 308,
2383
+ 1, 0, 0, 0, 44, 320, 1, 0, 0, 0, 46, 332, 1, 0, 0, 0, 48, 344, 1, 0, 0, 0, 50, 389, 1, 0,
2384
+ 0, 0, 52, 399, 1, 0, 0, 0, 54, 408, 1, 0, 0, 0, 56, 418, 1, 0, 0, 0, 58, 453, 1, 0, 0, 0,
2385
+ 60, 455, 1, 0, 0, 0, 62, 464, 1, 0, 0, 0, 64, 470, 1, 0, 0, 0, 66, 476, 1, 0, 0, 0, 68, 480,
2386
+ 1, 0, 0, 0, 70, 486, 1, 0, 0, 0, 72, 492, 1, 0, 0, 0, 74, 495, 1, 0, 0, 0, 76, 77, 3, 6, 3,
2387
+ 0, 77, 78, 5, 0, 0, 1, 78, 1, 1, 0, 0, 0, 79, 81, 3, 4, 2, 0, 80, 79, 1, 0, 0, 0, 81, 82, 1,
2388
+ 0, 0, 0, 82, 80, 1, 0, 0, 0, 82, 83, 1, 0, 0, 0, 83, 84, 1, 0, 0, 0, 84, 85, 5, 0, 0, 1, 85,
2389
+ 3, 1, 0, 0, 0, 86, 88, 5, 16, 0, 0, 87, 89, 3, 50, 25, 0, 88, 87, 1, 0, 0, 0, 88, 89, 1, 0,
2390
+ 0, 0, 89, 90, 1, 0, 0, 0, 90, 91, 5, 6, 0, 0, 91, 92, 3, 6, 3, 0, 92, 93, 5, 17, 0, 0, 93,
2391
+ 5, 1, 0, 0, 0, 94, 96, 5, 15, 0, 0, 95, 94, 1, 0, 0, 0, 96, 99, 1, 0, 0, 0, 97, 95, 1, 0, 0,
2392
+ 0, 97, 98, 1, 0, 0, 0, 98, 100, 1, 0, 0, 0, 99, 97, 1, 0, 0, 0, 100, 105, 3, 44, 22, 0, 101,
2393
+ 104, 3, 16, 8, 0, 102, 104, 5, 15, 0, 0, 103, 101, 1, 0, 0, 0, 103, 102, 1, 0, 0, 0, 104,
2394
+ 107, 1, 0, 0, 0, 105, 103, 1, 0, 0, 0, 105, 106, 1, 0, 0, 0, 106, 108, 1, 0, 0, 0, 107,
2395
+ 105, 1, 0, 0, 0, 108, 112, 3, 32, 16, 0, 109, 111, 5, 15, 0, 0, 110, 109, 1, 0, 0, 0, 111,
2396
+ 114, 1, 0, 0, 0, 112, 110, 1, 0, 0, 0, 112, 113, 1, 0, 0, 0, 113, 7, 1, 0, 0, 0, 114, 112,
2397
+ 1, 0, 0, 0, 115, 117, 3, 14, 7, 0, 116, 115, 1, 0, 0, 0, 117, 120, 1, 0, 0, 0, 118, 116,
2398
+ 1, 0, 0, 0, 118, 119, 1, 0, 0, 0, 119, 121, 1, 0, 0, 0, 120, 118, 1, 0, 0, 0, 121, 122,
2399
+ 5, 0, 0, 1, 122, 9, 1, 0, 0, 0, 123, 125, 3, 12, 6, 0, 124, 123, 1, 0, 0, 0, 125, 128, 1,
2400
+ 0, 0, 0, 126, 124, 1, 0, 0, 0, 126, 127, 1, 0, 0, 0, 127, 129, 1, 0, 0, 0, 128, 126, 1,
2401
+ 0, 0, 0, 129, 130, 5, 0, 0, 1, 130, 11, 1, 0, 0, 0, 131, 135, 3, 14, 7, 0, 132, 135, 3,
2402
+ 46, 23, 0, 133, 135, 3, 48, 24, 0, 134, 131, 1, 0, 0, 0, 134, 132, 1, 0, 0, 0, 134, 133,
2403
+ 1, 0, 0, 0, 135, 13, 1, 0, 0, 0, 136, 151, 3, 18, 9, 0, 137, 151, 3, 20, 10, 0, 138, 151,
2404
+ 3, 22, 11, 0, 139, 151, 3, 24, 12, 0, 140, 151, 3, 26, 13, 0, 141, 151, 3, 28, 14, 0,
2405
+ 142, 151, 3, 30, 15, 0, 143, 151, 3, 32, 16, 0, 144, 151, 3, 34, 17, 0, 145, 151, 3,
2406
+ 36, 18, 0, 146, 151, 3, 38, 19, 0, 147, 151, 3, 40, 20, 0, 148, 151, 3, 42, 21, 0, 149,
2407
+ 151, 3, 44, 22, 0, 150, 136, 1, 0, 0, 0, 150, 137, 1, 0, 0, 0, 150, 138, 1, 0, 0, 0, 150,
2408
+ 139, 1, 0, 0, 0, 150, 140, 1, 0, 0, 0, 150, 141, 1, 0, 0, 0, 150, 142, 1, 0, 0, 0, 150,
2409
+ 143, 1, 0, 0, 0, 150, 144, 1, 0, 0, 0, 150, 145, 1, 0, 0, 0, 150, 146, 1, 0, 0, 0, 150,
2410
+ 147, 1, 0, 0, 0, 150, 148, 1, 0, 0, 0, 150, 149, 1, 0, 0, 0, 151, 15, 1, 0, 0, 0, 152, 165,
2411
+ 3, 18, 9, 0, 153, 165, 3, 20, 10, 0, 154, 165, 3, 22, 11, 0, 155, 165, 3, 24, 12, 0, 156,
2412
+ 165, 3, 26, 13, 0, 157, 165, 3, 28, 14, 0, 158, 165, 3, 30, 15, 0, 159, 165, 3, 34, 17,
2413
+ 0, 160, 165, 3, 36, 18, 0, 161, 165, 3, 38, 19, 0, 162, 165, 3, 40, 20, 0, 163, 165,
2414
+ 3, 42, 21, 0, 164, 152, 1, 0, 0, 0, 164, 153, 1, 0, 0, 0, 164, 154, 1, 0, 0, 0, 164, 155,
2415
+ 1, 0, 0, 0, 164, 156, 1, 0, 0, 0, 164, 157, 1, 0, 0, 0, 164, 158, 1, 0, 0, 0, 164, 159,
2416
+ 1, 0, 0, 0, 164, 160, 1, 0, 0, 0, 164, 161, 1, 0, 0, 0, 164, 162, 1, 0, 0, 0, 164, 163,
2417
+ 1, 0, 0, 0, 165, 17, 1, 0, 0, 0, 166, 168, 5, 18, 0, 0, 167, 169, 3, 50, 25, 0, 168, 167,
2418
+ 1, 0, 0, 0, 168, 169, 1, 0, 0, 0, 169, 171, 1, 0, 0, 0, 170, 172, 5, 6, 0, 0, 171, 170,
2419
+ 1, 0, 0, 0, 171, 172, 1, 0, 0, 0, 172, 174, 1, 0, 0, 0, 173, 175, 3, 74, 37, 0, 174, 173,
2420
+ 1, 0, 0, 0, 174, 175, 1, 0, 0, 0, 175, 176, 1, 0, 0, 0, 176, 177, 5, 14, 0, 0, 177, 19,
2421
+ 1, 0, 0, 0, 178, 180, 5, 19, 0, 0, 179, 181, 3, 50, 25, 0, 180, 179, 1, 0, 0, 0, 180, 181,
2422
+ 1, 0, 0, 0, 181, 183, 1, 0, 0, 0, 182, 184, 5, 6, 0, 0, 183, 182, 1, 0, 0, 0, 183, 184,
2423
+ 1, 0, 0, 0, 184, 186, 1, 0, 0, 0, 185, 187, 3, 74, 37, 0, 186, 185, 1, 0, 0, 0, 186, 187,
2424
+ 1, 0, 0, 0, 187, 188, 1, 0, 0, 0, 188, 189, 5, 14, 0, 0, 189, 21, 1, 0, 0, 0, 190, 192,
2425
+ 5, 20, 0, 0, 191, 193, 3, 50, 25, 0, 192, 191, 1, 0, 0, 0, 192, 193, 1, 0, 0, 0, 193, 195,
2426
+ 1, 0, 0, 0, 194, 196, 5, 6, 0, 0, 195, 194, 1, 0, 0, 0, 195, 196, 1, 0, 0, 0, 196, 198,
2427
+ 1, 0, 0, 0, 197, 199, 3, 74, 37, 0, 198, 197, 1, 0, 0, 0, 198, 199, 1, 0, 0, 0, 199, 200,
2428
+ 1, 0, 0, 0, 200, 201, 5, 14, 0, 0, 201, 23, 1, 0, 0, 0, 202, 204, 5, 21, 0, 0, 203, 205,
2429
+ 3, 50, 25, 0, 204, 203, 1, 0, 0, 0, 204, 205, 1, 0, 0, 0, 205, 207, 1, 0, 0, 0, 206, 208,
2430
+ 5, 6, 0, 0, 207, 206, 1, 0, 0, 0, 207, 208, 1, 0, 0, 0, 208, 210, 1, 0, 0, 0, 209, 211,
2431
+ 3, 74, 37, 0, 210, 209, 1, 0, 0, 0, 210, 211, 1, 0, 0, 0, 211, 212, 1, 0, 0, 0, 212, 213,
2432
+ 5, 14, 0, 0, 213, 25, 1, 0, 0, 0, 214, 216, 5, 22, 0, 0, 215, 217, 3, 50, 25, 0, 216, 215,
2433
+ 1, 0, 0, 0, 216, 217, 1, 0, 0, 0, 217, 219, 1, 0, 0, 0, 218, 220, 5, 6, 0, 0, 219, 218,
2434
+ 1, 0, 0, 0, 219, 220, 1, 0, 0, 0, 220, 222, 1, 0, 0, 0, 221, 223, 3, 74, 37, 0, 222, 221,
2435
+ 1, 0, 0, 0, 222, 223, 1, 0, 0, 0, 223, 224, 1, 0, 0, 0, 224, 225, 5, 14, 0, 0, 225, 27,
2436
+ 1, 0, 0, 0, 226, 228, 5, 23, 0, 0, 227, 229, 3, 50, 25, 0, 228, 227, 1, 0, 0, 0, 228, 229,
2437
+ 1, 0, 0, 0, 229, 231, 1, 0, 0, 0, 230, 232, 5, 6, 0, 0, 231, 230, 1, 0, 0, 0, 231, 232,
2438
+ 1, 0, 0, 0, 232, 234, 1, 0, 0, 0, 233, 235, 3, 74, 37, 0, 234, 233, 1, 0, 0, 0, 234, 235,
2439
+ 1, 0, 0, 0, 235, 236, 1, 0, 0, 0, 236, 237, 5, 14, 0, 0, 237, 29, 1, 0, 0, 0, 238, 240,
2440
+ 5, 24, 0, 0, 239, 241, 3, 50, 25, 0, 240, 239, 1, 0, 0, 0, 240, 241, 1, 0, 0, 0, 241, 243,
2441
+ 1, 0, 0, 0, 242, 244, 5, 6, 0, 0, 243, 242, 1, 0, 0, 0, 243, 244, 1, 0, 0, 0, 244, 246,
2442
+ 1, 0, 0, 0, 245, 247, 3, 74, 37, 0, 246, 245, 1, 0, 0, 0, 246, 247, 1, 0, 0, 0, 247, 248,
2443
+ 1, 0, 0, 0, 248, 249, 5, 14, 0, 0, 249, 31, 1, 0, 0, 0, 250, 251, 5, 25, 0, 0, 251, 253,
2444
+ 3, 54, 27, 0, 252, 254, 5, 6, 0, 0, 253, 252, 1, 0, 0, 0, 253, 254, 1, 0, 0, 0, 254, 256,
2445
+ 1, 0, 0, 0, 255, 257, 3, 74, 37, 0, 256, 255, 1, 0, 0, 0, 256, 257, 1, 0, 0, 0, 257, 258,
2446
+ 1, 0, 0, 0, 258, 259, 5, 14, 0, 0, 259, 33, 1, 0, 0, 0, 260, 262, 5, 25, 0, 0, 261, 263,
2447
+ 3, 56, 28, 0, 262, 261, 1, 0, 0, 0, 262, 263, 1, 0, 0, 0, 263, 265, 1, 0, 0, 0, 264, 266,
2448
+ 5, 6, 0, 0, 265, 264, 1, 0, 0, 0, 265, 266, 1, 0, 0, 0, 266, 268, 1, 0, 0, 0, 267, 269,
2449
+ 3, 74, 37, 0, 268, 267, 1, 0, 0, 0, 268, 269, 1, 0, 0, 0, 269, 270, 1, 0, 0, 0, 270, 271,
2450
+ 5, 14, 0, 0, 271, 35, 1, 0, 0, 0, 272, 274, 5, 26, 0, 0, 273, 275, 3, 58, 29, 0, 274, 273,
2451
+ 1, 0, 0, 0, 274, 275, 1, 0, 0, 0, 275, 277, 1, 0, 0, 0, 276, 278, 5, 6, 0, 0, 277, 276,
2452
+ 1, 0, 0, 0, 277, 278, 1, 0, 0, 0, 278, 280, 1, 0, 0, 0, 279, 281, 3, 74, 37, 0, 280, 279,
2453
+ 1, 0, 0, 0, 280, 281, 1, 0, 0, 0, 281, 282, 1, 0, 0, 0, 282, 283, 5, 14, 0, 0, 283, 37,
2454
+ 1, 0, 0, 0, 284, 286, 5, 27, 0, 0, 285, 287, 3, 70, 35, 0, 286, 285, 1, 0, 0, 0, 286, 287,
2455
+ 1, 0, 0, 0, 287, 289, 1, 0, 0, 0, 288, 290, 5, 6, 0, 0, 289, 288, 1, 0, 0, 0, 289, 290,
2456
+ 1, 0, 0, 0, 290, 292, 1, 0, 0, 0, 291, 293, 3, 74, 37, 0, 292, 291, 1, 0, 0, 0, 292, 293,
2457
+ 1, 0, 0, 0, 293, 294, 1, 0, 0, 0, 294, 295, 5, 14, 0, 0, 295, 39, 1, 0, 0, 0, 296, 298,
2458
+ 5, 28, 0, 0, 297, 299, 3, 70, 35, 0, 298, 297, 1, 0, 0, 0, 298, 299, 1, 0, 0, 0, 299, 301,
2459
+ 1, 0, 0, 0, 300, 302, 5, 6, 0, 0, 301, 300, 1, 0, 0, 0, 301, 302, 1, 0, 0, 0, 302, 304,
2460
+ 1, 0, 0, 0, 303, 305, 3, 74, 37, 0, 304, 303, 1, 0, 0, 0, 304, 305, 1, 0, 0, 0, 305, 306,
2461
+ 1, 0, 0, 0, 306, 307, 5, 14, 0, 0, 307, 41, 1, 0, 0, 0, 308, 310, 5, 29, 0, 0, 309, 311,
2462
+ 3, 52, 26, 0, 310, 309, 1, 0, 0, 0, 310, 311, 1, 0, 0, 0, 311, 313, 1, 0, 0, 0, 312, 314,
2463
+ 5, 6, 0, 0, 313, 312, 1, 0, 0, 0, 313, 314, 1, 0, 0, 0, 314, 316, 1, 0, 0, 0, 315, 317,
2464
+ 3, 74, 37, 0, 316, 315, 1, 0, 0, 0, 316, 317, 1, 0, 0, 0, 317, 318, 1, 0, 0, 0, 318, 319,
2465
+ 5, 14, 0, 0, 319, 43, 1, 0, 0, 0, 320, 322, 5, 30, 0, 0, 321, 323, 3, 50, 25, 0, 322, 321,
2466
+ 1, 0, 0, 0, 322, 323, 1, 0, 0, 0, 323, 325, 1, 0, 0, 0, 324, 326, 5, 6, 0, 0, 325, 324,
2467
+ 1, 0, 0, 0, 325, 326, 1, 0, 0, 0, 326, 328, 1, 0, 0, 0, 327, 329, 3, 74, 37, 0, 328, 327,
2468
+ 1, 0, 0, 0, 328, 329, 1, 0, 0, 0, 329, 330, 1, 0, 0, 0, 330, 331, 5, 14, 0, 0, 331, 45,
2469
+ 1, 0, 0, 0, 332, 334, 5, 31, 0, 0, 333, 335, 3, 50, 25, 0, 334, 333, 1, 0, 0, 0, 334, 335,
2470
+ 1, 0, 0, 0, 335, 337, 1, 0, 0, 0, 336, 338, 5, 6, 0, 0, 337, 336, 1, 0, 0, 0, 337, 338,
2471
+ 1, 0, 0, 0, 338, 340, 1, 0, 0, 0, 339, 341, 3, 74, 37, 0, 340, 339, 1, 0, 0, 0, 340, 341,
2472
+ 1, 0, 0, 0, 341, 342, 1, 0, 0, 0, 342, 343, 5, 14, 0, 0, 343, 47, 1, 0, 0, 0, 344, 346,
2473
+ 5, 32, 0, 0, 345, 347, 3, 50, 25, 0, 346, 345, 1, 0, 0, 0, 346, 347, 1, 0, 0, 0, 347, 349,
2474
+ 1, 0, 0, 0, 348, 350, 5, 6, 0, 0, 349, 348, 1, 0, 0, 0, 349, 350, 1, 0, 0, 0, 350, 352,
2475
+ 1, 0, 0, 0, 351, 353, 3, 74, 37, 0, 352, 351, 1, 0, 0, 0, 352, 353, 1, 0, 0, 0, 353, 354,
2476
+ 1, 0, 0, 0, 354, 355, 5, 14, 0, 0, 355, 49, 1, 0, 0, 0, 356, 365, 3, 60, 30, 0, 357, 359,
2477
+ 3, 70, 35, 0, 358, 360, 3, 72, 36, 0, 359, 358, 1, 0, 0, 0, 359, 360, 1, 0, 0, 0, 360,
2478
+ 366, 1, 0, 0, 0, 361, 363, 3, 72, 36, 0, 362, 364, 3, 70, 35, 0, 363, 362, 1, 0, 0, 0,
2479
+ 363, 364, 1, 0, 0, 0, 364, 366, 1, 0, 0, 0, 365, 357, 1, 0, 0, 0, 365, 361, 1, 0, 0, 0,
2480
+ 365, 366, 1, 0, 0, 0, 366, 390, 1, 0, 0, 0, 367, 376, 3, 70, 35, 0, 368, 370, 3, 60, 30,
2481
+ 0, 369, 371, 3, 72, 36, 0, 370, 369, 1, 0, 0, 0, 370, 371, 1, 0, 0, 0, 371, 377, 1, 0,
2482
+ 0, 0, 372, 374, 3, 72, 36, 0, 373, 375, 3, 60, 30, 0, 374, 373, 1, 0, 0, 0, 374, 375,
2483
+ 1, 0, 0, 0, 375, 377, 1, 0, 0, 0, 376, 368, 1, 0, 0, 0, 376, 372, 1, 0, 0, 0, 376, 377,
2484
+ 1, 0, 0, 0, 377, 390, 1, 0, 0, 0, 378, 387, 3, 72, 36, 0, 379, 381, 3, 60, 30, 0, 380,
2485
+ 382, 3, 70, 35, 0, 381, 380, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 388, 1, 0, 0, 0, 383,
2486
+ 385, 3, 70, 35, 0, 384, 386, 3, 60, 30, 0, 385, 384, 1, 0, 0, 0, 385, 386, 1, 0, 0, 0,
2487
+ 386, 388, 1, 0, 0, 0, 387, 379, 1, 0, 0, 0, 387, 383, 1, 0, 0, 0, 387, 388, 1, 0, 0, 0,
2488
+ 388, 390, 1, 0, 0, 0, 389, 356, 1, 0, 0, 0, 389, 367, 1, 0, 0, 0, 389, 378, 1, 0, 0, 0,
2489
+ 390, 51, 1, 0, 0, 0, 391, 393, 3, 62, 31, 0, 392, 394, 3, 70, 35, 0, 393, 392, 1, 0, 0,
2490
+ 0, 393, 394, 1, 0, 0, 0, 394, 400, 1, 0, 0, 0, 395, 397, 3, 70, 35, 0, 396, 398, 3, 62,
2491
+ 31, 0, 397, 396, 1, 0, 0, 0, 397, 398, 1, 0, 0, 0, 398, 400, 1, 0, 0, 0, 399, 391, 1, 0,
2492
+ 0, 0, 399, 395, 1, 0, 0, 0, 400, 53, 1, 0, 0, 0, 401, 403, 3, 66, 33, 0, 402, 404, 3, 70,
2493
+ 35, 0, 403, 402, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 409, 1, 0, 0, 0, 405, 406, 3, 70,
2494
+ 35, 0, 406, 407, 3, 66, 33, 0, 407, 409, 1, 0, 0, 0, 408, 401, 1, 0, 0, 0, 408, 405, 1,
2495
+ 0, 0, 0, 409, 55, 1, 0, 0, 0, 410, 412, 3, 64, 32, 0, 411, 413, 3, 70, 35, 0, 412, 411,
2496
+ 1, 0, 0, 0, 412, 413, 1, 0, 0, 0, 413, 419, 1, 0, 0, 0, 414, 416, 3, 70, 35, 0, 415, 417,
2497
+ 3, 64, 32, 0, 416, 415, 1, 0, 0, 0, 416, 417, 1, 0, 0, 0, 417, 419, 1, 0, 0, 0, 418, 410,
2498
+ 1, 0, 0, 0, 418, 414, 1, 0, 0, 0, 419, 57, 1, 0, 0, 0, 420, 429, 3, 68, 34, 0, 421, 423,
2499
+ 3, 70, 35, 0, 422, 424, 3, 72, 36, 0, 423, 422, 1, 0, 0, 0, 423, 424, 1, 0, 0, 0, 424,
2500
+ 430, 1, 0, 0, 0, 425, 427, 3, 72, 36, 0, 426, 428, 3, 70, 35, 0, 427, 426, 1, 0, 0, 0,
2501
+ 427, 428, 1, 0, 0, 0, 428, 430, 1, 0, 0, 0, 429, 421, 1, 0, 0, 0, 429, 425, 1, 0, 0, 0,
2502
+ 429, 430, 1, 0, 0, 0, 430, 454, 1, 0, 0, 0, 431, 440, 3, 70, 35, 0, 432, 434, 3, 68, 34,
2503
+ 0, 433, 435, 3, 72, 36, 0, 434, 433, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 441, 1, 0,
2504
+ 0, 0, 436, 438, 3, 72, 36, 0, 437, 439, 3, 68, 34, 0, 438, 437, 1, 0, 0, 0, 438, 439,
2505
+ 1, 0, 0, 0, 439, 441, 1, 0, 0, 0, 440, 432, 1, 0, 0, 0, 440, 436, 1, 0, 0, 0, 440, 441,
2506
+ 1, 0, 0, 0, 441, 454, 1, 0, 0, 0, 442, 451, 3, 72, 36, 0, 443, 445, 3, 68, 34, 0, 444,
2507
+ 446, 3, 70, 35, 0, 445, 444, 1, 0, 0, 0, 445, 446, 1, 0, 0, 0, 446, 452, 1, 0, 0, 0, 447,
2508
+ 449, 3, 70, 35, 0, 448, 450, 3, 68, 34, 0, 449, 448, 1, 0, 0, 0, 449, 450, 1, 0, 0, 0,
2509
+ 450, 452, 1, 0, 0, 0, 451, 443, 1, 0, 0, 0, 451, 447, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0,
2510
+ 452, 454, 1, 0, 0, 0, 453, 420, 1, 0, 0, 0, 453, 431, 1, 0, 0, 0, 453, 442, 1, 0, 0, 0,
2511
+ 454, 59, 1, 0, 0, 0, 455, 459, 5, 1, 0, 0, 456, 458, 7, 0, 0, 0, 457, 456, 1, 0, 0, 0, 458,
2512
+ 461, 1, 0, 0, 0, 459, 457, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 462, 1, 0, 0, 0, 461,
2513
+ 459, 1, 0, 0, 0, 462, 463, 5, 2, 0, 0, 463, 61, 1, 0, 0, 0, 464, 466, 5, 1, 0, 0, 465, 467,
2514
+ 7, 1, 0, 0, 466, 465, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0, 467, 468, 1, 0, 0, 0, 468, 469,
2515
+ 5, 2, 0, 0, 469, 63, 1, 0, 0, 0, 470, 472, 5, 1, 0, 0, 471, 473, 5, 8, 0, 0, 472, 471, 1,
2516
+ 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 474, 475, 5, 2, 0, 0, 475, 65, 1, 0,
2517
+ 0, 0, 476, 477, 5, 1, 0, 0, 477, 478, 5, 9, 0, 0, 478, 479, 5, 2, 0, 0, 479, 67, 1, 0, 0,
2518
+ 0, 480, 482, 5, 1, 0, 0, 481, 483, 5, 10, 0, 0, 482, 481, 1, 0, 0, 0, 482, 483, 1, 0, 0,
2519
+ 0, 483, 484, 1, 0, 0, 0, 484, 485, 5, 2, 0, 0, 485, 69, 1, 0, 0, 0, 486, 488, 5, 3, 0, 0,
2520
+ 487, 489, 5, 12, 0, 0, 488, 487, 1, 0, 0, 0, 488, 489, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0,
2521
+ 490, 491, 5, 4, 0, 0, 491, 71, 1, 0, 0, 0, 492, 493, 5, 5, 0, 0, 493, 73, 1, 0, 0, 0, 494,
2522
+ 496, 5, 13, 0, 0, 495, 494, 1, 0, 0, 0, 496, 497, 1, 0, 0, 0, 497, 495, 1, 0, 0, 0, 497,
2523
+ 498, 1, 0, 0, 0, 498, 75, 1, 0, 0, 0, 92, 82, 88, 97, 103, 105, 112, 118, 126, 134, 150,
2524
+ 164, 168, 171, 174, 180, 183, 186, 192, 195, 198, 204, 207, 210, 216, 219, 222,
2525
+ 228, 231, 234, 240, 243, 246, 253, 256, 262, 265, 268, 274, 277, 280, 286, 289,
2526
+ 292, 298, 301, 304, 310, 313, 316, 322, 325, 328, 334, 337, 340, 346, 349, 352,
2527
+ 359, 363, 365, 370, 374, 376, 381, 385, 387, 389, 393, 397, 399, 403, 408, 412,
2528
+ 416, 418, 423, 427, 429, 434, 438, 440, 445, 449, 451, 453, 459, 466, 472, 482,
2529
+ 488, 497
2372
2530
  ];
2373
2531
  static __ATN;
2374
2532
  static get _ATN() {
@@ -2606,6 +2764,12 @@ export class StatementContext extends antlr.ParserRuleContext {
2606
2764
  execStatement() {
2607
2765
  return this.getRuleContext(0, ExecStatementContext);
2608
2766
  }
2767
+ workStatement() {
2768
+ return this.getRuleContext(0, WorkStatementContext);
2769
+ }
2770
+ forkStatement() {
2771
+ return this.getRuleContext(0, ForkStatementContext);
2772
+ }
2609
2773
  killStatement() {
2610
2774
  return this.getRuleContext(0, KillStatementContext);
2611
2775
  }
@@ -2655,6 +2819,12 @@ export class MidStatementContext extends antlr.ParserRuleContext {
2655
2819
  execStatement() {
2656
2820
  return this.getRuleContext(0, ExecStatementContext);
2657
2821
  }
2822
+ workStatement() {
2823
+ return this.getRuleContext(0, WorkStatementContext);
2824
+ }
2825
+ forkStatement() {
2826
+ return this.getRuleContext(0, ForkStatementContext);
2827
+ }
2658
2828
  killStatement() {
2659
2829
  return this.getRuleContext(0, KillStatementContext);
2660
2830
  }
@@ -2980,6 +3150,68 @@ export class ExecStatementContext extends antlr.ParserRuleContext {
2980
3150
  }
2981
3151
  }
2982
3152
  }
3153
+ export class WorkStatementContext extends antlr.ParserRuleContext {
3154
+ constructor(parent, invokingState) {
3155
+ super(parent, invokingState);
3156
+ }
3157
+ OPEN_WORK() {
3158
+ return this.getToken(plurnkParser.OPEN_WORK, 0);
3159
+ }
3160
+ CLOSE_TAG() {
3161
+ return this.getToken(plurnkParser.CLOSE_TAG, 0);
3162
+ }
3163
+ target() {
3164
+ return this.getRuleContext(0, TargetContext);
3165
+ }
3166
+ COLON() {
3167
+ return this.getToken(plurnkParser.COLON, 0);
3168
+ }
3169
+ body() {
3170
+ return this.getRuleContext(0, BodyContext);
3171
+ }
3172
+ get ruleIndex() {
3173
+ return plurnkParser.RULE_workStatement;
3174
+ }
3175
+ accept(visitor) {
3176
+ if (visitor.visitWorkStatement) {
3177
+ return visitor.visitWorkStatement(this);
3178
+ }
3179
+ else {
3180
+ return visitor.visitChildren(this);
3181
+ }
3182
+ }
3183
+ }
3184
+ export class ForkStatementContext extends antlr.ParserRuleContext {
3185
+ constructor(parent, invokingState) {
3186
+ super(parent, invokingState);
3187
+ }
3188
+ OPEN_FORK() {
3189
+ return this.getToken(plurnkParser.OPEN_FORK, 0);
3190
+ }
3191
+ CLOSE_TAG() {
3192
+ return this.getToken(plurnkParser.CLOSE_TAG, 0);
3193
+ }
3194
+ target() {
3195
+ return this.getRuleContext(0, TargetContext);
3196
+ }
3197
+ COLON() {
3198
+ return this.getToken(plurnkParser.COLON, 0);
3199
+ }
3200
+ body() {
3201
+ return this.getRuleContext(0, BodyContext);
3202
+ }
3203
+ get ruleIndex() {
3204
+ return plurnkParser.RULE_forkStatement;
3205
+ }
3206
+ accept(visitor) {
3207
+ if (visitor.visitForkStatement) {
3208
+ return visitor.visitForkStatement(this);
3209
+ }
3210
+ else {
3211
+ return visitor.visitChildren(this);
3212
+ }
3213
+ }
3214
+ }
2983
3215
  export class KillStatementContext extends antlr.ParserRuleContext {
2984
3216
  constructor(parent, invokingState) {
2985
3217
  super(parent, invokingState);