@plurnk/plurnk-parser 1.18.0 → 1.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -2
- package/SPEC.md +2 -10
- package/dist/AstBuilder.d.ts +5 -1
- package/dist/AstBuilder.d.ts.map +1 -1
- package/dist/AstBuilder.js +74 -44
- package/dist/AstBuilder.js.map +1 -1
- package/dist/HeadingTokens.d.ts +6 -0
- package/dist/HeadingTokens.d.ts.map +1 -0
- package/dist/HeadingTokens.js +60 -0
- package/dist/HeadingTokens.js.map +1 -0
- package/dist/NativeToolCalls.d.ts +6 -0
- package/dist/NativeToolCalls.d.ts.map +1 -0
- package/dist/NativeToolCalls.js +153 -0
- package/dist/NativeToolCalls.js.map +1 -0
- package/dist/PlurnkErrorStrategy.d.ts.map +1 -1
- package/dist/PlurnkErrorStrategy.js +10 -33
- package/dist/PlurnkErrorStrategy.js.map +1 -1
- package/dist/PlurnkParser.d.ts +4 -2
- package/dist/PlurnkParser.d.ts.map +1 -1
- package/dist/PlurnkParser.js +132 -29
- package/dist/PlurnkParser.js.map +1 -1
- package/dist/RecordingListener.d.ts.map +1 -1
- package/dist/RecordingListener.js +5 -23
- package/dist/RecordingListener.js.map +1 -1
- package/dist/generated/plurnkLexer.d.ts +70 -34
- package/dist/generated/plurnkLexer.d.ts.map +1 -1
- package/dist/generated/plurnkLexer.js +817 -437
- package/dist/generated/plurnkLexer.js.map +1 -1
- package/dist/generated/plurnkParser.d.ts +81 -84
- package/dist/generated/plurnkParser.d.ts.map +1 -1
- package/dist/generated/plurnkParser.js +621 -672
- package/dist/generated/plurnkParser.js.map +1 -1
- package/dist/generated/plurnkParserVisitor.d.ts +7 -14
- package/dist/generated/plurnkParserVisitor.d.ts.map +1 -1
- package/dist/generated/plurnkParserVisitor.js +6 -12
- package/dist/generated/plurnkParserVisitor.js.map +1 -1
- package/package.json +3 -3
|
@@ -6,94 +6,95 @@ export class plurnkParser extends antlr.Parser {
|
|
|
6
6
|
static OPEN_COPY = 4;
|
|
7
7
|
static OPEN_MOVE = 5;
|
|
8
8
|
static OPEN_SEND = 6;
|
|
9
|
-
static
|
|
10
|
-
static
|
|
11
|
-
static
|
|
12
|
-
static
|
|
13
|
-
static
|
|
14
|
-
static
|
|
15
|
-
static
|
|
16
|
-
static
|
|
17
|
-
static
|
|
18
|
-
static
|
|
19
|
-
static
|
|
20
|
-
static
|
|
21
|
-
static
|
|
22
|
-
static
|
|
23
|
-
static
|
|
24
|
-
static
|
|
25
|
-
static
|
|
26
|
-
static
|
|
27
|
-
static
|
|
28
|
-
static
|
|
29
|
-
static
|
|
30
|
-
static
|
|
31
|
-
static
|
|
32
|
-
static
|
|
33
|
-
static
|
|
34
|
-
static
|
|
35
|
-
static
|
|
9
|
+
static OPEN_NOTE = 7;
|
|
10
|
+
static OPEN_WAIT = 8;
|
|
11
|
+
static OPEN_EXEC = 9;
|
|
12
|
+
static OPEN_BARE = 10;
|
|
13
|
+
static OPEN_WORK = 11;
|
|
14
|
+
static OPEN_FORK = 12;
|
|
15
|
+
static OPEN_KILL = 13;
|
|
16
|
+
static OPEN_LOOK = 14;
|
|
17
|
+
static LPAREN = 15;
|
|
18
|
+
static RPAREN = 16;
|
|
19
|
+
static LBRACKET = 17;
|
|
20
|
+
static RBRACKET = 18;
|
|
21
|
+
static L_MARKER = 19;
|
|
22
|
+
static BODY_OPEN = 20;
|
|
23
|
+
static SECTION_END = 21;
|
|
24
|
+
static TARGET_TEXT = 22;
|
|
25
|
+
static METADATA_TEXT = 23;
|
|
26
|
+
static BODY_TEXT = 24;
|
|
27
|
+
static TEXT = 25;
|
|
28
|
+
static ASIDE = 26;
|
|
29
|
+
static OPEN = 27;
|
|
30
|
+
static WS = 28;
|
|
31
|
+
static SLOTS_WS = 29;
|
|
32
|
+
static SLOTS_INVISIBLE = 30;
|
|
33
|
+
static SLOTS_WAIT_SCOPE = 31;
|
|
34
|
+
static SLOTS_INLINE_CLOSER = 32;
|
|
35
|
+
static TARGET_BACKSLASH = 33;
|
|
36
|
+
static TARGET_TICK = 34;
|
|
37
|
+
static METADATA_QUOTE = 35;
|
|
38
|
+
static B_CR = 36;
|
|
36
39
|
static RULE_document = 0;
|
|
37
|
-
static
|
|
38
|
-
static
|
|
39
|
-
static
|
|
40
|
-
static
|
|
41
|
-
static
|
|
42
|
-
static
|
|
43
|
-
static
|
|
44
|
-
static
|
|
45
|
-
static
|
|
46
|
-
static
|
|
47
|
-
static
|
|
48
|
-
static
|
|
49
|
-
static
|
|
50
|
-
static
|
|
51
|
-
static
|
|
52
|
-
static
|
|
53
|
-
static
|
|
54
|
-
static
|
|
55
|
-
static
|
|
56
|
-
static
|
|
57
|
-
static
|
|
58
|
-
static
|
|
59
|
-
static
|
|
60
|
-
static
|
|
61
|
-
static
|
|
62
|
-
static
|
|
63
|
-
static
|
|
64
|
-
static
|
|
65
|
-
static
|
|
66
|
-
static
|
|
67
|
-
static
|
|
68
|
-
static
|
|
69
|
-
static
|
|
70
|
-
static
|
|
71
|
-
static RULE_body = 35;
|
|
40
|
+
static RULE_modelTurn = 1;
|
|
41
|
+
static RULE_statementSeq = 2;
|
|
42
|
+
static RULE_clientStatementSeq = 3;
|
|
43
|
+
static RULE_clientStatement = 4;
|
|
44
|
+
static RULE_statement = 5;
|
|
45
|
+
static RULE_midStatement = 6;
|
|
46
|
+
static RULE_findStatement = 7;
|
|
47
|
+
static RULE_readStatement = 8;
|
|
48
|
+
static RULE_editStatement = 9;
|
|
49
|
+
static RULE_copyStatement = 10;
|
|
50
|
+
static RULE_moveStatement = 11;
|
|
51
|
+
static RULE_dispositionStatement = 12;
|
|
52
|
+
static RULE_noteStatement = 13;
|
|
53
|
+
static RULE_sendStatement = 14;
|
|
54
|
+
static RULE_execStatement = 15;
|
|
55
|
+
static RULE_bareStatement = 16;
|
|
56
|
+
static RULE_workStatement = 17;
|
|
57
|
+
static RULE_forkStatement = 18;
|
|
58
|
+
static RULE_killStatement = 19;
|
|
59
|
+
static RULE_lookStatement = 20;
|
|
60
|
+
static RULE_opAside = 21;
|
|
61
|
+
static RULE_statementEnd = 22;
|
|
62
|
+
static RULE_transferModifiers = 23;
|
|
63
|
+
static RULE_resourceSelection = 24;
|
|
64
|
+
static RULE_selectionModifier = 25;
|
|
65
|
+
static RULE_emptyStatementEnd = 26;
|
|
66
|
+
static RULE_slotModifiers = 27;
|
|
67
|
+
static RULE_execModifiers = 28;
|
|
68
|
+
static RULE_execSlot = 29;
|
|
69
|
+
static RULE_target = 30;
|
|
70
|
+
static RULE_targetWithMetadata = 31;
|
|
71
|
+
static RULE_metadata = 32;
|
|
72
|
+
static RULE_lineMarker = 33;
|
|
73
|
+
static RULE_body = 34;
|
|
72
74
|
static literalNames = [
|
|
73
75
|
null, null, null, null, null, null, null, null, null, null, null,
|
|
74
76
|
null, null, null, null, null, null, null, null, null, null, null,
|
|
75
|
-
null, null, null, null, null, null, null, null,
|
|
76
|
-
"'\\r'"
|
|
77
|
+
null, null, null, null, null, null, null, null, null, null, null,
|
|
78
|
+
"'\\'", null, "'\"'", "'\\r'"
|
|
77
79
|
];
|
|
78
80
|
static symbolicNames = [
|
|
79
81
|
null, "OPEN_FIND", "OPEN_READ", "OPEN_EDIT", "OPEN_COPY", "OPEN_MOVE",
|
|
80
|
-
"OPEN_SEND", "
|
|
81
|
-
"OPEN_FORK", "OPEN_KILL", "OPEN_LOOK", "LPAREN", "RPAREN",
|
|
82
|
-
"RBRACKET", "L_MARKER", "BODY_OPEN", "SECTION_END",
|
|
83
|
-
"METADATA_TEXT", "BODY_TEXT", "TEXT", "ASIDE", "OPEN",
|
|
84
|
-
"
|
|
85
|
-
"B_CR"
|
|
82
|
+
"OPEN_SEND", "OPEN_NOTE", "OPEN_WAIT", "OPEN_EXEC", "OPEN_BARE",
|
|
83
|
+
"OPEN_WORK", "OPEN_FORK", "OPEN_KILL", "OPEN_LOOK", "LPAREN", "RPAREN",
|
|
84
|
+
"LBRACKET", "RBRACKET", "L_MARKER", "BODY_OPEN", "SECTION_END",
|
|
85
|
+
"TARGET_TEXT", "METADATA_TEXT", "BODY_TEXT", "TEXT", "ASIDE", "OPEN",
|
|
86
|
+
"WS", "SLOTS_WS", "SLOTS_INVISIBLE", "SLOTS_WAIT_SCOPE", "SLOTS_INLINE_CLOSER",
|
|
87
|
+
"TARGET_BACKSLASH", "TARGET_TICK", "METADATA_QUOTE", "B_CR"
|
|
86
88
|
];
|
|
87
89
|
static ruleNames = [
|
|
88
|
-
"document", "
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
"
|
|
93
|
-
"
|
|
94
|
-
"
|
|
95
|
-
"
|
|
96
|
-
"body",
|
|
90
|
+
"document", "modelTurn", "statementSeq", "clientStatementSeq", "clientStatement",
|
|
91
|
+
"statement", "midStatement", "findStatement", "readStatement", "editStatement",
|
|
92
|
+
"copyStatement", "moveStatement", "dispositionStatement", "noteStatement",
|
|
93
|
+
"sendStatement", "execStatement", "bareStatement", "workStatement",
|
|
94
|
+
"forkStatement", "killStatement", "lookStatement", "opAside", "statementEnd",
|
|
95
|
+
"transferModifiers", "resourceSelection", "selectionModifier", "emptyStatementEnd",
|
|
96
|
+
"slotModifiers", "execModifiers", "execSlot", "target", "targetWithMetadata",
|
|
97
|
+
"metadata", "lineMarker", "body",
|
|
97
98
|
];
|
|
98
99
|
get grammarFileName() { return "plurnkParser.g4"; }
|
|
99
100
|
get literalNames() { return plurnkParser.literalNames; }
|
|
@@ -113,9 +114,9 @@ export class plurnkParser extends antlr.Parser {
|
|
|
113
114
|
try {
|
|
114
115
|
this.enterOuterAlt(localContext, 1);
|
|
115
116
|
{
|
|
116
|
-
this.state =
|
|
117
|
+
this.state = 70;
|
|
117
118
|
this.modelTurn();
|
|
118
|
-
this.state =
|
|
119
|
+
this.state = 71;
|
|
119
120
|
this.match(plurnkParser.EOF);
|
|
120
121
|
}
|
|
121
122
|
}
|
|
@@ -133,167 +134,52 @@ export class plurnkParser extends antlr.Parser {
|
|
|
133
134
|
}
|
|
134
135
|
return localContext;
|
|
135
136
|
}
|
|
136
|
-
|
|
137
|
-
let localContext = new
|
|
138
|
-
this.enterRule(localContext, 2, plurnkParser.
|
|
137
|
+
modelTurn() {
|
|
138
|
+
let localContext = new ModelTurnContext(this.context, this.state);
|
|
139
|
+
this.enterRule(localContext, 2, plurnkParser.RULE_modelTurn);
|
|
139
140
|
let _la;
|
|
140
141
|
try {
|
|
141
142
|
this.enterOuterAlt(localContext, 1);
|
|
142
143
|
{
|
|
143
|
-
this.state =
|
|
144
|
+
this.state = 75;
|
|
144
145
|
this.errorHandler.sync(this);
|
|
145
146
|
_la = this.tokenStream.LA(1);
|
|
146
147
|
do {
|
|
147
148
|
{
|
|
148
|
-
|
|
149
|
-
this.state = 75;
|
|
150
|
-
this.turn();
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
|
-
this.state = 78;
|
|
154
|
-
this.errorHandler.sync(this);
|
|
155
|
-
_la = this.tokenStream.LA(1);
|
|
156
|
-
} while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 8190) !== 0));
|
|
157
|
-
this.state = 80;
|
|
158
|
-
this.match(plurnkParser.EOF);
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
catch (re) {
|
|
162
|
-
if (re instanceof antlr.RecognitionException) {
|
|
163
|
-
this.errorHandler.reportError(this, re);
|
|
164
|
-
this.errorHandler.recover(this, re);
|
|
165
|
-
}
|
|
166
|
-
else {
|
|
167
|
-
throw re;
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
finally {
|
|
171
|
-
this.exitRule();
|
|
172
|
-
}
|
|
173
|
-
return localContext;
|
|
174
|
-
}
|
|
175
|
-
turn() {
|
|
176
|
-
let localContext = new TurnContext(this.context, this.state);
|
|
177
|
-
this.enterRule(localContext, 4, plurnkParser.RULE_turn);
|
|
178
|
-
let _la;
|
|
179
|
-
try {
|
|
180
|
-
this.enterOuterAlt(localContext, 1);
|
|
181
|
-
{
|
|
182
|
-
this.state = 85;
|
|
183
|
-
this.errorHandler.sync(this);
|
|
184
|
-
_la = this.tokenStream.LA(1);
|
|
185
|
-
while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 8062) !== 0)) {
|
|
186
|
-
{
|
|
187
|
-
{
|
|
188
|
-
this.state = 82;
|
|
189
|
-
this.midStatement();
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
this.state = 87;
|
|
193
|
-
this.errorHandler.sync(this);
|
|
194
|
-
_la = this.tokenStream.LA(1);
|
|
195
|
-
}
|
|
196
|
-
this.state = 88;
|
|
197
|
-
this.dispositionStatement();
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
|
-
catch (re) {
|
|
201
|
-
if (re instanceof antlr.RecognitionException) {
|
|
202
|
-
this.errorHandler.reportError(this, re);
|
|
203
|
-
this.errorHandler.recover(this, re);
|
|
204
|
-
}
|
|
205
|
-
else {
|
|
206
|
-
throw re;
|
|
207
|
-
}
|
|
208
|
-
}
|
|
209
|
-
finally {
|
|
210
|
-
this.exitRule();
|
|
211
|
-
}
|
|
212
|
-
return localContext;
|
|
213
|
-
}
|
|
214
|
-
modelTurn() {
|
|
215
|
-
let localContext = new ModelTurnContext(this.context, this.state);
|
|
216
|
-
this.enterRule(localContext, 6, plurnkParser.RULE_modelTurn);
|
|
217
|
-
let _la;
|
|
218
|
-
try {
|
|
219
|
-
this.state = 111;
|
|
220
|
-
this.errorHandler.sync(this);
|
|
221
|
-
switch (this.tokenStream.LA(1)) {
|
|
222
|
-
case plurnkParser.OPEN_FIND:
|
|
223
|
-
case plurnkParser.OPEN_READ:
|
|
224
|
-
case plurnkParser.OPEN_EDIT:
|
|
225
|
-
case plurnkParser.OPEN_COPY:
|
|
226
|
-
case plurnkParser.OPEN_MOVE:
|
|
227
|
-
case plurnkParser.OPEN_SEND:
|
|
228
|
-
case plurnkParser.OPEN_EXEC:
|
|
229
|
-
case plurnkParser.OPEN_BARE:
|
|
230
|
-
case plurnkParser.OPEN_WORK:
|
|
231
|
-
case plurnkParser.OPEN_FORK:
|
|
232
|
-
case plurnkParser.OPEN_KILL:
|
|
233
|
-
this.enterOuterAlt(localContext, 1);
|
|
234
|
-
{
|
|
235
|
-
this.state = 91;
|
|
149
|
+
this.state = 75;
|
|
236
150
|
this.errorHandler.sync(this);
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
151
|
+
switch (this.tokenStream.LA(1)) {
|
|
152
|
+
case plurnkParser.OPEN_FIND:
|
|
153
|
+
case plurnkParser.OPEN_READ:
|
|
154
|
+
case plurnkParser.OPEN_EDIT:
|
|
155
|
+
case plurnkParser.OPEN_COPY:
|
|
156
|
+
case plurnkParser.OPEN_MOVE:
|
|
157
|
+
case plurnkParser.OPEN_SEND:
|
|
158
|
+
case plurnkParser.OPEN_NOTE:
|
|
159
|
+
case plurnkParser.OPEN_EXEC:
|
|
160
|
+
case plurnkParser.OPEN_BARE:
|
|
161
|
+
case plurnkParser.OPEN_WORK:
|
|
162
|
+
case plurnkParser.OPEN_FORK:
|
|
163
|
+
case plurnkParser.OPEN_KILL:
|
|
240
164
|
{
|
|
241
|
-
this.state =
|
|
165
|
+
this.state = 73;
|
|
242
166
|
this.midStatement();
|
|
243
167
|
}
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
this.errorHandler.sync(this);
|
|
247
|
-
_la = this.tokenStream.LA(1);
|
|
248
|
-
} while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 8062) !== 0));
|
|
249
|
-
this.state = 102;
|
|
250
|
-
this.errorHandler.sync(this);
|
|
251
|
-
_la = this.tokenStream.LA(1);
|
|
252
|
-
if (_la === 7) {
|
|
253
|
-
{
|
|
254
|
-
this.state = 95;
|
|
255
|
-
this.dispositionStatement();
|
|
256
|
-
this.state = 99;
|
|
257
|
-
this.errorHandler.sync(this);
|
|
258
|
-
_la = this.tokenStream.LA(1);
|
|
259
|
-
while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 8062) !== 0)) {
|
|
260
|
-
{
|
|
261
|
-
{
|
|
262
|
-
this.state = 96;
|
|
263
|
-
this.midStatement();
|
|
264
|
-
}
|
|
265
|
-
}
|
|
266
|
-
this.state = 101;
|
|
267
|
-
this.errorHandler.sync(this);
|
|
268
|
-
_la = this.tokenStream.LA(1);
|
|
269
|
-
}
|
|
270
|
-
}
|
|
271
|
-
}
|
|
272
|
-
}
|
|
273
|
-
break;
|
|
274
|
-
case plurnkParser.OPEN_TASK:
|
|
275
|
-
this.enterOuterAlt(localContext, 2);
|
|
276
|
-
{
|
|
277
|
-
this.state = 104;
|
|
278
|
-
this.dispositionStatement();
|
|
279
|
-
this.state = 108;
|
|
280
|
-
this.errorHandler.sync(this);
|
|
281
|
-
_la = this.tokenStream.LA(1);
|
|
282
|
-
while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 8062) !== 0)) {
|
|
283
|
-
{
|
|
168
|
+
break;
|
|
169
|
+
case plurnkParser.OPEN_WAIT:
|
|
284
170
|
{
|
|
285
|
-
this.state =
|
|
286
|
-
this.
|
|
171
|
+
this.state = 74;
|
|
172
|
+
this.dispositionStatement();
|
|
287
173
|
}
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
_la = this.tokenStream.LA(1);
|
|
174
|
+
break;
|
|
175
|
+
default:
|
|
176
|
+
throw new antlr.NoViableAltException(this);
|
|
292
177
|
}
|
|
293
178
|
}
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
179
|
+
this.state = 77;
|
|
180
|
+
this.errorHandler.sync(this);
|
|
181
|
+
_la = this.tokenStream.LA(1);
|
|
182
|
+
} while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 16382) !== 0));
|
|
297
183
|
}
|
|
298
184
|
}
|
|
299
185
|
catch (re) {
|
|
@@ -312,26 +198,26 @@ export class plurnkParser extends antlr.Parser {
|
|
|
312
198
|
}
|
|
313
199
|
statementSeq() {
|
|
314
200
|
let localContext = new StatementSeqContext(this.context, this.state);
|
|
315
|
-
this.enterRule(localContext,
|
|
201
|
+
this.enterRule(localContext, 4, plurnkParser.RULE_statementSeq);
|
|
316
202
|
let _la;
|
|
317
203
|
try {
|
|
318
204
|
this.enterOuterAlt(localContext, 1);
|
|
319
205
|
{
|
|
320
|
-
this.state =
|
|
206
|
+
this.state = 82;
|
|
321
207
|
this.errorHandler.sync(this);
|
|
322
208
|
_la = this.tokenStream.LA(1);
|
|
323
|
-
while ((((_la) & ~0x1F) === 0 && ((1 << _la) &
|
|
209
|
+
while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 16382) !== 0)) {
|
|
324
210
|
{
|
|
325
211
|
{
|
|
326
|
-
this.state =
|
|
212
|
+
this.state = 79;
|
|
327
213
|
this.statement();
|
|
328
214
|
}
|
|
329
215
|
}
|
|
330
|
-
this.state =
|
|
216
|
+
this.state = 84;
|
|
331
217
|
this.errorHandler.sync(this);
|
|
332
218
|
_la = this.tokenStream.LA(1);
|
|
333
219
|
}
|
|
334
|
-
this.state =
|
|
220
|
+
this.state = 85;
|
|
335
221
|
this.match(plurnkParser.EOF);
|
|
336
222
|
}
|
|
337
223
|
}
|
|
@@ -351,26 +237,26 @@ export class plurnkParser extends antlr.Parser {
|
|
|
351
237
|
}
|
|
352
238
|
clientStatementSeq() {
|
|
353
239
|
let localContext = new ClientStatementSeqContext(this.context, this.state);
|
|
354
|
-
this.enterRule(localContext,
|
|
240
|
+
this.enterRule(localContext, 6, plurnkParser.RULE_clientStatementSeq);
|
|
355
241
|
let _la;
|
|
356
242
|
try {
|
|
357
243
|
this.enterOuterAlt(localContext, 1);
|
|
358
244
|
{
|
|
359
|
-
this.state =
|
|
245
|
+
this.state = 90;
|
|
360
246
|
this.errorHandler.sync(this);
|
|
361
247
|
_la = this.tokenStream.LA(1);
|
|
362
|
-
while ((((_la) & ~0x1F) === 0 && ((1 << _la) &
|
|
248
|
+
while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 32766) !== 0)) {
|
|
363
249
|
{
|
|
364
250
|
{
|
|
365
|
-
this.state =
|
|
251
|
+
this.state = 87;
|
|
366
252
|
this.clientStatement();
|
|
367
253
|
}
|
|
368
254
|
}
|
|
369
|
-
this.state =
|
|
255
|
+
this.state = 92;
|
|
370
256
|
this.errorHandler.sync(this);
|
|
371
257
|
_la = this.tokenStream.LA(1);
|
|
372
258
|
}
|
|
373
|
-
this.state =
|
|
259
|
+
this.state = 93;
|
|
374
260
|
this.match(plurnkParser.EOF);
|
|
375
261
|
}
|
|
376
262
|
}
|
|
@@ -390,9 +276,9 @@ export class plurnkParser extends antlr.Parser {
|
|
|
390
276
|
}
|
|
391
277
|
clientStatement() {
|
|
392
278
|
let localContext = new ClientStatementContext(this.context, this.state);
|
|
393
|
-
this.enterRule(localContext,
|
|
279
|
+
this.enterRule(localContext, 8, plurnkParser.RULE_clientStatement);
|
|
394
280
|
try {
|
|
395
|
-
this.state =
|
|
281
|
+
this.state = 97;
|
|
396
282
|
this.errorHandler.sync(this);
|
|
397
283
|
switch (this.tokenStream.LA(1)) {
|
|
398
284
|
case plurnkParser.OPEN_FIND:
|
|
@@ -401,7 +287,8 @@ export class plurnkParser extends antlr.Parser {
|
|
|
401
287
|
case plurnkParser.OPEN_COPY:
|
|
402
288
|
case plurnkParser.OPEN_MOVE:
|
|
403
289
|
case plurnkParser.OPEN_SEND:
|
|
404
|
-
case plurnkParser.
|
|
290
|
+
case plurnkParser.OPEN_NOTE:
|
|
291
|
+
case plurnkParser.OPEN_WAIT:
|
|
405
292
|
case plurnkParser.OPEN_EXEC:
|
|
406
293
|
case plurnkParser.OPEN_BARE:
|
|
407
294
|
case plurnkParser.OPEN_WORK:
|
|
@@ -409,14 +296,14 @@ export class plurnkParser extends antlr.Parser {
|
|
|
409
296
|
case plurnkParser.OPEN_KILL:
|
|
410
297
|
this.enterOuterAlt(localContext, 1);
|
|
411
298
|
{
|
|
412
|
-
this.state =
|
|
299
|
+
this.state = 95;
|
|
413
300
|
this.statement();
|
|
414
301
|
}
|
|
415
302
|
break;
|
|
416
303
|
case plurnkParser.OPEN_LOOK:
|
|
417
304
|
this.enterOuterAlt(localContext, 2);
|
|
418
305
|
{
|
|
419
|
-
this.state =
|
|
306
|
+
this.state = 96;
|
|
420
307
|
this.lookStatement();
|
|
421
308
|
}
|
|
422
309
|
break;
|
|
@@ -440,95 +327,102 @@ export class plurnkParser extends antlr.Parser {
|
|
|
440
327
|
}
|
|
441
328
|
statement() {
|
|
442
329
|
let localContext = new StatementContext(this.context, this.state);
|
|
443
|
-
this.enterRule(localContext,
|
|
330
|
+
this.enterRule(localContext, 10, plurnkParser.RULE_statement);
|
|
444
331
|
try {
|
|
445
|
-
this.state =
|
|
332
|
+
this.state = 112;
|
|
446
333
|
this.errorHandler.sync(this);
|
|
447
334
|
switch (this.tokenStream.LA(1)) {
|
|
448
335
|
case plurnkParser.OPEN_FIND:
|
|
449
336
|
this.enterOuterAlt(localContext, 1);
|
|
450
337
|
{
|
|
451
|
-
this.state =
|
|
338
|
+
this.state = 99;
|
|
452
339
|
this.findStatement();
|
|
453
340
|
}
|
|
454
341
|
break;
|
|
455
342
|
case plurnkParser.OPEN_READ:
|
|
456
343
|
this.enterOuterAlt(localContext, 2);
|
|
457
344
|
{
|
|
458
|
-
this.state =
|
|
345
|
+
this.state = 100;
|
|
459
346
|
this.readStatement();
|
|
460
347
|
}
|
|
461
348
|
break;
|
|
462
349
|
case plurnkParser.OPEN_EDIT:
|
|
463
350
|
this.enterOuterAlt(localContext, 3);
|
|
464
351
|
{
|
|
465
|
-
this.state =
|
|
352
|
+
this.state = 101;
|
|
466
353
|
this.editStatement();
|
|
467
354
|
}
|
|
468
355
|
break;
|
|
469
356
|
case plurnkParser.OPEN_COPY:
|
|
470
357
|
this.enterOuterAlt(localContext, 4);
|
|
471
358
|
{
|
|
472
|
-
this.state =
|
|
359
|
+
this.state = 102;
|
|
473
360
|
this.copyStatement();
|
|
474
361
|
}
|
|
475
362
|
break;
|
|
476
363
|
case plurnkParser.OPEN_MOVE:
|
|
477
364
|
this.enterOuterAlt(localContext, 5);
|
|
478
365
|
{
|
|
479
|
-
this.state =
|
|
366
|
+
this.state = 103;
|
|
480
367
|
this.moveStatement();
|
|
481
368
|
}
|
|
482
369
|
break;
|
|
483
|
-
case plurnkParser.
|
|
370
|
+
case plurnkParser.OPEN_WAIT:
|
|
484
371
|
this.enterOuterAlt(localContext, 6);
|
|
485
372
|
{
|
|
486
|
-
this.state =
|
|
373
|
+
this.state = 104;
|
|
487
374
|
this.dispositionStatement();
|
|
488
375
|
}
|
|
489
376
|
break;
|
|
490
377
|
case plurnkParser.OPEN_SEND:
|
|
491
378
|
this.enterOuterAlt(localContext, 7);
|
|
492
379
|
{
|
|
493
|
-
this.state =
|
|
380
|
+
this.state = 105;
|
|
494
381
|
this.sendStatement();
|
|
495
382
|
}
|
|
496
383
|
break;
|
|
497
384
|
case plurnkParser.OPEN_EXEC:
|
|
498
385
|
this.enterOuterAlt(localContext, 8);
|
|
499
386
|
{
|
|
500
|
-
this.state =
|
|
387
|
+
this.state = 106;
|
|
501
388
|
this.execStatement();
|
|
502
389
|
}
|
|
503
390
|
break;
|
|
504
391
|
case plurnkParser.OPEN_BARE:
|
|
505
392
|
this.enterOuterAlt(localContext, 9);
|
|
506
393
|
{
|
|
507
|
-
this.state =
|
|
394
|
+
this.state = 107;
|
|
508
395
|
this.bareStatement();
|
|
509
396
|
}
|
|
510
397
|
break;
|
|
511
398
|
case plurnkParser.OPEN_WORK:
|
|
512
399
|
this.enterOuterAlt(localContext, 10);
|
|
513
400
|
{
|
|
514
|
-
this.state =
|
|
401
|
+
this.state = 108;
|
|
515
402
|
this.workStatement();
|
|
516
403
|
}
|
|
517
404
|
break;
|
|
518
405
|
case plurnkParser.OPEN_FORK:
|
|
519
406
|
this.enterOuterAlt(localContext, 11);
|
|
520
407
|
{
|
|
521
|
-
this.state =
|
|
408
|
+
this.state = 109;
|
|
522
409
|
this.forkStatement();
|
|
523
410
|
}
|
|
524
411
|
break;
|
|
525
412
|
case plurnkParser.OPEN_KILL:
|
|
526
413
|
this.enterOuterAlt(localContext, 12);
|
|
527
414
|
{
|
|
528
|
-
this.state =
|
|
415
|
+
this.state = 110;
|
|
529
416
|
this.killStatement();
|
|
530
417
|
}
|
|
531
418
|
break;
|
|
419
|
+
case plurnkParser.OPEN_NOTE:
|
|
420
|
+
this.enterOuterAlt(localContext, 13);
|
|
421
|
+
{
|
|
422
|
+
this.state = 111;
|
|
423
|
+
this.noteStatement();
|
|
424
|
+
}
|
|
425
|
+
break;
|
|
532
426
|
default:
|
|
533
427
|
throw new antlr.NoViableAltException(this);
|
|
534
428
|
}
|
|
@@ -549,88 +443,95 @@ export class plurnkParser extends antlr.Parser {
|
|
|
549
443
|
}
|
|
550
444
|
midStatement() {
|
|
551
445
|
let localContext = new MidStatementContext(this.context, this.state);
|
|
552
|
-
this.enterRule(localContext,
|
|
446
|
+
this.enterRule(localContext, 12, plurnkParser.RULE_midStatement);
|
|
553
447
|
try {
|
|
554
|
-
this.state =
|
|
448
|
+
this.state = 126;
|
|
555
449
|
this.errorHandler.sync(this);
|
|
556
450
|
switch (this.tokenStream.LA(1)) {
|
|
557
451
|
case plurnkParser.OPEN_FIND:
|
|
558
452
|
this.enterOuterAlt(localContext, 1);
|
|
559
453
|
{
|
|
560
|
-
this.state =
|
|
454
|
+
this.state = 114;
|
|
561
455
|
this.findStatement();
|
|
562
456
|
}
|
|
563
457
|
break;
|
|
564
458
|
case plurnkParser.OPEN_READ:
|
|
565
459
|
this.enterOuterAlt(localContext, 2);
|
|
566
460
|
{
|
|
567
|
-
this.state =
|
|
461
|
+
this.state = 115;
|
|
568
462
|
this.readStatement();
|
|
569
463
|
}
|
|
570
464
|
break;
|
|
571
465
|
case plurnkParser.OPEN_EDIT:
|
|
572
466
|
this.enterOuterAlt(localContext, 3);
|
|
573
467
|
{
|
|
574
|
-
this.state =
|
|
468
|
+
this.state = 116;
|
|
575
469
|
this.editStatement();
|
|
576
470
|
}
|
|
577
471
|
break;
|
|
578
472
|
case plurnkParser.OPEN_COPY:
|
|
579
473
|
this.enterOuterAlt(localContext, 4);
|
|
580
474
|
{
|
|
581
|
-
this.state =
|
|
475
|
+
this.state = 117;
|
|
582
476
|
this.copyStatement();
|
|
583
477
|
}
|
|
584
478
|
break;
|
|
585
479
|
case plurnkParser.OPEN_MOVE:
|
|
586
480
|
this.enterOuterAlt(localContext, 5);
|
|
587
481
|
{
|
|
588
|
-
this.state =
|
|
482
|
+
this.state = 118;
|
|
589
483
|
this.moveStatement();
|
|
590
484
|
}
|
|
591
485
|
break;
|
|
592
486
|
case plurnkParser.OPEN_SEND:
|
|
593
487
|
this.enterOuterAlt(localContext, 6);
|
|
594
488
|
{
|
|
595
|
-
this.state =
|
|
489
|
+
this.state = 119;
|
|
596
490
|
this.sendStatement();
|
|
597
491
|
}
|
|
598
492
|
break;
|
|
599
493
|
case plurnkParser.OPEN_EXEC:
|
|
600
494
|
this.enterOuterAlt(localContext, 7);
|
|
601
495
|
{
|
|
602
|
-
this.state =
|
|
496
|
+
this.state = 120;
|
|
603
497
|
this.execStatement();
|
|
604
498
|
}
|
|
605
499
|
break;
|
|
606
500
|
case plurnkParser.OPEN_BARE:
|
|
607
501
|
this.enterOuterAlt(localContext, 8);
|
|
608
502
|
{
|
|
609
|
-
this.state =
|
|
503
|
+
this.state = 121;
|
|
610
504
|
this.bareStatement();
|
|
611
505
|
}
|
|
612
506
|
break;
|
|
613
507
|
case plurnkParser.OPEN_WORK:
|
|
614
508
|
this.enterOuterAlt(localContext, 9);
|
|
615
509
|
{
|
|
616
|
-
this.state =
|
|
510
|
+
this.state = 122;
|
|
617
511
|
this.workStatement();
|
|
618
512
|
}
|
|
619
513
|
break;
|
|
620
514
|
case plurnkParser.OPEN_FORK:
|
|
621
515
|
this.enterOuterAlt(localContext, 10);
|
|
622
516
|
{
|
|
623
|
-
this.state =
|
|
517
|
+
this.state = 123;
|
|
624
518
|
this.forkStatement();
|
|
625
519
|
}
|
|
626
520
|
break;
|
|
627
521
|
case plurnkParser.OPEN_KILL:
|
|
628
522
|
this.enterOuterAlt(localContext, 11);
|
|
629
523
|
{
|
|
630
|
-
this.state =
|
|
524
|
+
this.state = 124;
|
|
631
525
|
this.killStatement();
|
|
632
526
|
}
|
|
633
527
|
break;
|
|
528
|
+
case plurnkParser.OPEN_NOTE:
|
|
529
|
+
this.enterOuterAlt(localContext, 12);
|
|
530
|
+
{
|
|
531
|
+
this.state = 125;
|
|
532
|
+
this.noteStatement();
|
|
533
|
+
}
|
|
534
|
+
break;
|
|
634
535
|
default:
|
|
635
536
|
throw new antlr.NoViableAltException(this);
|
|
636
537
|
}
|
|
@@ -651,32 +552,32 @@ export class plurnkParser extends antlr.Parser {
|
|
|
651
552
|
}
|
|
652
553
|
findStatement() {
|
|
653
554
|
let localContext = new FindStatementContext(this.context, this.state);
|
|
654
|
-
this.enterRule(localContext,
|
|
555
|
+
this.enterRule(localContext, 14, plurnkParser.RULE_findStatement);
|
|
655
556
|
let _la;
|
|
656
557
|
try {
|
|
657
558
|
this.enterOuterAlt(localContext, 1);
|
|
658
559
|
{
|
|
659
|
-
this.state =
|
|
560
|
+
this.state = 128;
|
|
660
561
|
this.match(plurnkParser.OPEN_FIND);
|
|
661
|
-
this.state =
|
|
562
|
+
this.state = 130;
|
|
662
563
|
this.errorHandler.sync(this);
|
|
663
564
|
_la = this.tokenStream.LA(1);
|
|
664
|
-
if (_la ===
|
|
565
|
+
if (_la === 15 || _la === 19) {
|
|
665
566
|
{
|
|
666
|
-
this.state =
|
|
567
|
+
this.state = 129;
|
|
667
568
|
this.slotModifiers();
|
|
668
569
|
}
|
|
669
570
|
}
|
|
670
|
-
this.state =
|
|
571
|
+
this.state = 133;
|
|
671
572
|
this.errorHandler.sync(this);
|
|
672
573
|
_la = this.tokenStream.LA(1);
|
|
673
|
-
if (_la ===
|
|
574
|
+
if (_la === 26) {
|
|
674
575
|
{
|
|
675
|
-
this.state =
|
|
576
|
+
this.state = 132;
|
|
676
577
|
this.opAside();
|
|
677
578
|
}
|
|
678
579
|
}
|
|
679
|
-
this.state =
|
|
580
|
+
this.state = 135;
|
|
680
581
|
this.statementEnd();
|
|
681
582
|
}
|
|
682
583
|
}
|
|
@@ -696,32 +597,32 @@ export class plurnkParser extends antlr.Parser {
|
|
|
696
597
|
}
|
|
697
598
|
readStatement() {
|
|
698
599
|
let localContext = new ReadStatementContext(this.context, this.state);
|
|
699
|
-
this.enterRule(localContext,
|
|
600
|
+
this.enterRule(localContext, 16, plurnkParser.RULE_readStatement);
|
|
700
601
|
let _la;
|
|
701
602
|
try {
|
|
702
603
|
this.enterOuterAlt(localContext, 1);
|
|
703
604
|
{
|
|
704
|
-
this.state =
|
|
605
|
+
this.state = 137;
|
|
705
606
|
this.match(plurnkParser.OPEN_READ);
|
|
706
|
-
this.state =
|
|
607
|
+
this.state = 139;
|
|
707
608
|
this.errorHandler.sync(this);
|
|
708
609
|
_la = this.tokenStream.LA(1);
|
|
709
|
-
if (_la ===
|
|
610
|
+
if (_la === 15 || _la === 19) {
|
|
710
611
|
{
|
|
711
|
-
this.state =
|
|
612
|
+
this.state = 138;
|
|
712
613
|
this.slotModifiers();
|
|
713
614
|
}
|
|
714
615
|
}
|
|
715
|
-
this.state =
|
|
616
|
+
this.state = 142;
|
|
716
617
|
this.errorHandler.sync(this);
|
|
717
618
|
_la = this.tokenStream.LA(1);
|
|
718
|
-
if (_la ===
|
|
619
|
+
if (_la === 26) {
|
|
719
620
|
{
|
|
720
|
-
this.state =
|
|
621
|
+
this.state = 141;
|
|
721
622
|
this.opAside();
|
|
722
623
|
}
|
|
723
624
|
}
|
|
724
|
-
this.state =
|
|
625
|
+
this.state = 144;
|
|
725
626
|
this.statementEnd();
|
|
726
627
|
}
|
|
727
628
|
}
|
|
@@ -741,32 +642,32 @@ export class plurnkParser extends antlr.Parser {
|
|
|
741
642
|
}
|
|
742
643
|
editStatement() {
|
|
743
644
|
let localContext = new EditStatementContext(this.context, this.state);
|
|
744
|
-
this.enterRule(localContext,
|
|
645
|
+
this.enterRule(localContext, 18, plurnkParser.RULE_editStatement);
|
|
745
646
|
let _la;
|
|
746
647
|
try {
|
|
747
648
|
this.enterOuterAlt(localContext, 1);
|
|
748
649
|
{
|
|
749
|
-
this.state =
|
|
650
|
+
this.state = 146;
|
|
750
651
|
this.match(plurnkParser.OPEN_EDIT);
|
|
751
|
-
this.state =
|
|
652
|
+
this.state = 148;
|
|
752
653
|
this.errorHandler.sync(this);
|
|
753
654
|
_la = this.tokenStream.LA(1);
|
|
754
|
-
if (_la ===
|
|
655
|
+
if (_la === 15 || _la === 19) {
|
|
755
656
|
{
|
|
756
|
-
this.state =
|
|
657
|
+
this.state = 147;
|
|
757
658
|
this.slotModifiers();
|
|
758
659
|
}
|
|
759
660
|
}
|
|
760
|
-
this.state =
|
|
661
|
+
this.state = 151;
|
|
761
662
|
this.errorHandler.sync(this);
|
|
762
663
|
_la = this.tokenStream.LA(1);
|
|
763
|
-
if (_la ===
|
|
664
|
+
if (_la === 26) {
|
|
764
665
|
{
|
|
765
|
-
this.state =
|
|
666
|
+
this.state = 150;
|
|
766
667
|
this.opAside();
|
|
767
668
|
}
|
|
768
669
|
}
|
|
769
|
-
this.state =
|
|
670
|
+
this.state = 153;
|
|
770
671
|
this.statementEnd();
|
|
771
672
|
}
|
|
772
673
|
}
|
|
@@ -786,25 +687,25 @@ export class plurnkParser extends antlr.Parser {
|
|
|
786
687
|
}
|
|
787
688
|
copyStatement() {
|
|
788
689
|
let localContext = new CopyStatementContext(this.context, this.state);
|
|
789
|
-
this.enterRule(localContext,
|
|
690
|
+
this.enterRule(localContext, 20, plurnkParser.RULE_copyStatement);
|
|
790
691
|
let _la;
|
|
791
692
|
try {
|
|
792
693
|
this.enterOuterAlt(localContext, 1);
|
|
793
694
|
{
|
|
794
|
-
this.state =
|
|
695
|
+
this.state = 155;
|
|
795
696
|
this.match(plurnkParser.OPEN_COPY);
|
|
796
|
-
this.state =
|
|
697
|
+
this.state = 156;
|
|
797
698
|
this.transferModifiers();
|
|
798
|
-
this.state =
|
|
699
|
+
this.state = 158;
|
|
799
700
|
this.errorHandler.sync(this);
|
|
800
701
|
_la = this.tokenStream.LA(1);
|
|
801
|
-
if (_la ===
|
|
702
|
+
if (_la === 26) {
|
|
802
703
|
{
|
|
803
|
-
this.state =
|
|
704
|
+
this.state = 157;
|
|
804
705
|
this.opAside();
|
|
805
706
|
}
|
|
806
707
|
}
|
|
807
|
-
this.state =
|
|
708
|
+
this.state = 160;
|
|
808
709
|
this.emptyStatementEnd();
|
|
809
710
|
}
|
|
810
711
|
}
|
|
@@ -824,25 +725,25 @@ export class plurnkParser extends antlr.Parser {
|
|
|
824
725
|
}
|
|
825
726
|
moveStatement() {
|
|
826
727
|
let localContext = new MoveStatementContext(this.context, this.state);
|
|
827
|
-
this.enterRule(localContext,
|
|
728
|
+
this.enterRule(localContext, 22, plurnkParser.RULE_moveStatement);
|
|
828
729
|
let _la;
|
|
829
730
|
try {
|
|
830
731
|
this.enterOuterAlt(localContext, 1);
|
|
831
732
|
{
|
|
832
|
-
this.state =
|
|
733
|
+
this.state = 162;
|
|
833
734
|
this.match(plurnkParser.OPEN_MOVE);
|
|
834
|
-
this.state =
|
|
735
|
+
this.state = 163;
|
|
835
736
|
this.transferModifiers();
|
|
836
|
-
this.state =
|
|
737
|
+
this.state = 165;
|
|
837
738
|
this.errorHandler.sync(this);
|
|
838
739
|
_la = this.tokenStream.LA(1);
|
|
839
|
-
if (_la ===
|
|
740
|
+
if (_la === 26) {
|
|
840
741
|
{
|
|
841
|
-
this.state =
|
|
742
|
+
this.state = 164;
|
|
842
743
|
this.opAside();
|
|
843
744
|
}
|
|
844
745
|
}
|
|
845
|
-
this.state =
|
|
746
|
+
this.state = 167;
|
|
846
747
|
this.emptyStatementEnd();
|
|
847
748
|
}
|
|
848
749
|
}
|
|
@@ -862,41 +763,68 @@ export class plurnkParser extends antlr.Parser {
|
|
|
862
763
|
}
|
|
863
764
|
dispositionStatement() {
|
|
864
765
|
let localContext = new DispositionStatementContext(this.context, this.state);
|
|
865
|
-
this.enterRule(localContext,
|
|
766
|
+
this.enterRule(localContext, 24, plurnkParser.RULE_dispositionStatement);
|
|
866
767
|
let _la;
|
|
867
768
|
try {
|
|
868
769
|
this.enterOuterAlt(localContext, 1);
|
|
869
770
|
{
|
|
870
|
-
this.state =
|
|
871
|
-
this.match(plurnkParser.
|
|
872
|
-
this.state =
|
|
771
|
+
this.state = 169;
|
|
772
|
+
this.match(plurnkParser.OPEN_WAIT);
|
|
773
|
+
this.state = 171;
|
|
873
774
|
this.errorHandler.sync(this);
|
|
874
775
|
_la = this.tokenStream.LA(1);
|
|
875
|
-
if (_la ===
|
|
776
|
+
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 688128) !== 0)) {
|
|
876
777
|
{
|
|
877
|
-
this.state =
|
|
878
|
-
this.
|
|
778
|
+
this.state = 170;
|
|
779
|
+
this.execModifiers();
|
|
879
780
|
}
|
|
880
781
|
}
|
|
881
|
-
this.state =
|
|
782
|
+
this.state = 174;
|
|
882
783
|
this.errorHandler.sync(this);
|
|
883
784
|
_la = this.tokenStream.LA(1);
|
|
884
|
-
if (_la ===
|
|
785
|
+
if (_la === 26) {
|
|
885
786
|
{
|
|
886
|
-
this.state =
|
|
887
|
-
this.
|
|
787
|
+
this.state = 173;
|
|
788
|
+
this.opAside();
|
|
888
789
|
}
|
|
889
790
|
}
|
|
890
|
-
this.state =
|
|
791
|
+
this.state = 176;
|
|
792
|
+
this.statementEnd();
|
|
793
|
+
}
|
|
794
|
+
}
|
|
795
|
+
catch (re) {
|
|
796
|
+
if (re instanceof antlr.RecognitionException) {
|
|
797
|
+
this.errorHandler.reportError(this, re);
|
|
798
|
+
this.errorHandler.recover(this, re);
|
|
799
|
+
}
|
|
800
|
+
else {
|
|
801
|
+
throw re;
|
|
802
|
+
}
|
|
803
|
+
}
|
|
804
|
+
finally {
|
|
805
|
+
this.exitRule();
|
|
806
|
+
}
|
|
807
|
+
return localContext;
|
|
808
|
+
}
|
|
809
|
+
noteStatement() {
|
|
810
|
+
let localContext = new NoteStatementContext(this.context, this.state);
|
|
811
|
+
this.enterRule(localContext, 26, plurnkParser.RULE_noteStatement);
|
|
812
|
+
let _la;
|
|
813
|
+
try {
|
|
814
|
+
this.enterOuterAlt(localContext, 1);
|
|
815
|
+
{
|
|
816
|
+
this.state = 178;
|
|
817
|
+
this.match(plurnkParser.OPEN_NOTE);
|
|
818
|
+
this.state = 180;
|
|
891
819
|
this.errorHandler.sync(this);
|
|
892
820
|
_la = this.tokenStream.LA(1);
|
|
893
|
-
if (_la ===
|
|
821
|
+
if (_la === 26) {
|
|
894
822
|
{
|
|
895
|
-
this.state =
|
|
823
|
+
this.state = 179;
|
|
896
824
|
this.opAside();
|
|
897
825
|
}
|
|
898
826
|
}
|
|
899
|
-
this.state =
|
|
827
|
+
this.state = 182;
|
|
900
828
|
this.statementEnd();
|
|
901
829
|
}
|
|
902
830
|
}
|
|
@@ -916,32 +844,73 @@ export class plurnkParser extends antlr.Parser {
|
|
|
916
844
|
}
|
|
917
845
|
sendStatement() {
|
|
918
846
|
let localContext = new SendStatementContext(this.context, this.state);
|
|
919
|
-
this.enterRule(localContext,
|
|
847
|
+
this.enterRule(localContext, 28, plurnkParser.RULE_sendStatement);
|
|
920
848
|
let _la;
|
|
921
849
|
try {
|
|
922
850
|
this.enterOuterAlt(localContext, 1);
|
|
923
851
|
{
|
|
924
|
-
this.state =
|
|
852
|
+
this.state = 184;
|
|
925
853
|
this.match(plurnkParser.OPEN_SEND);
|
|
926
|
-
this.state =
|
|
854
|
+
this.state = 191;
|
|
927
855
|
this.errorHandler.sync(this);
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
856
|
+
switch (this.tokenStream.LA(1)) {
|
|
857
|
+
case plurnkParser.LPAREN:
|
|
858
|
+
{
|
|
859
|
+
this.state = 185;
|
|
860
|
+
this.resourceSelection();
|
|
861
|
+
}
|
|
862
|
+
break;
|
|
863
|
+
case plurnkParser.LBRACKET:
|
|
864
|
+
{
|
|
865
|
+
this.state = 187;
|
|
866
|
+
this.errorHandler.sync(this);
|
|
867
|
+
_la = this.tokenStream.LA(1);
|
|
868
|
+
do {
|
|
869
|
+
{
|
|
870
|
+
{
|
|
871
|
+
this.state = 186;
|
|
872
|
+
this.metadata();
|
|
873
|
+
}
|
|
874
|
+
}
|
|
875
|
+
this.state = 189;
|
|
876
|
+
this.errorHandler.sync(this);
|
|
877
|
+
_la = this.tokenStream.LA(1);
|
|
878
|
+
} while (_la === 17);
|
|
879
|
+
}
|
|
880
|
+
break;
|
|
881
|
+
case plurnkParser.EOF:
|
|
882
|
+
case plurnkParser.OPEN_FIND:
|
|
883
|
+
case plurnkParser.OPEN_READ:
|
|
884
|
+
case plurnkParser.OPEN_EDIT:
|
|
885
|
+
case plurnkParser.OPEN_COPY:
|
|
886
|
+
case plurnkParser.OPEN_MOVE:
|
|
887
|
+
case plurnkParser.OPEN_SEND:
|
|
888
|
+
case plurnkParser.OPEN_NOTE:
|
|
889
|
+
case plurnkParser.OPEN_WAIT:
|
|
890
|
+
case plurnkParser.OPEN_EXEC:
|
|
891
|
+
case plurnkParser.OPEN_BARE:
|
|
892
|
+
case plurnkParser.OPEN_WORK:
|
|
893
|
+
case plurnkParser.OPEN_FORK:
|
|
894
|
+
case plurnkParser.OPEN_KILL:
|
|
895
|
+
case plurnkParser.OPEN_LOOK:
|
|
896
|
+
case plurnkParser.BODY_OPEN:
|
|
897
|
+
case plurnkParser.SECTION_END:
|
|
898
|
+
case plurnkParser.BODY_TEXT:
|
|
899
|
+
case plurnkParser.ASIDE:
|
|
900
|
+
break;
|
|
901
|
+
default:
|
|
902
|
+
break;
|
|
934
903
|
}
|
|
935
|
-
this.state =
|
|
904
|
+
this.state = 194;
|
|
936
905
|
this.errorHandler.sync(this);
|
|
937
906
|
_la = this.tokenStream.LA(1);
|
|
938
|
-
if (_la ===
|
|
907
|
+
if (_la === 26) {
|
|
939
908
|
{
|
|
940
|
-
this.state =
|
|
909
|
+
this.state = 193;
|
|
941
910
|
this.opAside();
|
|
942
911
|
}
|
|
943
912
|
}
|
|
944
|
-
this.state =
|
|
913
|
+
this.state = 196;
|
|
945
914
|
this.statementEnd();
|
|
946
915
|
}
|
|
947
916
|
}
|
|
@@ -961,32 +930,32 @@ export class plurnkParser extends antlr.Parser {
|
|
|
961
930
|
}
|
|
962
931
|
execStatement() {
|
|
963
932
|
let localContext = new ExecStatementContext(this.context, this.state);
|
|
964
|
-
this.enterRule(localContext,
|
|
933
|
+
this.enterRule(localContext, 30, plurnkParser.RULE_execStatement);
|
|
965
934
|
let _la;
|
|
966
935
|
try {
|
|
967
936
|
this.enterOuterAlt(localContext, 1);
|
|
968
937
|
{
|
|
969
|
-
this.state =
|
|
938
|
+
this.state = 198;
|
|
970
939
|
this.match(plurnkParser.OPEN_EXEC);
|
|
971
|
-
this.state =
|
|
940
|
+
this.state = 200;
|
|
972
941
|
this.errorHandler.sync(this);
|
|
973
942
|
_la = this.tokenStream.LA(1);
|
|
974
|
-
if ((((_la) & ~0x1F) === 0 && ((1 << _la) &
|
|
943
|
+
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 688128) !== 0)) {
|
|
975
944
|
{
|
|
976
|
-
this.state =
|
|
945
|
+
this.state = 199;
|
|
977
946
|
this.execModifiers();
|
|
978
947
|
}
|
|
979
948
|
}
|
|
980
|
-
this.state =
|
|
949
|
+
this.state = 203;
|
|
981
950
|
this.errorHandler.sync(this);
|
|
982
951
|
_la = this.tokenStream.LA(1);
|
|
983
|
-
if (_la ===
|
|
952
|
+
if (_la === 26) {
|
|
984
953
|
{
|
|
985
|
-
this.state =
|
|
954
|
+
this.state = 202;
|
|
986
955
|
this.opAside();
|
|
987
956
|
}
|
|
988
957
|
}
|
|
989
|
-
this.state =
|
|
958
|
+
this.state = 205;
|
|
990
959
|
this.statementEnd();
|
|
991
960
|
}
|
|
992
961
|
}
|
|
@@ -1006,32 +975,32 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1006
975
|
}
|
|
1007
976
|
bareStatement() {
|
|
1008
977
|
let localContext = new BareStatementContext(this.context, this.state);
|
|
1009
|
-
this.enterRule(localContext,
|
|
978
|
+
this.enterRule(localContext, 32, plurnkParser.RULE_bareStatement);
|
|
1010
979
|
let _la;
|
|
1011
980
|
try {
|
|
1012
981
|
this.enterOuterAlt(localContext, 1);
|
|
1013
982
|
{
|
|
1014
|
-
this.state =
|
|
983
|
+
this.state = 207;
|
|
1015
984
|
this.match(plurnkParser.OPEN_BARE);
|
|
1016
|
-
this.state =
|
|
985
|
+
this.state = 209;
|
|
1017
986
|
this.errorHandler.sync(this);
|
|
1018
987
|
_la = this.tokenStream.LA(1);
|
|
1019
|
-
if (_la ===
|
|
988
|
+
if (_la === 15) {
|
|
1020
989
|
{
|
|
1021
|
-
this.state =
|
|
990
|
+
this.state = 208;
|
|
1022
991
|
this.targetWithMetadata();
|
|
1023
992
|
}
|
|
1024
993
|
}
|
|
1025
|
-
this.state =
|
|
994
|
+
this.state = 212;
|
|
1026
995
|
this.errorHandler.sync(this);
|
|
1027
996
|
_la = this.tokenStream.LA(1);
|
|
1028
|
-
if (_la ===
|
|
997
|
+
if (_la === 26) {
|
|
1029
998
|
{
|
|
1030
|
-
this.state =
|
|
999
|
+
this.state = 211;
|
|
1031
1000
|
this.opAside();
|
|
1032
1001
|
}
|
|
1033
1002
|
}
|
|
1034
|
-
this.state =
|
|
1003
|
+
this.state = 214;
|
|
1035
1004
|
this.statementEnd();
|
|
1036
1005
|
}
|
|
1037
1006
|
}
|
|
@@ -1051,32 +1020,32 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1051
1020
|
}
|
|
1052
1021
|
workStatement() {
|
|
1053
1022
|
let localContext = new WorkStatementContext(this.context, this.state);
|
|
1054
|
-
this.enterRule(localContext,
|
|
1023
|
+
this.enterRule(localContext, 34, plurnkParser.RULE_workStatement);
|
|
1055
1024
|
let _la;
|
|
1056
1025
|
try {
|
|
1057
1026
|
this.enterOuterAlt(localContext, 1);
|
|
1058
1027
|
{
|
|
1059
|
-
this.state =
|
|
1028
|
+
this.state = 216;
|
|
1060
1029
|
this.match(plurnkParser.OPEN_WORK);
|
|
1061
|
-
this.state =
|
|
1030
|
+
this.state = 218;
|
|
1062
1031
|
this.errorHandler.sync(this);
|
|
1063
1032
|
_la = this.tokenStream.LA(1);
|
|
1064
|
-
if (_la ===
|
|
1033
|
+
if (_la === 15) {
|
|
1065
1034
|
{
|
|
1066
|
-
this.state =
|
|
1035
|
+
this.state = 217;
|
|
1067
1036
|
this.targetWithMetadata();
|
|
1068
1037
|
}
|
|
1069
1038
|
}
|
|
1070
|
-
this.state =
|
|
1039
|
+
this.state = 221;
|
|
1071
1040
|
this.errorHandler.sync(this);
|
|
1072
1041
|
_la = this.tokenStream.LA(1);
|
|
1073
|
-
if (_la ===
|
|
1042
|
+
if (_la === 26) {
|
|
1074
1043
|
{
|
|
1075
|
-
this.state =
|
|
1044
|
+
this.state = 220;
|
|
1076
1045
|
this.opAside();
|
|
1077
1046
|
}
|
|
1078
1047
|
}
|
|
1079
|
-
this.state =
|
|
1048
|
+
this.state = 223;
|
|
1080
1049
|
this.statementEnd();
|
|
1081
1050
|
}
|
|
1082
1051
|
}
|
|
@@ -1096,32 +1065,32 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1096
1065
|
}
|
|
1097
1066
|
forkStatement() {
|
|
1098
1067
|
let localContext = new ForkStatementContext(this.context, this.state);
|
|
1099
|
-
this.enterRule(localContext,
|
|
1068
|
+
this.enterRule(localContext, 36, plurnkParser.RULE_forkStatement);
|
|
1100
1069
|
let _la;
|
|
1101
1070
|
try {
|
|
1102
1071
|
this.enterOuterAlt(localContext, 1);
|
|
1103
1072
|
{
|
|
1104
|
-
this.state =
|
|
1073
|
+
this.state = 225;
|
|
1105
1074
|
this.match(plurnkParser.OPEN_FORK);
|
|
1106
|
-
this.state =
|
|
1075
|
+
this.state = 227;
|
|
1107
1076
|
this.errorHandler.sync(this);
|
|
1108
1077
|
_la = this.tokenStream.LA(1);
|
|
1109
|
-
if (_la ===
|
|
1078
|
+
if (_la === 15) {
|
|
1110
1079
|
{
|
|
1111
|
-
this.state =
|
|
1080
|
+
this.state = 226;
|
|
1112
1081
|
this.targetWithMetadata();
|
|
1113
1082
|
}
|
|
1114
1083
|
}
|
|
1115
|
-
this.state =
|
|
1084
|
+
this.state = 230;
|
|
1116
1085
|
this.errorHandler.sync(this);
|
|
1117
1086
|
_la = this.tokenStream.LA(1);
|
|
1118
|
-
if (_la ===
|
|
1087
|
+
if (_la === 26) {
|
|
1119
1088
|
{
|
|
1120
|
-
this.state =
|
|
1089
|
+
this.state = 229;
|
|
1121
1090
|
this.opAside();
|
|
1122
1091
|
}
|
|
1123
1092
|
}
|
|
1124
|
-
this.state =
|
|
1093
|
+
this.state = 232;
|
|
1125
1094
|
this.statementEnd();
|
|
1126
1095
|
}
|
|
1127
1096
|
}
|
|
@@ -1141,32 +1110,32 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1141
1110
|
}
|
|
1142
1111
|
killStatement() {
|
|
1143
1112
|
let localContext = new KillStatementContext(this.context, this.state);
|
|
1144
|
-
this.enterRule(localContext,
|
|
1113
|
+
this.enterRule(localContext, 38, plurnkParser.RULE_killStatement);
|
|
1145
1114
|
let _la;
|
|
1146
1115
|
try {
|
|
1147
1116
|
this.enterOuterAlt(localContext, 1);
|
|
1148
1117
|
{
|
|
1149
|
-
this.state =
|
|
1118
|
+
this.state = 234;
|
|
1150
1119
|
this.match(plurnkParser.OPEN_KILL);
|
|
1151
|
-
this.state =
|
|
1120
|
+
this.state = 236;
|
|
1152
1121
|
this.errorHandler.sync(this);
|
|
1153
1122
|
_la = this.tokenStream.LA(1);
|
|
1154
|
-
if (_la ===
|
|
1123
|
+
if (_la === 15 || _la === 19) {
|
|
1155
1124
|
{
|
|
1156
|
-
this.state =
|
|
1125
|
+
this.state = 235;
|
|
1157
1126
|
this.slotModifiers();
|
|
1158
1127
|
}
|
|
1159
1128
|
}
|
|
1160
|
-
this.state =
|
|
1129
|
+
this.state = 239;
|
|
1161
1130
|
this.errorHandler.sync(this);
|
|
1162
1131
|
_la = this.tokenStream.LA(1);
|
|
1163
|
-
if (_la ===
|
|
1132
|
+
if (_la === 26) {
|
|
1164
1133
|
{
|
|
1165
|
-
this.state =
|
|
1134
|
+
this.state = 238;
|
|
1166
1135
|
this.opAside();
|
|
1167
1136
|
}
|
|
1168
1137
|
}
|
|
1169
|
-
this.state =
|
|
1138
|
+
this.state = 241;
|
|
1170
1139
|
this.statementEnd();
|
|
1171
1140
|
}
|
|
1172
1141
|
}
|
|
@@ -1186,32 +1155,32 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1186
1155
|
}
|
|
1187
1156
|
lookStatement() {
|
|
1188
1157
|
let localContext = new LookStatementContext(this.context, this.state);
|
|
1189
|
-
this.enterRule(localContext,
|
|
1158
|
+
this.enterRule(localContext, 40, plurnkParser.RULE_lookStatement);
|
|
1190
1159
|
let _la;
|
|
1191
1160
|
try {
|
|
1192
1161
|
this.enterOuterAlt(localContext, 1);
|
|
1193
1162
|
{
|
|
1194
|
-
this.state =
|
|
1163
|
+
this.state = 243;
|
|
1195
1164
|
this.match(plurnkParser.OPEN_LOOK);
|
|
1196
|
-
this.state =
|
|
1165
|
+
this.state = 245;
|
|
1197
1166
|
this.errorHandler.sync(this);
|
|
1198
1167
|
_la = this.tokenStream.LA(1);
|
|
1199
|
-
if (_la ===
|
|
1168
|
+
if (_la === 15 || _la === 19) {
|
|
1200
1169
|
{
|
|
1201
|
-
this.state =
|
|
1170
|
+
this.state = 244;
|
|
1202
1171
|
this.slotModifiers();
|
|
1203
1172
|
}
|
|
1204
1173
|
}
|
|
1205
|
-
this.state =
|
|
1174
|
+
this.state = 248;
|
|
1206
1175
|
this.errorHandler.sync(this);
|
|
1207
1176
|
_la = this.tokenStream.LA(1);
|
|
1208
|
-
if (_la ===
|
|
1177
|
+
if (_la === 26) {
|
|
1209
1178
|
{
|
|
1210
|
-
this.state =
|
|
1179
|
+
this.state = 247;
|
|
1211
1180
|
this.opAside();
|
|
1212
1181
|
}
|
|
1213
1182
|
}
|
|
1214
|
-
this.state =
|
|
1183
|
+
this.state = 250;
|
|
1215
1184
|
this.statementEnd();
|
|
1216
1185
|
}
|
|
1217
1186
|
}
|
|
@@ -1231,11 +1200,11 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1231
1200
|
}
|
|
1232
1201
|
opAside() {
|
|
1233
1202
|
let localContext = new OpAsideContext(this.context, this.state);
|
|
1234
|
-
this.enterRule(localContext,
|
|
1203
|
+
this.enterRule(localContext, 42, plurnkParser.RULE_opAside);
|
|
1235
1204
|
try {
|
|
1236
1205
|
this.enterOuterAlt(localContext, 1);
|
|
1237
1206
|
{
|
|
1238
|
-
this.state =
|
|
1207
|
+
this.state = 252;
|
|
1239
1208
|
this.match(plurnkParser.ASIDE);
|
|
1240
1209
|
}
|
|
1241
1210
|
}
|
|
@@ -1255,39 +1224,39 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1255
1224
|
}
|
|
1256
1225
|
statementEnd() {
|
|
1257
1226
|
let localContext = new StatementEndContext(this.context, this.state);
|
|
1258
|
-
this.enterRule(localContext,
|
|
1227
|
+
this.enterRule(localContext, 44, plurnkParser.RULE_statementEnd);
|
|
1259
1228
|
let _la;
|
|
1260
1229
|
try {
|
|
1261
|
-
this.state =
|
|
1230
|
+
this.state = 267;
|
|
1262
1231
|
this.errorHandler.sync(this);
|
|
1263
1232
|
switch (this.tokenStream.LA(1)) {
|
|
1264
1233
|
case plurnkParser.SECTION_END:
|
|
1265
1234
|
this.enterOuterAlt(localContext, 1);
|
|
1266
1235
|
{
|
|
1267
|
-
this.state =
|
|
1236
|
+
this.state = 254;
|
|
1268
1237
|
this.match(plurnkParser.SECTION_END);
|
|
1269
1238
|
}
|
|
1270
1239
|
break;
|
|
1271
1240
|
case plurnkParser.BODY_OPEN:
|
|
1272
1241
|
this.enterOuterAlt(localContext, 2);
|
|
1273
1242
|
{
|
|
1274
|
-
this.state =
|
|
1243
|
+
this.state = 255;
|
|
1275
1244
|
this.match(plurnkParser.BODY_OPEN);
|
|
1276
|
-
this.state =
|
|
1245
|
+
this.state = 257;
|
|
1277
1246
|
this.errorHandler.sync(this);
|
|
1278
1247
|
_la = this.tokenStream.LA(1);
|
|
1279
|
-
if (_la ===
|
|
1248
|
+
if (_la === 24) {
|
|
1280
1249
|
{
|
|
1281
|
-
this.state =
|
|
1250
|
+
this.state = 256;
|
|
1282
1251
|
this.body();
|
|
1283
1252
|
}
|
|
1284
1253
|
}
|
|
1285
|
-
this.state =
|
|
1254
|
+
this.state = 260;
|
|
1286
1255
|
this.errorHandler.sync(this);
|
|
1287
1256
|
_la = this.tokenStream.LA(1);
|
|
1288
|
-
if (_la ===
|
|
1257
|
+
if (_la === 21) {
|
|
1289
1258
|
{
|
|
1290
|
-
this.state =
|
|
1259
|
+
this.state = 259;
|
|
1291
1260
|
this.match(plurnkParser.SECTION_END);
|
|
1292
1261
|
}
|
|
1293
1262
|
}
|
|
@@ -1296,14 +1265,14 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1296
1265
|
case plurnkParser.BODY_TEXT:
|
|
1297
1266
|
this.enterOuterAlt(localContext, 3);
|
|
1298
1267
|
{
|
|
1299
|
-
this.state =
|
|
1268
|
+
this.state = 262;
|
|
1300
1269
|
this.body();
|
|
1301
|
-
this.state =
|
|
1270
|
+
this.state = 264;
|
|
1302
1271
|
this.errorHandler.sync(this);
|
|
1303
1272
|
_la = this.tokenStream.LA(1);
|
|
1304
|
-
if (_la ===
|
|
1273
|
+
if (_la === 21) {
|
|
1305
1274
|
{
|
|
1306
|
-
this.state =
|
|
1275
|
+
this.state = 263;
|
|
1307
1276
|
this.match(plurnkParser.SECTION_END);
|
|
1308
1277
|
}
|
|
1309
1278
|
}
|
|
@@ -1316,7 +1285,8 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1316
1285
|
case plurnkParser.OPEN_COPY:
|
|
1317
1286
|
case plurnkParser.OPEN_MOVE:
|
|
1318
1287
|
case plurnkParser.OPEN_SEND:
|
|
1319
|
-
case plurnkParser.
|
|
1288
|
+
case plurnkParser.OPEN_NOTE:
|
|
1289
|
+
case plurnkParser.OPEN_WAIT:
|
|
1320
1290
|
case plurnkParser.OPEN_EXEC:
|
|
1321
1291
|
case plurnkParser.OPEN_BARE:
|
|
1322
1292
|
case plurnkParser.OPEN_WORK:
|
|
@@ -1348,13 +1318,13 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1348
1318
|
}
|
|
1349
1319
|
transferModifiers() {
|
|
1350
1320
|
let localContext = new TransferModifiersContext(this.context, this.state);
|
|
1351
|
-
this.enterRule(localContext,
|
|
1321
|
+
this.enterRule(localContext, 46, plurnkParser.RULE_transferModifiers);
|
|
1352
1322
|
try {
|
|
1353
1323
|
this.enterOuterAlt(localContext, 1);
|
|
1354
1324
|
{
|
|
1355
|
-
this.state =
|
|
1325
|
+
this.state = 269;
|
|
1356
1326
|
this.resourceSelection();
|
|
1357
|
-
this.state =
|
|
1327
|
+
this.state = 270;
|
|
1358
1328
|
this.resourceSelection();
|
|
1359
1329
|
}
|
|
1360
1330
|
}
|
|
@@ -1374,24 +1344,24 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1374
1344
|
}
|
|
1375
1345
|
resourceSelection() {
|
|
1376
1346
|
let localContext = new ResourceSelectionContext(this.context, this.state);
|
|
1377
|
-
this.enterRule(localContext,
|
|
1347
|
+
this.enterRule(localContext, 48, plurnkParser.RULE_resourceSelection);
|
|
1378
1348
|
let _la;
|
|
1379
1349
|
try {
|
|
1380
1350
|
this.enterOuterAlt(localContext, 1);
|
|
1381
1351
|
{
|
|
1382
|
-
this.state =
|
|
1352
|
+
this.state = 272;
|
|
1383
1353
|
this.target();
|
|
1384
|
-
this.state =
|
|
1354
|
+
this.state = 276;
|
|
1385
1355
|
this.errorHandler.sync(this);
|
|
1386
1356
|
_la = this.tokenStream.LA(1);
|
|
1387
|
-
while (_la ===
|
|
1357
|
+
while (_la === 17 || _la === 19) {
|
|
1388
1358
|
{
|
|
1389
1359
|
{
|
|
1390
|
-
this.state =
|
|
1360
|
+
this.state = 273;
|
|
1391
1361
|
this.selectionModifier();
|
|
1392
1362
|
}
|
|
1393
1363
|
}
|
|
1394
|
-
this.state =
|
|
1364
|
+
this.state = 278;
|
|
1395
1365
|
this.errorHandler.sync(this);
|
|
1396
1366
|
_la = this.tokenStream.LA(1);
|
|
1397
1367
|
}
|
|
@@ -1413,22 +1383,22 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1413
1383
|
}
|
|
1414
1384
|
selectionModifier() {
|
|
1415
1385
|
let localContext = new SelectionModifierContext(this.context, this.state);
|
|
1416
|
-
this.enterRule(localContext,
|
|
1386
|
+
this.enterRule(localContext, 50, plurnkParser.RULE_selectionModifier);
|
|
1417
1387
|
try {
|
|
1418
|
-
this.state =
|
|
1388
|
+
this.state = 281;
|
|
1419
1389
|
this.errorHandler.sync(this);
|
|
1420
1390
|
switch (this.tokenStream.LA(1)) {
|
|
1421
1391
|
case plurnkParser.L_MARKER:
|
|
1422
1392
|
this.enterOuterAlt(localContext, 1);
|
|
1423
1393
|
{
|
|
1424
|
-
this.state =
|
|
1394
|
+
this.state = 279;
|
|
1425
1395
|
this.lineMarker();
|
|
1426
1396
|
}
|
|
1427
1397
|
break;
|
|
1428
1398
|
case plurnkParser.LBRACKET:
|
|
1429
1399
|
this.enterOuterAlt(localContext, 2);
|
|
1430
1400
|
{
|
|
1431
|
-
this.state =
|
|
1401
|
+
this.state = 280;
|
|
1432
1402
|
this.metadata();
|
|
1433
1403
|
}
|
|
1434
1404
|
break;
|
|
@@ -1452,30 +1422,30 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1452
1422
|
}
|
|
1453
1423
|
emptyStatementEnd() {
|
|
1454
1424
|
let localContext = new EmptyStatementEndContext(this.context, this.state);
|
|
1455
|
-
this.enterRule(localContext,
|
|
1425
|
+
this.enterRule(localContext, 52, plurnkParser.RULE_emptyStatementEnd);
|
|
1456
1426
|
let _la;
|
|
1457
1427
|
try {
|
|
1458
|
-
this.state =
|
|
1428
|
+
this.state = 289;
|
|
1459
1429
|
this.errorHandler.sync(this);
|
|
1460
1430
|
switch (this.tokenStream.LA(1)) {
|
|
1461
1431
|
case plurnkParser.SECTION_END:
|
|
1462
1432
|
this.enterOuterAlt(localContext, 1);
|
|
1463
1433
|
{
|
|
1464
|
-
this.state =
|
|
1434
|
+
this.state = 283;
|
|
1465
1435
|
this.match(plurnkParser.SECTION_END);
|
|
1466
1436
|
}
|
|
1467
1437
|
break;
|
|
1468
1438
|
case plurnkParser.BODY_OPEN:
|
|
1469
1439
|
this.enterOuterAlt(localContext, 2);
|
|
1470
1440
|
{
|
|
1471
|
-
this.state =
|
|
1441
|
+
this.state = 284;
|
|
1472
1442
|
this.match(plurnkParser.BODY_OPEN);
|
|
1473
|
-
this.state =
|
|
1443
|
+
this.state = 286;
|
|
1474
1444
|
this.errorHandler.sync(this);
|
|
1475
1445
|
_la = this.tokenStream.LA(1);
|
|
1476
|
-
if (_la ===
|
|
1446
|
+
if (_la === 21) {
|
|
1477
1447
|
{
|
|
1478
|
-
this.state =
|
|
1448
|
+
this.state = 285;
|
|
1479
1449
|
this.match(plurnkParser.SECTION_END);
|
|
1480
1450
|
}
|
|
1481
1451
|
}
|
|
@@ -1488,7 +1458,8 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1488
1458
|
case plurnkParser.OPEN_COPY:
|
|
1489
1459
|
case plurnkParser.OPEN_MOVE:
|
|
1490
1460
|
case plurnkParser.OPEN_SEND:
|
|
1491
|
-
case plurnkParser.
|
|
1461
|
+
case plurnkParser.OPEN_NOTE:
|
|
1462
|
+
case plurnkParser.OPEN_WAIT:
|
|
1492
1463
|
case plurnkParser.OPEN_EXEC:
|
|
1493
1464
|
case plurnkParser.OPEN_BARE:
|
|
1494
1465
|
case plurnkParser.OPEN_WORK:
|
|
@@ -1520,30 +1491,30 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1520
1491
|
}
|
|
1521
1492
|
slotModifiers() {
|
|
1522
1493
|
let localContext = new SlotModifiersContext(this.context, this.state);
|
|
1523
|
-
this.enterRule(localContext,
|
|
1494
|
+
this.enterRule(localContext, 54, plurnkParser.RULE_slotModifiers);
|
|
1524
1495
|
let _la;
|
|
1525
1496
|
try {
|
|
1526
|
-
this.state =
|
|
1497
|
+
this.state = 296;
|
|
1527
1498
|
this.errorHandler.sync(this);
|
|
1528
1499
|
switch (this.tokenStream.LA(1)) {
|
|
1529
1500
|
case plurnkParser.LPAREN:
|
|
1530
1501
|
this.enterOuterAlt(localContext, 1);
|
|
1531
1502
|
{
|
|
1532
|
-
this.state =
|
|
1503
|
+
this.state = 291;
|
|
1533
1504
|
this.resourceSelection();
|
|
1534
1505
|
}
|
|
1535
1506
|
break;
|
|
1536
1507
|
case plurnkParser.L_MARKER:
|
|
1537
1508
|
this.enterOuterAlt(localContext, 2);
|
|
1538
1509
|
{
|
|
1539
|
-
this.state =
|
|
1510
|
+
this.state = 292;
|
|
1540
1511
|
this.lineMarker();
|
|
1541
|
-
this.state =
|
|
1512
|
+
this.state = 294;
|
|
1542
1513
|
this.errorHandler.sync(this);
|
|
1543
1514
|
_la = this.tokenStream.LA(1);
|
|
1544
|
-
if (_la ===
|
|
1515
|
+
if (_la === 15) {
|
|
1545
1516
|
{
|
|
1546
|
-
this.state =
|
|
1517
|
+
this.state = 293;
|
|
1547
1518
|
this.targetWithMetadata();
|
|
1548
1519
|
}
|
|
1549
1520
|
}
|
|
@@ -1569,25 +1540,25 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1569
1540
|
}
|
|
1570
1541
|
execModifiers() {
|
|
1571
1542
|
let localContext = new ExecModifiersContext(this.context, this.state);
|
|
1572
|
-
this.enterRule(localContext,
|
|
1543
|
+
this.enterRule(localContext, 56, plurnkParser.RULE_execModifiers);
|
|
1573
1544
|
let _la;
|
|
1574
1545
|
try {
|
|
1575
1546
|
this.enterOuterAlt(localContext, 1);
|
|
1576
1547
|
{
|
|
1577
|
-
this.state =
|
|
1548
|
+
this.state = 299;
|
|
1578
1549
|
this.errorHandler.sync(this);
|
|
1579
1550
|
_la = this.tokenStream.LA(1);
|
|
1580
1551
|
do {
|
|
1581
1552
|
{
|
|
1582
1553
|
{
|
|
1583
|
-
this.state =
|
|
1554
|
+
this.state = 298;
|
|
1584
1555
|
this.execSlot();
|
|
1585
1556
|
}
|
|
1586
1557
|
}
|
|
1587
|
-
this.state =
|
|
1558
|
+
this.state = 301;
|
|
1588
1559
|
this.errorHandler.sync(this);
|
|
1589
1560
|
_la = this.tokenStream.LA(1);
|
|
1590
|
-
} while ((((_la) & ~0x1F) === 0 && ((1 << _la) &
|
|
1561
|
+
} while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 688128) !== 0));
|
|
1591
1562
|
}
|
|
1592
1563
|
}
|
|
1593
1564
|
catch (re) {
|
|
@@ -1606,29 +1577,29 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1606
1577
|
}
|
|
1607
1578
|
execSlot() {
|
|
1608
1579
|
let localContext = new ExecSlotContext(this.context, this.state);
|
|
1609
|
-
this.enterRule(localContext,
|
|
1580
|
+
this.enterRule(localContext, 58, plurnkParser.RULE_execSlot);
|
|
1610
1581
|
try {
|
|
1611
|
-
this.state =
|
|
1582
|
+
this.state = 306;
|
|
1612
1583
|
this.errorHandler.sync(this);
|
|
1613
1584
|
switch (this.tokenStream.LA(1)) {
|
|
1614
1585
|
case plurnkParser.LPAREN:
|
|
1615
1586
|
this.enterOuterAlt(localContext, 1);
|
|
1616
1587
|
{
|
|
1617
|
-
this.state =
|
|
1588
|
+
this.state = 303;
|
|
1618
1589
|
this.targetWithMetadata();
|
|
1619
1590
|
}
|
|
1620
1591
|
break;
|
|
1621
1592
|
case plurnkParser.LBRACKET:
|
|
1622
1593
|
this.enterOuterAlt(localContext, 2);
|
|
1623
1594
|
{
|
|
1624
|
-
this.state =
|
|
1595
|
+
this.state = 304;
|
|
1625
1596
|
this.metadata();
|
|
1626
1597
|
}
|
|
1627
1598
|
break;
|
|
1628
1599
|
case plurnkParser.L_MARKER:
|
|
1629
1600
|
this.enterOuterAlt(localContext, 3);
|
|
1630
1601
|
{
|
|
1631
|
-
this.state =
|
|
1602
|
+
this.state = 305;
|
|
1632
1603
|
this.lineMarker();
|
|
1633
1604
|
}
|
|
1634
1605
|
break;
|
|
@@ -1652,37 +1623,37 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1652
1623
|
}
|
|
1653
1624
|
target() {
|
|
1654
1625
|
let localContext = new TargetContext(this.context, this.state);
|
|
1655
|
-
this.enterRule(localContext,
|
|
1626
|
+
this.enterRule(localContext, 60, plurnkParser.RULE_target);
|
|
1656
1627
|
let _la;
|
|
1657
1628
|
try {
|
|
1658
1629
|
this.enterOuterAlt(localContext, 1);
|
|
1659
1630
|
{
|
|
1660
|
-
this.state =
|
|
1631
|
+
this.state = 308;
|
|
1661
1632
|
this.match(plurnkParser.LPAREN);
|
|
1662
|
-
this.state =
|
|
1633
|
+
this.state = 312;
|
|
1663
1634
|
this.errorHandler.sync(this);
|
|
1664
1635
|
_la = this.tokenStream.LA(1);
|
|
1665
|
-
while (_la ===
|
|
1636
|
+
while (_la === 22) {
|
|
1666
1637
|
{
|
|
1667
1638
|
{
|
|
1668
|
-
this.state =
|
|
1639
|
+
this.state = 309;
|
|
1669
1640
|
this.match(plurnkParser.TARGET_TEXT);
|
|
1670
1641
|
}
|
|
1671
1642
|
}
|
|
1672
|
-
this.state =
|
|
1643
|
+
this.state = 314;
|
|
1673
1644
|
this.errorHandler.sync(this);
|
|
1674
1645
|
_la = this.tokenStream.LA(1);
|
|
1675
1646
|
}
|
|
1676
|
-
this.state =
|
|
1647
|
+
this.state = 316;
|
|
1677
1648
|
this.errorHandler.sync(this);
|
|
1678
1649
|
_la = this.tokenStream.LA(1);
|
|
1679
|
-
if (_la ===
|
|
1650
|
+
if (_la === 19) {
|
|
1680
1651
|
{
|
|
1681
|
-
this.state =
|
|
1652
|
+
this.state = 315;
|
|
1682
1653
|
this.lineMarker();
|
|
1683
1654
|
}
|
|
1684
1655
|
}
|
|
1685
|
-
this.state =
|
|
1656
|
+
this.state = 318;
|
|
1686
1657
|
this.match(plurnkParser.RPAREN);
|
|
1687
1658
|
}
|
|
1688
1659
|
}
|
|
@@ -1702,28 +1673,28 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1702
1673
|
}
|
|
1703
1674
|
targetWithMetadata() {
|
|
1704
1675
|
let localContext = new TargetWithMetadataContext(this.context, this.state);
|
|
1705
|
-
this.enterRule(localContext,
|
|
1676
|
+
this.enterRule(localContext, 62, plurnkParser.RULE_targetWithMetadata);
|
|
1706
1677
|
try {
|
|
1707
1678
|
let alternative;
|
|
1708
1679
|
this.enterOuterAlt(localContext, 1);
|
|
1709
1680
|
{
|
|
1710
|
-
this.state =
|
|
1681
|
+
this.state = 320;
|
|
1711
1682
|
this.target();
|
|
1712
|
-
this.state =
|
|
1683
|
+
this.state = 324;
|
|
1713
1684
|
this.errorHandler.sync(this);
|
|
1714
|
-
alternative = this.interpreter.adaptivePredict(this.tokenStream,
|
|
1685
|
+
alternative = this.interpreter.adaptivePredict(this.tokenStream, 47, this.context);
|
|
1715
1686
|
while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) {
|
|
1716
1687
|
if (alternative === 1) {
|
|
1717
1688
|
{
|
|
1718
1689
|
{
|
|
1719
|
-
this.state =
|
|
1690
|
+
this.state = 321;
|
|
1720
1691
|
this.metadata();
|
|
1721
1692
|
}
|
|
1722
1693
|
}
|
|
1723
1694
|
}
|
|
1724
|
-
this.state =
|
|
1695
|
+
this.state = 326;
|
|
1725
1696
|
this.errorHandler.sync(this);
|
|
1726
|
-
alternative = this.interpreter.adaptivePredict(this.tokenStream,
|
|
1697
|
+
alternative = this.interpreter.adaptivePredict(this.tokenStream, 47, this.context);
|
|
1727
1698
|
}
|
|
1728
1699
|
}
|
|
1729
1700
|
}
|
|
@@ -1743,28 +1714,28 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1743
1714
|
}
|
|
1744
1715
|
metadata() {
|
|
1745
1716
|
let localContext = new MetadataContext(this.context, this.state);
|
|
1746
|
-
this.enterRule(localContext,
|
|
1717
|
+
this.enterRule(localContext, 64, plurnkParser.RULE_metadata);
|
|
1747
1718
|
let _la;
|
|
1748
1719
|
try {
|
|
1749
1720
|
this.enterOuterAlt(localContext, 1);
|
|
1750
1721
|
{
|
|
1751
|
-
this.state =
|
|
1722
|
+
this.state = 327;
|
|
1752
1723
|
this.match(plurnkParser.LBRACKET);
|
|
1753
|
-
this.state =
|
|
1724
|
+
this.state = 331;
|
|
1754
1725
|
this.errorHandler.sync(this);
|
|
1755
1726
|
_la = this.tokenStream.LA(1);
|
|
1756
|
-
while (_la ===
|
|
1727
|
+
while (_la === 23) {
|
|
1757
1728
|
{
|
|
1758
1729
|
{
|
|
1759
|
-
this.state =
|
|
1730
|
+
this.state = 328;
|
|
1760
1731
|
this.match(plurnkParser.METADATA_TEXT);
|
|
1761
1732
|
}
|
|
1762
1733
|
}
|
|
1763
|
-
this.state =
|
|
1734
|
+
this.state = 333;
|
|
1764
1735
|
this.errorHandler.sync(this);
|
|
1765
1736
|
_la = this.tokenStream.LA(1);
|
|
1766
1737
|
}
|
|
1767
|
-
this.state =
|
|
1738
|
+
this.state = 334;
|
|
1768
1739
|
this.match(plurnkParser.RBRACKET);
|
|
1769
1740
|
}
|
|
1770
1741
|
}
|
|
@@ -1784,11 +1755,11 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1784
1755
|
}
|
|
1785
1756
|
lineMarker() {
|
|
1786
1757
|
let localContext = new LineMarkerContext(this.context, this.state);
|
|
1787
|
-
this.enterRule(localContext,
|
|
1758
|
+
this.enterRule(localContext, 66, plurnkParser.RULE_lineMarker);
|
|
1788
1759
|
try {
|
|
1789
1760
|
this.enterOuterAlt(localContext, 1);
|
|
1790
1761
|
{
|
|
1791
|
-
this.state =
|
|
1762
|
+
this.state = 336;
|
|
1792
1763
|
this.match(plurnkParser.L_MARKER);
|
|
1793
1764
|
}
|
|
1794
1765
|
}
|
|
@@ -1808,25 +1779,25 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1808
1779
|
}
|
|
1809
1780
|
body() {
|
|
1810
1781
|
let localContext = new BodyContext(this.context, this.state);
|
|
1811
|
-
this.enterRule(localContext,
|
|
1782
|
+
this.enterRule(localContext, 68, plurnkParser.RULE_body);
|
|
1812
1783
|
let _la;
|
|
1813
1784
|
try {
|
|
1814
1785
|
this.enterOuterAlt(localContext, 1);
|
|
1815
1786
|
{
|
|
1816
|
-
this.state =
|
|
1787
|
+
this.state = 339;
|
|
1817
1788
|
this.errorHandler.sync(this);
|
|
1818
1789
|
_la = this.tokenStream.LA(1);
|
|
1819
1790
|
do {
|
|
1820
1791
|
{
|
|
1821
1792
|
{
|
|
1822
|
-
this.state =
|
|
1793
|
+
this.state = 338;
|
|
1823
1794
|
this.match(plurnkParser.BODY_TEXT);
|
|
1824
1795
|
}
|
|
1825
1796
|
}
|
|
1826
|
-
this.state =
|
|
1797
|
+
this.state = 341;
|
|
1827
1798
|
this.errorHandler.sync(this);
|
|
1828
1799
|
_la = this.tokenStream.LA(1);
|
|
1829
|
-
} while (_la ===
|
|
1800
|
+
} while (_la === 24);
|
|
1830
1801
|
}
|
|
1831
1802
|
}
|
|
1832
1803
|
catch (re) {
|
|
@@ -1844,144 +1815,135 @@ export class plurnkParser extends antlr.Parser {
|
|
|
1844
1815
|
return localContext;
|
|
1845
1816
|
}
|
|
1846
1817
|
static _serializedATN = [
|
|
1847
|
-
4, 1,
|
|
1818
|
+
4, 1, 36, 344, 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,
|
|
1848
1819
|
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,
|
|
1849
1820
|
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,
|
|
1850
1821
|
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,
|
|
1851
1822
|
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,
|
|
1852
|
-
7, 33, 2, 34, 7, 34,
|
|
1853
|
-
|
|
1854
|
-
3,
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
1,
|
|
1865
|
-
8,
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
0, 0,
|
|
1879
|
-
|
|
1880
|
-
0,
|
|
1881
|
-
0, 0, 0,
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
1, 0, 0, 0,
|
|
1885
|
-
0, 0,
|
|
1886
|
-
|
|
1887
|
-
1, 0, 0, 0,
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
0, 0, 0,
|
|
1898
|
-
0, 0, 0,
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
0,
|
|
1905
|
-
0,
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
1, 0, 0, 0,
|
|
1910
|
-
1, 0, 0, 0,
|
|
1911
|
-
1, 0, 0, 0,
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
1, 0, 0, 0,
|
|
1917
|
-
|
|
1918
|
-
1, 0, 0, 0,
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
1, 0, 0, 0,
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
0,
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
1, 0, 0, 0,
|
|
1938
|
-
1, 0, 0, 0,
|
|
1939
|
-
|
|
1940
|
-
1, 0, 0, 0,
|
|
1941
|
-
1, 0, 0, 0,
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
0, 0,
|
|
1966
|
-
|
|
1967
|
-
0, 0, 0,
|
|
1968
|
-
|
|
1969
|
-
0, 0,
|
|
1970
|
-
|
|
1971
|
-
0, 0, 0,
|
|
1972
|
-
1, 0, 0, 0,
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
1, 0, 0, 0, 349, 65, 1, 0, 0, 0, 350, 348, 1, 0, 0, 0, 351, 355, 5, 16, 0, 0, 352, 354,
|
|
1977
|
-
5, 22, 0, 0, 353, 352, 1, 0, 0, 0, 354, 357, 1, 0, 0, 0, 355, 353, 1, 0, 0, 0, 355, 356,
|
|
1978
|
-
1, 0, 0, 0, 356, 358, 1, 0, 0, 0, 357, 355, 1, 0, 0, 0, 358, 359, 5, 17, 0, 0, 359, 67,
|
|
1979
|
-
1, 0, 0, 0, 360, 361, 5, 18, 0, 0, 361, 69, 1, 0, 0, 0, 362, 364, 5, 23, 0, 0, 363, 362,
|
|
1980
|
-
1, 0, 0, 0, 364, 365, 1, 0, 0, 0, 365, 363, 1, 0, 0, 0, 365, 366, 1, 0, 0, 0, 366, 71, 1,
|
|
1981
|
-
0, 0, 0, 54, 78, 85, 93, 99, 102, 108, 111, 116, 124, 131, 145, 158, 162, 165, 171,
|
|
1982
|
-
174, 180, 183, 190, 197, 203, 206, 209, 215, 218, 224, 227, 233, 236, 242, 245,
|
|
1983
|
-
251, 254, 260, 263, 269, 272, 281, 284, 288, 291, 300, 305, 310, 313, 318, 320,
|
|
1984
|
-
325, 330, 336, 340, 348, 355, 365
|
|
1823
|
+
7, 33, 2, 34, 7, 34, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 4, 1, 76, 8, 1, 11, 1, 12, 1, 77, 1, 2, 5,
|
|
1824
|
+
2, 81, 8, 2, 10, 2, 12, 2, 84, 9, 2, 1, 2, 1, 2, 1, 3, 5, 3, 89, 8, 3, 10, 3, 12, 3, 92, 9,
|
|
1825
|
+
3, 1, 3, 1, 3, 1, 4, 1, 4, 3, 4, 98, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5,
|
|
1826
|
+
1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 113, 8, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6,
|
|
1827
|
+
1, 6, 1, 6, 1, 6, 3, 6, 127, 8, 6, 1, 7, 1, 7, 3, 7, 131, 8, 7, 1, 7, 3, 7, 134, 8, 7, 1, 7,
|
|
1828
|
+
1, 7, 1, 8, 1, 8, 3, 8, 140, 8, 8, 1, 8, 3, 8, 143, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 3, 9, 149,
|
|
1829
|
+
8, 9, 1, 9, 3, 9, 152, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 3, 10, 159, 8, 10, 1, 10, 1,
|
|
1830
|
+
10, 1, 11, 1, 11, 1, 11, 3, 11, 166, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 3, 12, 172, 8, 12,
|
|
1831
|
+
1, 12, 3, 12, 175, 8, 12, 1, 12, 1, 12, 1, 13, 1, 13, 3, 13, 181, 8, 13, 1, 13, 1, 13, 1,
|
|
1832
|
+
14, 1, 14, 1, 14, 4, 14, 188, 8, 14, 11, 14, 12, 14, 189, 3, 14, 192, 8, 14, 1, 14, 3,
|
|
1833
|
+
14, 195, 8, 14, 1, 14, 1, 14, 1, 15, 1, 15, 3, 15, 201, 8, 15, 1, 15, 3, 15, 204, 8, 15,
|
|
1834
|
+
1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 210, 8, 16, 1, 16, 3, 16, 213, 8, 16, 1, 16, 1, 16, 1,
|
|
1835
|
+
17, 1, 17, 3, 17, 219, 8, 17, 1, 17, 3, 17, 222, 8, 17, 1, 17, 1, 17, 1, 18, 1, 18, 3, 18,
|
|
1836
|
+
228, 8, 18, 1, 18, 3, 18, 231, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 3, 19, 237, 8, 19, 1,
|
|
1837
|
+
19, 3, 19, 240, 8, 19, 1, 19, 1, 19, 1, 20, 1, 20, 3, 20, 246, 8, 20, 1, 20, 3, 20, 249,
|
|
1838
|
+
8, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 3, 22, 258, 8, 22, 1, 22, 3, 22,
|
|
1839
|
+
261, 8, 22, 1, 22, 1, 22, 3, 22, 265, 8, 22, 1, 22, 3, 22, 268, 8, 22, 1, 23, 1, 23, 1,
|
|
1840
|
+
23, 1, 24, 1, 24, 5, 24, 275, 8, 24, 10, 24, 12, 24, 278, 9, 24, 1, 25, 1, 25, 3, 25, 282,
|
|
1841
|
+
8, 25, 1, 26, 1, 26, 1, 26, 3, 26, 287, 8, 26, 1, 26, 3, 26, 290, 8, 26, 1, 27, 1, 27, 1,
|
|
1842
|
+
27, 3, 27, 295, 8, 27, 3, 27, 297, 8, 27, 1, 28, 4, 28, 300, 8, 28, 11, 28, 12, 28, 301,
|
|
1843
|
+
1, 29, 1, 29, 1, 29, 3, 29, 307, 8, 29, 1, 30, 1, 30, 5, 30, 311, 8, 30, 10, 30, 12, 30,
|
|
1844
|
+
314, 9, 30, 1, 30, 3, 30, 317, 8, 30, 1, 30, 1, 30, 1, 31, 1, 31, 5, 31, 323, 8, 31, 10,
|
|
1845
|
+
31, 12, 31, 326, 9, 31, 1, 32, 1, 32, 5, 32, 330, 8, 32, 10, 32, 12, 32, 333, 9, 32, 1,
|
|
1846
|
+
32, 1, 32, 1, 33, 1, 33, 1, 34, 4, 34, 340, 8, 34, 11, 34, 12, 34, 341, 1, 34, 0, 0, 35,
|
|
1847
|
+
0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44,
|
|
1848
|
+
46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 0, 0, 384, 0, 70, 1, 0, 0, 0, 2, 75, 1,
|
|
1849
|
+
0, 0, 0, 4, 82, 1, 0, 0, 0, 6, 90, 1, 0, 0, 0, 8, 97, 1, 0, 0, 0, 10, 112, 1, 0, 0, 0, 12, 126,
|
|
1850
|
+
1, 0, 0, 0, 14, 128, 1, 0, 0, 0, 16, 137, 1, 0, 0, 0, 18, 146, 1, 0, 0, 0, 20, 155, 1, 0,
|
|
1851
|
+
0, 0, 22, 162, 1, 0, 0, 0, 24, 169, 1, 0, 0, 0, 26, 178, 1, 0, 0, 0, 28, 184, 1, 0, 0, 0,
|
|
1852
|
+
30, 198, 1, 0, 0, 0, 32, 207, 1, 0, 0, 0, 34, 216, 1, 0, 0, 0, 36, 225, 1, 0, 0, 0, 38, 234,
|
|
1853
|
+
1, 0, 0, 0, 40, 243, 1, 0, 0, 0, 42, 252, 1, 0, 0, 0, 44, 267, 1, 0, 0, 0, 46, 269, 1, 0,
|
|
1854
|
+
0, 0, 48, 272, 1, 0, 0, 0, 50, 281, 1, 0, 0, 0, 52, 289, 1, 0, 0, 0, 54, 296, 1, 0, 0, 0,
|
|
1855
|
+
56, 299, 1, 0, 0, 0, 58, 306, 1, 0, 0, 0, 60, 308, 1, 0, 0, 0, 62, 320, 1, 0, 0, 0, 64, 327,
|
|
1856
|
+
1, 0, 0, 0, 66, 336, 1, 0, 0, 0, 68, 339, 1, 0, 0, 0, 70, 71, 3, 2, 1, 0, 71, 72, 5, 0, 0,
|
|
1857
|
+
1, 72, 1, 1, 0, 0, 0, 73, 76, 3, 12, 6, 0, 74, 76, 3, 24, 12, 0, 75, 73, 1, 0, 0, 0, 75, 74,
|
|
1858
|
+
1, 0, 0, 0, 76, 77, 1, 0, 0, 0, 77, 75, 1, 0, 0, 0, 77, 78, 1, 0, 0, 0, 78, 3, 1, 0, 0, 0, 79,
|
|
1859
|
+
81, 3, 10, 5, 0, 80, 79, 1, 0, 0, 0, 81, 84, 1, 0, 0, 0, 82, 80, 1, 0, 0, 0, 82, 83, 1, 0,
|
|
1860
|
+
0, 0, 83, 85, 1, 0, 0, 0, 84, 82, 1, 0, 0, 0, 85, 86, 5, 0, 0, 1, 86, 5, 1, 0, 0, 0, 87, 89,
|
|
1861
|
+
3, 8, 4, 0, 88, 87, 1, 0, 0, 0, 89, 92, 1, 0, 0, 0, 90, 88, 1, 0, 0, 0, 90, 91, 1, 0, 0, 0,
|
|
1862
|
+
91, 93, 1, 0, 0, 0, 92, 90, 1, 0, 0, 0, 93, 94, 5, 0, 0, 1, 94, 7, 1, 0, 0, 0, 95, 98, 3, 10,
|
|
1863
|
+
5, 0, 96, 98, 3, 40, 20, 0, 97, 95, 1, 0, 0, 0, 97, 96, 1, 0, 0, 0, 98, 9, 1, 0, 0, 0, 99,
|
|
1864
|
+
113, 3, 14, 7, 0, 100, 113, 3, 16, 8, 0, 101, 113, 3, 18, 9, 0, 102, 113, 3, 20, 10, 0,
|
|
1865
|
+
103, 113, 3, 22, 11, 0, 104, 113, 3, 24, 12, 0, 105, 113, 3, 28, 14, 0, 106, 113, 3,
|
|
1866
|
+
30, 15, 0, 107, 113, 3, 32, 16, 0, 108, 113, 3, 34, 17, 0, 109, 113, 3, 36, 18, 0, 110,
|
|
1867
|
+
113, 3, 38, 19, 0, 111, 113, 3, 26, 13, 0, 112, 99, 1, 0, 0, 0, 112, 100, 1, 0, 0, 0, 112,
|
|
1868
|
+
101, 1, 0, 0, 0, 112, 102, 1, 0, 0, 0, 112, 103, 1, 0, 0, 0, 112, 104, 1, 0, 0, 0, 112,
|
|
1869
|
+
105, 1, 0, 0, 0, 112, 106, 1, 0, 0, 0, 112, 107, 1, 0, 0, 0, 112, 108, 1, 0, 0, 0, 112,
|
|
1870
|
+
109, 1, 0, 0, 0, 112, 110, 1, 0, 0, 0, 112, 111, 1, 0, 0, 0, 113, 11, 1, 0, 0, 0, 114, 127,
|
|
1871
|
+
3, 14, 7, 0, 115, 127, 3, 16, 8, 0, 116, 127, 3, 18, 9, 0, 117, 127, 3, 20, 10, 0, 118,
|
|
1872
|
+
127, 3, 22, 11, 0, 119, 127, 3, 28, 14, 0, 120, 127, 3, 30, 15, 0, 121, 127, 3, 32, 16,
|
|
1873
|
+
0, 122, 127, 3, 34, 17, 0, 123, 127, 3, 36, 18, 0, 124, 127, 3, 38, 19, 0, 125, 127,
|
|
1874
|
+
3, 26, 13, 0, 126, 114, 1, 0, 0, 0, 126, 115, 1, 0, 0, 0, 126, 116, 1, 0, 0, 0, 126, 117,
|
|
1875
|
+
1, 0, 0, 0, 126, 118, 1, 0, 0, 0, 126, 119, 1, 0, 0, 0, 126, 120, 1, 0, 0, 0, 126, 121,
|
|
1876
|
+
1, 0, 0, 0, 126, 122, 1, 0, 0, 0, 126, 123, 1, 0, 0, 0, 126, 124, 1, 0, 0, 0, 126, 125,
|
|
1877
|
+
1, 0, 0, 0, 127, 13, 1, 0, 0, 0, 128, 130, 5, 1, 0, 0, 129, 131, 3, 54, 27, 0, 130, 129,
|
|
1878
|
+
1, 0, 0, 0, 130, 131, 1, 0, 0, 0, 131, 133, 1, 0, 0, 0, 132, 134, 3, 42, 21, 0, 133, 132,
|
|
1879
|
+
1, 0, 0, 0, 133, 134, 1, 0, 0, 0, 134, 135, 1, 0, 0, 0, 135, 136, 3, 44, 22, 0, 136, 15,
|
|
1880
|
+
1, 0, 0, 0, 137, 139, 5, 2, 0, 0, 138, 140, 3, 54, 27, 0, 139, 138, 1, 0, 0, 0, 139, 140,
|
|
1881
|
+
1, 0, 0, 0, 140, 142, 1, 0, 0, 0, 141, 143, 3, 42, 21, 0, 142, 141, 1, 0, 0, 0, 142, 143,
|
|
1882
|
+
1, 0, 0, 0, 143, 144, 1, 0, 0, 0, 144, 145, 3, 44, 22, 0, 145, 17, 1, 0, 0, 0, 146, 148,
|
|
1883
|
+
5, 3, 0, 0, 147, 149, 3, 54, 27, 0, 148, 147, 1, 0, 0, 0, 148, 149, 1, 0, 0, 0, 149, 151,
|
|
1884
|
+
1, 0, 0, 0, 150, 152, 3, 42, 21, 0, 151, 150, 1, 0, 0, 0, 151, 152, 1, 0, 0, 0, 152, 153,
|
|
1885
|
+
1, 0, 0, 0, 153, 154, 3, 44, 22, 0, 154, 19, 1, 0, 0, 0, 155, 156, 5, 4, 0, 0, 156, 158,
|
|
1886
|
+
3, 46, 23, 0, 157, 159, 3, 42, 21, 0, 158, 157, 1, 0, 0, 0, 158, 159, 1, 0, 0, 0, 159,
|
|
1887
|
+
160, 1, 0, 0, 0, 160, 161, 3, 52, 26, 0, 161, 21, 1, 0, 0, 0, 162, 163, 5, 5, 0, 0, 163,
|
|
1888
|
+
165, 3, 46, 23, 0, 164, 166, 3, 42, 21, 0, 165, 164, 1, 0, 0, 0, 165, 166, 1, 0, 0, 0,
|
|
1889
|
+
166, 167, 1, 0, 0, 0, 167, 168, 3, 52, 26, 0, 168, 23, 1, 0, 0, 0, 169, 171, 5, 8, 0, 0,
|
|
1890
|
+
170, 172, 3, 56, 28, 0, 171, 170, 1, 0, 0, 0, 171, 172, 1, 0, 0, 0, 172, 174, 1, 0, 0,
|
|
1891
|
+
0, 173, 175, 3, 42, 21, 0, 174, 173, 1, 0, 0, 0, 174, 175, 1, 0, 0, 0, 175, 176, 1, 0,
|
|
1892
|
+
0, 0, 176, 177, 3, 44, 22, 0, 177, 25, 1, 0, 0, 0, 178, 180, 5, 7, 0, 0, 179, 181, 3, 42,
|
|
1893
|
+
21, 0, 180, 179, 1, 0, 0, 0, 180, 181, 1, 0, 0, 0, 181, 182, 1, 0, 0, 0, 182, 183, 3, 44,
|
|
1894
|
+
22, 0, 183, 27, 1, 0, 0, 0, 184, 191, 5, 6, 0, 0, 185, 192, 3, 48, 24, 0, 186, 188, 3,
|
|
1895
|
+
64, 32, 0, 187, 186, 1, 0, 0, 0, 188, 189, 1, 0, 0, 0, 189, 187, 1, 0, 0, 0, 189, 190,
|
|
1896
|
+
1, 0, 0, 0, 190, 192, 1, 0, 0, 0, 191, 185, 1, 0, 0, 0, 191, 187, 1, 0, 0, 0, 191, 192,
|
|
1897
|
+
1, 0, 0, 0, 192, 194, 1, 0, 0, 0, 193, 195, 3, 42, 21, 0, 194, 193, 1, 0, 0, 0, 194, 195,
|
|
1898
|
+
1, 0, 0, 0, 195, 196, 1, 0, 0, 0, 196, 197, 3, 44, 22, 0, 197, 29, 1, 0, 0, 0, 198, 200,
|
|
1899
|
+
5, 9, 0, 0, 199, 201, 3, 56, 28, 0, 200, 199, 1, 0, 0, 0, 200, 201, 1, 0, 0, 0, 201, 203,
|
|
1900
|
+
1, 0, 0, 0, 202, 204, 3, 42, 21, 0, 203, 202, 1, 0, 0, 0, 203, 204, 1, 0, 0, 0, 204, 205,
|
|
1901
|
+
1, 0, 0, 0, 205, 206, 3, 44, 22, 0, 206, 31, 1, 0, 0, 0, 207, 209, 5, 10, 0, 0, 208, 210,
|
|
1902
|
+
3, 62, 31, 0, 209, 208, 1, 0, 0, 0, 209, 210, 1, 0, 0, 0, 210, 212, 1, 0, 0, 0, 211, 213,
|
|
1903
|
+
3, 42, 21, 0, 212, 211, 1, 0, 0, 0, 212, 213, 1, 0, 0, 0, 213, 214, 1, 0, 0, 0, 214, 215,
|
|
1904
|
+
3, 44, 22, 0, 215, 33, 1, 0, 0, 0, 216, 218, 5, 11, 0, 0, 217, 219, 3, 62, 31, 0, 218,
|
|
1905
|
+
217, 1, 0, 0, 0, 218, 219, 1, 0, 0, 0, 219, 221, 1, 0, 0, 0, 220, 222, 3, 42, 21, 0, 221,
|
|
1906
|
+
220, 1, 0, 0, 0, 221, 222, 1, 0, 0, 0, 222, 223, 1, 0, 0, 0, 223, 224, 3, 44, 22, 0, 224,
|
|
1907
|
+
35, 1, 0, 0, 0, 225, 227, 5, 12, 0, 0, 226, 228, 3, 62, 31, 0, 227, 226, 1, 0, 0, 0, 227,
|
|
1908
|
+
228, 1, 0, 0, 0, 228, 230, 1, 0, 0, 0, 229, 231, 3, 42, 21, 0, 230, 229, 1, 0, 0, 0, 230,
|
|
1909
|
+
231, 1, 0, 0, 0, 231, 232, 1, 0, 0, 0, 232, 233, 3, 44, 22, 0, 233, 37, 1, 0, 0, 0, 234,
|
|
1910
|
+
236, 5, 13, 0, 0, 235, 237, 3, 54, 27, 0, 236, 235, 1, 0, 0, 0, 236, 237, 1, 0, 0, 0, 237,
|
|
1911
|
+
239, 1, 0, 0, 0, 238, 240, 3, 42, 21, 0, 239, 238, 1, 0, 0, 0, 239, 240, 1, 0, 0, 0, 240,
|
|
1912
|
+
241, 1, 0, 0, 0, 241, 242, 3, 44, 22, 0, 242, 39, 1, 0, 0, 0, 243, 245, 5, 14, 0, 0, 244,
|
|
1913
|
+
246, 3, 54, 27, 0, 245, 244, 1, 0, 0, 0, 245, 246, 1, 0, 0, 0, 246, 248, 1, 0, 0, 0, 247,
|
|
1914
|
+
249, 3, 42, 21, 0, 248, 247, 1, 0, 0, 0, 248, 249, 1, 0, 0, 0, 249, 250, 1, 0, 0, 0, 250,
|
|
1915
|
+
251, 3, 44, 22, 0, 251, 41, 1, 0, 0, 0, 252, 253, 5, 26, 0, 0, 253, 43, 1, 0, 0, 0, 254,
|
|
1916
|
+
268, 5, 21, 0, 0, 255, 257, 5, 20, 0, 0, 256, 258, 3, 68, 34, 0, 257, 256, 1, 0, 0, 0,
|
|
1917
|
+
257, 258, 1, 0, 0, 0, 258, 260, 1, 0, 0, 0, 259, 261, 5, 21, 0, 0, 260, 259, 1, 0, 0, 0,
|
|
1918
|
+
260, 261, 1, 0, 0, 0, 261, 268, 1, 0, 0, 0, 262, 264, 3, 68, 34, 0, 263, 265, 5, 21, 0,
|
|
1919
|
+
0, 264, 263, 1, 0, 0, 0, 264, 265, 1, 0, 0, 0, 265, 268, 1, 0, 0, 0, 266, 268, 1, 0, 0,
|
|
1920
|
+
0, 267, 254, 1, 0, 0, 0, 267, 255, 1, 0, 0, 0, 267, 262, 1, 0, 0, 0, 267, 266, 1, 0, 0,
|
|
1921
|
+
0, 268, 45, 1, 0, 0, 0, 269, 270, 3, 48, 24, 0, 270, 271, 3, 48, 24, 0, 271, 47, 1, 0,
|
|
1922
|
+
0, 0, 272, 276, 3, 60, 30, 0, 273, 275, 3, 50, 25, 0, 274, 273, 1, 0, 0, 0, 275, 278,
|
|
1923
|
+
1, 0, 0, 0, 276, 274, 1, 0, 0, 0, 276, 277, 1, 0, 0, 0, 277, 49, 1, 0, 0, 0, 278, 276, 1,
|
|
1924
|
+
0, 0, 0, 279, 282, 3, 66, 33, 0, 280, 282, 3, 64, 32, 0, 281, 279, 1, 0, 0, 0, 281, 280,
|
|
1925
|
+
1, 0, 0, 0, 282, 51, 1, 0, 0, 0, 283, 290, 5, 21, 0, 0, 284, 286, 5, 20, 0, 0, 285, 287,
|
|
1926
|
+
5, 21, 0, 0, 286, 285, 1, 0, 0, 0, 286, 287, 1, 0, 0, 0, 287, 290, 1, 0, 0, 0, 288, 290,
|
|
1927
|
+
1, 0, 0, 0, 289, 283, 1, 0, 0, 0, 289, 284, 1, 0, 0, 0, 289, 288, 1, 0, 0, 0, 290, 53, 1,
|
|
1928
|
+
0, 0, 0, 291, 297, 3, 48, 24, 0, 292, 294, 3, 66, 33, 0, 293, 295, 3, 62, 31, 0, 294,
|
|
1929
|
+
293, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 297, 1, 0, 0, 0, 296, 291, 1, 0, 0, 0, 296,
|
|
1930
|
+
292, 1, 0, 0, 0, 297, 55, 1, 0, 0, 0, 298, 300, 3, 58, 29, 0, 299, 298, 1, 0, 0, 0, 300,
|
|
1931
|
+
301, 1, 0, 0, 0, 301, 299, 1, 0, 0, 0, 301, 302, 1, 0, 0, 0, 302, 57, 1, 0, 0, 0, 303, 307,
|
|
1932
|
+
3, 62, 31, 0, 304, 307, 3, 64, 32, 0, 305, 307, 3, 66, 33, 0, 306, 303, 1, 0, 0, 0, 306,
|
|
1933
|
+
304, 1, 0, 0, 0, 306, 305, 1, 0, 0, 0, 307, 59, 1, 0, 0, 0, 308, 312, 5, 15, 0, 0, 309,
|
|
1934
|
+
311, 5, 22, 0, 0, 310, 309, 1, 0, 0, 0, 311, 314, 1, 0, 0, 0, 312, 310, 1, 0, 0, 0, 312,
|
|
1935
|
+
313, 1, 0, 0, 0, 313, 316, 1, 0, 0, 0, 314, 312, 1, 0, 0, 0, 315, 317, 3, 66, 33, 0, 316,
|
|
1936
|
+
315, 1, 0, 0, 0, 316, 317, 1, 0, 0, 0, 317, 318, 1, 0, 0, 0, 318, 319, 5, 16, 0, 0, 319,
|
|
1937
|
+
61, 1, 0, 0, 0, 320, 324, 3, 60, 30, 0, 321, 323, 3, 64, 32, 0, 322, 321, 1, 0, 0, 0, 323,
|
|
1938
|
+
326, 1, 0, 0, 0, 324, 322, 1, 0, 0, 0, 324, 325, 1, 0, 0, 0, 325, 63, 1, 0, 0, 0, 326, 324,
|
|
1939
|
+
1, 0, 0, 0, 327, 331, 5, 17, 0, 0, 328, 330, 5, 23, 0, 0, 329, 328, 1, 0, 0, 0, 330, 333,
|
|
1940
|
+
1, 0, 0, 0, 331, 329, 1, 0, 0, 0, 331, 332, 1, 0, 0, 0, 332, 334, 1, 0, 0, 0, 333, 331,
|
|
1941
|
+
1, 0, 0, 0, 334, 335, 5, 18, 0, 0, 335, 65, 1, 0, 0, 0, 336, 337, 5, 19, 0, 0, 337, 67,
|
|
1942
|
+
1, 0, 0, 0, 338, 340, 5, 24, 0, 0, 339, 338, 1, 0, 0, 0, 340, 341, 1, 0, 0, 0, 341, 339,
|
|
1943
|
+
1, 0, 0, 0, 341, 342, 1, 0, 0, 0, 342, 69, 1, 0, 0, 0, 50, 75, 77, 82, 90, 97, 112, 126,
|
|
1944
|
+
130, 133, 139, 142, 148, 151, 158, 165, 171, 174, 180, 189, 191, 194, 200, 203,
|
|
1945
|
+
209, 212, 218, 221, 227, 230, 236, 239, 245, 248, 257, 260, 264, 267, 276, 281,
|
|
1946
|
+
286, 289, 294, 296, 301, 306, 312, 316, 324, 331, 341
|
|
1985
1947
|
];
|
|
1986
1948
|
static __ATN;
|
|
1987
1949
|
static get _ATN() {
|
|
@@ -2018,68 +1980,21 @@ export class DocumentContext extends antlr.ParserRuleContext {
|
|
|
2018
1980
|
}
|
|
2019
1981
|
}
|
|
2020
1982
|
}
|
|
2021
|
-
export class
|
|
2022
|
-
constructor(parent, invokingState) {
|
|
2023
|
-
super(parent, invokingState);
|
|
2024
|
-
}
|
|
2025
|
-
EOF() {
|
|
2026
|
-
return this.getToken(plurnkParser.EOF, 0);
|
|
2027
|
-
}
|
|
2028
|
-
turn(i) {
|
|
2029
|
-
if (i === undefined) {
|
|
2030
|
-
return this.getRuleContexts(TurnContext);
|
|
2031
|
-
}
|
|
2032
|
-
return this.getRuleContext(i, TurnContext);
|
|
2033
|
-
}
|
|
2034
|
-
get ruleIndex() {
|
|
2035
|
-
return plurnkParser.RULE_log;
|
|
2036
|
-
}
|
|
2037
|
-
accept(visitor) {
|
|
2038
|
-
if (visitor.visitLog) {
|
|
2039
|
-
return visitor.visitLog(this);
|
|
2040
|
-
}
|
|
2041
|
-
else {
|
|
2042
|
-
return visitor.visitChildren(this);
|
|
2043
|
-
}
|
|
2044
|
-
}
|
|
2045
|
-
}
|
|
2046
|
-
export class TurnContext extends antlr.ParserRuleContext {
|
|
1983
|
+
export class ModelTurnContext extends antlr.ParserRuleContext {
|
|
2047
1984
|
constructor(parent, invokingState) {
|
|
2048
1985
|
super(parent, invokingState);
|
|
2049
1986
|
}
|
|
2050
|
-
dispositionStatement() {
|
|
2051
|
-
return this.getRuleContext(0, DispositionStatementContext);
|
|
2052
|
-
}
|
|
2053
1987
|
midStatement(i) {
|
|
2054
1988
|
if (i === undefined) {
|
|
2055
1989
|
return this.getRuleContexts(MidStatementContext);
|
|
2056
1990
|
}
|
|
2057
1991
|
return this.getRuleContext(i, MidStatementContext);
|
|
2058
1992
|
}
|
|
2059
|
-
|
|
2060
|
-
return plurnkParser.RULE_turn;
|
|
2061
|
-
}
|
|
2062
|
-
accept(visitor) {
|
|
2063
|
-
if (visitor.visitTurn) {
|
|
2064
|
-
return visitor.visitTurn(this);
|
|
2065
|
-
}
|
|
2066
|
-
else {
|
|
2067
|
-
return visitor.visitChildren(this);
|
|
2068
|
-
}
|
|
2069
|
-
}
|
|
2070
|
-
}
|
|
2071
|
-
export class ModelTurnContext extends antlr.ParserRuleContext {
|
|
2072
|
-
constructor(parent, invokingState) {
|
|
2073
|
-
super(parent, invokingState);
|
|
2074
|
-
}
|
|
2075
|
-
midStatement(i) {
|
|
1993
|
+
dispositionStatement(i) {
|
|
2076
1994
|
if (i === undefined) {
|
|
2077
|
-
return this.getRuleContexts(
|
|
1995
|
+
return this.getRuleContexts(DispositionStatementContext);
|
|
2078
1996
|
}
|
|
2079
|
-
return this.getRuleContext(i,
|
|
2080
|
-
}
|
|
2081
|
-
dispositionStatement() {
|
|
2082
|
-
return this.getRuleContext(0, DispositionStatementContext);
|
|
1997
|
+
return this.getRuleContext(i, DispositionStatementContext);
|
|
2083
1998
|
}
|
|
2084
1999
|
get ruleIndex() {
|
|
2085
2000
|
return plurnkParser.RULE_modelTurn;
|
|
@@ -2205,6 +2120,9 @@ export class StatementContext extends antlr.ParserRuleContext {
|
|
|
2205
2120
|
killStatement() {
|
|
2206
2121
|
return this.getRuleContext(0, KillStatementContext);
|
|
2207
2122
|
}
|
|
2123
|
+
noteStatement() {
|
|
2124
|
+
return this.getRuleContext(0, NoteStatementContext);
|
|
2125
|
+
}
|
|
2208
2126
|
get ruleIndex() {
|
|
2209
2127
|
return plurnkParser.RULE_statement;
|
|
2210
2128
|
}
|
|
@@ -2254,6 +2172,9 @@ export class MidStatementContext extends antlr.ParserRuleContext {
|
|
|
2254
2172
|
killStatement() {
|
|
2255
2173
|
return this.getRuleContext(0, KillStatementContext);
|
|
2256
2174
|
}
|
|
2175
|
+
noteStatement() {
|
|
2176
|
+
return this.getRuleContext(0, NoteStatementContext);
|
|
2177
|
+
}
|
|
2257
2178
|
get ruleIndex() {
|
|
2258
2179
|
return plurnkParser.RULE_midStatement;
|
|
2259
2180
|
}
|
|
@@ -2410,17 +2331,14 @@ export class DispositionStatementContext extends antlr.ParserRuleContext {
|
|
|
2410
2331
|
constructor(parent, invokingState) {
|
|
2411
2332
|
super(parent, invokingState);
|
|
2412
2333
|
}
|
|
2413
|
-
|
|
2414
|
-
return this.getToken(plurnkParser.
|
|
2334
|
+
OPEN_WAIT() {
|
|
2335
|
+
return this.getToken(plurnkParser.OPEN_WAIT, 0);
|
|
2415
2336
|
}
|
|
2416
2337
|
statementEnd() {
|
|
2417
2338
|
return this.getRuleContext(0, StatementEndContext);
|
|
2418
2339
|
}
|
|
2419
|
-
|
|
2420
|
-
return this.getRuleContext(0,
|
|
2421
|
-
}
|
|
2422
|
-
metadata() {
|
|
2423
|
-
return this.getRuleContext(0, MetadataContext);
|
|
2340
|
+
execModifiers() {
|
|
2341
|
+
return this.getRuleContext(0, ExecModifiersContext);
|
|
2424
2342
|
}
|
|
2425
2343
|
opAside() {
|
|
2426
2344
|
return this.getRuleContext(0, OpAsideContext);
|
|
@@ -2437,6 +2355,31 @@ export class DispositionStatementContext extends antlr.ParserRuleContext {
|
|
|
2437
2355
|
}
|
|
2438
2356
|
}
|
|
2439
2357
|
}
|
|
2358
|
+
export class NoteStatementContext extends antlr.ParserRuleContext {
|
|
2359
|
+
constructor(parent, invokingState) {
|
|
2360
|
+
super(parent, invokingState);
|
|
2361
|
+
}
|
|
2362
|
+
OPEN_NOTE() {
|
|
2363
|
+
return this.getToken(plurnkParser.OPEN_NOTE, 0);
|
|
2364
|
+
}
|
|
2365
|
+
statementEnd() {
|
|
2366
|
+
return this.getRuleContext(0, StatementEndContext);
|
|
2367
|
+
}
|
|
2368
|
+
opAside() {
|
|
2369
|
+
return this.getRuleContext(0, OpAsideContext);
|
|
2370
|
+
}
|
|
2371
|
+
get ruleIndex() {
|
|
2372
|
+
return plurnkParser.RULE_noteStatement;
|
|
2373
|
+
}
|
|
2374
|
+
accept(visitor) {
|
|
2375
|
+
if (visitor.visitNoteStatement) {
|
|
2376
|
+
return visitor.visitNoteStatement(this);
|
|
2377
|
+
}
|
|
2378
|
+
else {
|
|
2379
|
+
return visitor.visitChildren(this);
|
|
2380
|
+
}
|
|
2381
|
+
}
|
|
2382
|
+
}
|
|
2440
2383
|
export class SendStatementContext extends antlr.ParserRuleContext {
|
|
2441
2384
|
constructor(parent, invokingState) {
|
|
2442
2385
|
super(parent, invokingState);
|
|
@@ -2453,6 +2396,12 @@ export class SendStatementContext extends antlr.ParserRuleContext {
|
|
|
2453
2396
|
opAside() {
|
|
2454
2397
|
return this.getRuleContext(0, OpAsideContext);
|
|
2455
2398
|
}
|
|
2399
|
+
metadata(i) {
|
|
2400
|
+
if (i === undefined) {
|
|
2401
|
+
return this.getRuleContexts(MetadataContext);
|
|
2402
|
+
}
|
|
2403
|
+
return this.getRuleContext(i, MetadataContext);
|
|
2404
|
+
}
|
|
2456
2405
|
get ruleIndex() {
|
|
2457
2406
|
return plurnkParser.RULE_sendStatement;
|
|
2458
2407
|
}
|