tree-sitter-abl 0.0.51 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/grammar.js +195 -28
- package/package.json +1 -1
- package/parser.obj +0 -0
- package/scanner.obj +0 -0
- package/src/grammar.json +1564 -316
- package/src/node-types.json +497 -9
- package/src/parser.c +206127 -169823
- package/src/scanner.c +3 -1
- package/test_on.p +7 -0
- package/tree-sitter-abl.wasm +0 -0
package/src/grammar.json
CHANGED
|
@@ -89,6 +89,10 @@
|
|
|
89
89
|
"type": "SYMBOL",
|
|
90
90
|
"name": "_statement"
|
|
91
91
|
}
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"type": "SYMBOL",
|
|
95
|
+
"name": "constant"
|
|
92
96
|
}
|
|
93
97
|
]
|
|
94
98
|
},
|
|
@@ -824,7 +828,7 @@
|
|
|
824
828
|
},
|
|
825
829
|
"file_name": {
|
|
826
830
|
"type": "PATTERN",
|
|
827
|
-
"value": "[A-z-_|0-9|\\/]+\\.[
|
|
831
|
+
"value": "[A-z-_|0-9|\\/]+\\.[ipwr]"
|
|
828
832
|
},
|
|
829
833
|
"comment": {
|
|
830
834
|
"type": "CHOICE",
|
|
@@ -2194,16 +2198,24 @@
|
|
|
2194
2198
|
}
|
|
2195
2199
|
]
|
|
2196
2200
|
},
|
|
2197
|
-
"
|
|
2201
|
+
"_message_tuning": {
|
|
2198
2202
|
"type": "CHOICE",
|
|
2199
2203
|
"members": [
|
|
2200
2204
|
{
|
|
2201
2205
|
"type": "SYMBOL",
|
|
2202
|
-
"name": "
|
|
2206
|
+
"name": "message_color"
|
|
2203
2207
|
},
|
|
2204
2208
|
{
|
|
2205
2209
|
"type": "SYMBOL",
|
|
2206
|
-
"name": "
|
|
2210
|
+
"name": "_message_alert_box"
|
|
2211
|
+
},
|
|
2212
|
+
{
|
|
2213
|
+
"type": "SYMBOL",
|
|
2214
|
+
"name": "message_update"
|
|
2215
|
+
},
|
|
2216
|
+
{
|
|
2217
|
+
"type": "SYMBOL",
|
|
2218
|
+
"name": "message_pause"
|
|
2207
2219
|
},
|
|
2208
2220
|
{
|
|
2209
2221
|
"type": "ALIAS",
|
|
@@ -2214,13 +2226,18 @@
|
|
|
2214
2226
|
"value": 1,
|
|
2215
2227
|
"content": {
|
|
2216
2228
|
"type": "PATTERN",
|
|
2217
|
-
"value": "[
|
|
2229
|
+
"value": "[nN][oO][--][eE][rR][rR][oO][rR]"
|
|
2218
2230
|
}
|
|
2219
2231
|
}
|
|
2220
2232
|
},
|
|
2221
2233
|
"named": false,
|
|
2222
|
-
"value": "
|
|
2223
|
-
}
|
|
2234
|
+
"value": "NO-ERROR"
|
|
2235
|
+
}
|
|
2236
|
+
]
|
|
2237
|
+
},
|
|
2238
|
+
"message_color": {
|
|
2239
|
+
"type": "SEQ",
|
|
2240
|
+
"members": [
|
|
2224
2241
|
{
|
|
2225
2242
|
"type": "ALIAS",
|
|
2226
2243
|
"content": {
|
|
@@ -2230,13 +2247,22 @@
|
|
|
2230
2247
|
"value": 1,
|
|
2231
2248
|
"content": {
|
|
2232
2249
|
"type": "PATTERN",
|
|
2233
|
-
"value": "[
|
|
2250
|
+
"value": "[cC][oO][lL][oO][rR]"
|
|
2234
2251
|
}
|
|
2235
2252
|
}
|
|
2236
2253
|
},
|
|
2237
2254
|
"named": false,
|
|
2238
|
-
"value": "
|
|
2255
|
+
"value": "COLOR"
|
|
2239
2256
|
},
|
|
2257
|
+
{
|
|
2258
|
+
"type": "SYMBOL",
|
|
2259
|
+
"name": "color_phrase"
|
|
2260
|
+
}
|
|
2261
|
+
]
|
|
2262
|
+
},
|
|
2263
|
+
"color_phrase": {
|
|
2264
|
+
"type": "CHOICE",
|
|
2265
|
+
"members": [
|
|
2240
2266
|
{
|
|
2241
2267
|
"type": "ALIAS",
|
|
2242
2268
|
"content": {
|
|
@@ -2246,12 +2272,12 @@
|
|
|
2246
2272
|
"value": 1,
|
|
2247
2273
|
"content": {
|
|
2248
2274
|
"type": "PATTERN",
|
|
2249
|
-
"value": "[
|
|
2275
|
+
"value": "[nN][oO][rR][mM][aA][lL]"
|
|
2250
2276
|
}
|
|
2251
2277
|
}
|
|
2252
2278
|
},
|
|
2253
2279
|
"named": false,
|
|
2254
|
-
"value": "
|
|
2280
|
+
"value": "NORMAL"
|
|
2255
2281
|
},
|
|
2256
2282
|
{
|
|
2257
2283
|
"type": "ALIAS",
|
|
@@ -2262,37 +2288,12 @@
|
|
|
2262
2288
|
"value": 1,
|
|
2263
2289
|
"content": {
|
|
2264
2290
|
"type": "PATTERN",
|
|
2265
|
-
"value": "[
|
|
2291
|
+
"value": "[iI][nN][pP][uU][tT]"
|
|
2266
2292
|
}
|
|
2267
2293
|
}
|
|
2268
2294
|
},
|
|
2269
2295
|
"named": false,
|
|
2270
|
-
"value": "
|
|
2271
|
-
}
|
|
2272
|
-
]
|
|
2273
|
-
},
|
|
2274
|
-
"field_option": {
|
|
2275
|
-
"type": "CHOICE",
|
|
2276
|
-
"members": [
|
|
2277
|
-
{
|
|
2278
|
-
"type": "SYMBOL",
|
|
2279
|
-
"name": "_column_label"
|
|
2280
|
-
},
|
|
2281
|
-
{
|
|
2282
|
-
"type": "SYMBOL",
|
|
2283
|
-
"name": "_label"
|
|
2284
|
-
},
|
|
2285
|
-
{
|
|
2286
|
-
"type": "SYMBOL",
|
|
2287
|
-
"name": "_format"
|
|
2288
|
-
},
|
|
2289
|
-
{
|
|
2290
|
-
"type": "SYMBOL",
|
|
2291
|
-
"name": "_value_tuning"
|
|
2292
|
-
},
|
|
2293
|
-
{
|
|
2294
|
-
"type": "SYMBOL",
|
|
2295
|
-
"name": "_font"
|
|
2296
|
+
"value": "INPUT"
|
|
2296
2297
|
},
|
|
2297
2298
|
{
|
|
2298
2299
|
"type": "ALIAS",
|
|
@@ -2303,41 +2304,12 @@
|
|
|
2303
2304
|
"value": 1,
|
|
2304
2305
|
"content": {
|
|
2305
2306
|
"type": "PATTERN",
|
|
2306
|
-
"value": "[
|
|
2307
|
+
"value": "[mM][eE][sS][sS][aA][gG][eE][sS]"
|
|
2307
2308
|
}
|
|
2308
2309
|
}
|
|
2309
2310
|
},
|
|
2310
2311
|
"named": false,
|
|
2311
|
-
"value": "
|
|
2312
|
-
},
|
|
2313
|
-
{
|
|
2314
|
-
"type": "SYMBOL",
|
|
2315
|
-
"name": "_serialize_name"
|
|
2316
|
-
},
|
|
2317
|
-
{
|
|
2318
|
-
"type": "SEQ",
|
|
2319
|
-
"members": [
|
|
2320
|
-
{
|
|
2321
|
-
"type": "ALIAS",
|
|
2322
|
-
"content": {
|
|
2323
|
-
"type": "TOKEN",
|
|
2324
|
-
"content": {
|
|
2325
|
-
"type": "PREC",
|
|
2326
|
-
"value": 1,
|
|
2327
|
-
"content": {
|
|
2328
|
-
"type": "PATTERN",
|
|
2329
|
-
"value": "[hH][eE][lL][pP]"
|
|
2330
|
-
}
|
|
2331
|
-
}
|
|
2332
|
-
},
|
|
2333
|
-
"named": false,
|
|
2334
|
-
"value": "HELP"
|
|
2335
|
-
},
|
|
2336
|
-
{
|
|
2337
|
-
"type": "SYMBOL",
|
|
2338
|
-
"name": "string_literal"
|
|
2339
|
-
}
|
|
2340
|
-
]
|
|
2312
|
+
"value": "MESSAGES"
|
|
2341
2313
|
},
|
|
2342
2314
|
{
|
|
2343
2315
|
"type": "SEQ",
|
|
@@ -2346,20 +2318,73 @@
|
|
|
2346
2318
|
"type": "CHOICE",
|
|
2347
2319
|
"members": [
|
|
2348
2320
|
{
|
|
2349
|
-
"type": "
|
|
2350
|
-
"
|
|
2351
|
-
|
|
2352
|
-
|
|
2353
|
-
"type": "PREC",
|
|
2354
|
-
"value": 1,
|
|
2321
|
+
"type": "CHOICE",
|
|
2322
|
+
"members": [
|
|
2323
|
+
{
|
|
2324
|
+
"type": "ALIAS",
|
|
2355
2325
|
"content": {
|
|
2356
|
-
"type": "
|
|
2357
|
-
"
|
|
2358
|
-
|
|
2326
|
+
"type": "TOKEN",
|
|
2327
|
+
"content": {
|
|
2328
|
+
"type": "PREC",
|
|
2329
|
+
"value": 1,
|
|
2330
|
+
"content": {
|
|
2331
|
+
"type": "PATTERN",
|
|
2332
|
+
"value": "[bB][lL][iI][nN][kK][--]"
|
|
2333
|
+
}
|
|
2334
|
+
}
|
|
2335
|
+
},
|
|
2336
|
+
"named": false,
|
|
2337
|
+
"value": "BLINK-"
|
|
2338
|
+
},
|
|
2339
|
+
{
|
|
2340
|
+
"type": "ALIAS",
|
|
2341
|
+
"content": {
|
|
2342
|
+
"type": "TOKEN",
|
|
2343
|
+
"content": {
|
|
2344
|
+
"type": "PREC",
|
|
2345
|
+
"value": 1,
|
|
2346
|
+
"content": {
|
|
2347
|
+
"type": "PATTERN",
|
|
2348
|
+
"value": "[rR][vV][vV][--]"
|
|
2349
|
+
}
|
|
2350
|
+
}
|
|
2351
|
+
},
|
|
2352
|
+
"named": false,
|
|
2353
|
+
"value": "RVV-"
|
|
2354
|
+
},
|
|
2355
|
+
{
|
|
2356
|
+
"type": "ALIAS",
|
|
2357
|
+
"content": {
|
|
2358
|
+
"type": "TOKEN",
|
|
2359
|
+
"content": {
|
|
2360
|
+
"type": "PREC",
|
|
2361
|
+
"value": 1,
|
|
2362
|
+
"content": {
|
|
2363
|
+
"type": "PATTERN",
|
|
2364
|
+
"value": "[uU][nN][dD][eE][rR][lL][iI][nN][eE][--]"
|
|
2365
|
+
}
|
|
2366
|
+
}
|
|
2367
|
+
},
|
|
2368
|
+
"named": false,
|
|
2369
|
+
"value": "UNDERLINE-"
|
|
2370
|
+
},
|
|
2371
|
+
{
|
|
2372
|
+
"type": "ALIAS",
|
|
2373
|
+
"content": {
|
|
2374
|
+
"type": "TOKEN",
|
|
2375
|
+
"content": {
|
|
2376
|
+
"type": "PREC",
|
|
2377
|
+
"value": 1,
|
|
2378
|
+
"content": {
|
|
2379
|
+
"type": "PATTERN",
|
|
2380
|
+
"value": "[bB][rR][iI][gG][hH][tT][--]"
|
|
2381
|
+
}
|
|
2382
|
+
}
|
|
2383
|
+
},
|
|
2384
|
+
"named": false,
|
|
2385
|
+
"value": "BRIGHT-"
|
|
2359
2386
|
}
|
|
2360
|
-
|
|
2361
|
-
"named": false,
|
|
2362
|
-
"value": "NOT"
|
|
2387
|
+
]
|
|
2363
2388
|
},
|
|
2364
2389
|
{
|
|
2365
2390
|
"type": "BLANK"
|
|
@@ -2367,20 +2392,17 @@
|
|
|
2367
2392
|
]
|
|
2368
2393
|
},
|
|
2369
2394
|
{
|
|
2370
|
-
"type": "
|
|
2371
|
-
"
|
|
2372
|
-
|
|
2373
|
-
|
|
2374
|
-
"
|
|
2375
|
-
|
|
2376
|
-
|
|
2377
|
-
|
|
2378
|
-
|
|
2379
|
-
}
|
|
2395
|
+
"type": "CHOICE",
|
|
2396
|
+
"members": [
|
|
2397
|
+
{
|
|
2398
|
+
"type": "SYMBOL",
|
|
2399
|
+
"name": "string_literal"
|
|
2400
|
+
},
|
|
2401
|
+
{
|
|
2402
|
+
"type": "SYMBOL",
|
|
2403
|
+
"name": "identifier"
|
|
2380
2404
|
}
|
|
2381
|
-
|
|
2382
|
-
"named": false,
|
|
2383
|
-
"value": "CASE-SENSITIVE"
|
|
2405
|
+
]
|
|
2384
2406
|
}
|
|
2385
2407
|
]
|
|
2386
2408
|
},
|
|
@@ -2396,23 +2418,31 @@
|
|
|
2396
2418
|
"value": 1,
|
|
2397
2419
|
"content": {
|
|
2398
2420
|
"type": "PATTERN",
|
|
2399
|
-
"value": "[
|
|
2421
|
+
"value": "[vV][aA][lL][uU][eE]"
|
|
2400
2422
|
}
|
|
2401
2423
|
}
|
|
2402
2424
|
},
|
|
2403
2425
|
"named": false,
|
|
2404
|
-
"value": "
|
|
2426
|
+
"value": "VALUE"
|
|
2427
|
+
},
|
|
2428
|
+
{
|
|
2429
|
+
"type": "STRING",
|
|
2430
|
+
"value": "("
|
|
2405
2431
|
},
|
|
2406
2432
|
{
|
|
2407
2433
|
"type": "SYMBOL",
|
|
2408
|
-
"name": "
|
|
2434
|
+
"name": "_expression"
|
|
2435
|
+
},
|
|
2436
|
+
{
|
|
2437
|
+
"type": "STRING",
|
|
2438
|
+
"value": ")"
|
|
2409
2439
|
}
|
|
2410
2440
|
]
|
|
2411
2441
|
}
|
|
2412
2442
|
]
|
|
2413
2443
|
},
|
|
2414
|
-
"
|
|
2415
|
-
"type": "
|
|
2444
|
+
"_message_alert_box": {
|
|
2445
|
+
"type": "SEQ",
|
|
2416
2446
|
"members": [
|
|
2417
2447
|
{
|
|
2418
2448
|
"type": "ALIAS",
|
|
@@ -2423,28 +2453,12 @@
|
|
|
2423
2453
|
"value": 1,
|
|
2424
2454
|
"content": {
|
|
2425
2455
|
"type": "PATTERN",
|
|
2426
|
-
"value": "[
|
|
2427
|
-
}
|
|
2428
|
-
}
|
|
2429
|
-
},
|
|
2430
|
-
"named": false,
|
|
2431
|
-
"value": "APPEND"
|
|
2432
|
-
},
|
|
2433
|
-
{
|
|
2434
|
-
"type": "ALIAS",
|
|
2435
|
-
"content": {
|
|
2436
|
-
"type": "TOKEN",
|
|
2437
|
-
"content": {
|
|
2438
|
-
"type": "PREC",
|
|
2439
|
-
"value": 1,
|
|
2440
|
-
"content": {
|
|
2441
|
-
"type": "PATTERN",
|
|
2442
|
-
"value": "[bB][iI][nN][dD]"
|
|
2456
|
+
"value": "[vV][iI][eE][wW][--][aA][sS]"
|
|
2443
2457
|
}
|
|
2444
2458
|
}
|
|
2445
2459
|
},
|
|
2446
2460
|
"named": false,
|
|
2447
|
-
"value": "
|
|
2461
|
+
"value": "VIEW-AS"
|
|
2448
2462
|
},
|
|
2449
2463
|
{
|
|
2450
2464
|
"type": "ALIAS",
|
|
@@ -2455,41 +2469,781 @@
|
|
|
2455
2469
|
"value": 1,
|
|
2456
2470
|
"content": {
|
|
2457
2471
|
"type": "PATTERN",
|
|
2458
|
-
"value": "[
|
|
2472
|
+
"value": "[aA][lL][eE][rR][tT][--][bB][oO][xX]"
|
|
2459
2473
|
}
|
|
2460
2474
|
}
|
|
2461
2475
|
},
|
|
2462
2476
|
"named": false,
|
|
2463
|
-
"value": "
|
|
2477
|
+
"value": "ALERT-BOX"
|
|
2464
2478
|
},
|
|
2465
2479
|
{
|
|
2466
|
-
"type": "
|
|
2467
|
-
"
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
"
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
"value": "[bB][yY][--][rR][eE][fF][eE][rR][eE][nN][cC][eE]"
|
|
2475
|
-
}
|
|
2480
|
+
"type": "CHOICE",
|
|
2481
|
+
"members": [
|
|
2482
|
+
{
|
|
2483
|
+
"type": "SYMBOL",
|
|
2484
|
+
"name": "alert_box_type"
|
|
2485
|
+
},
|
|
2486
|
+
{
|
|
2487
|
+
"type": "BLANK"
|
|
2476
2488
|
}
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
|
|
2487
|
-
|
|
2488
|
-
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
|
|
2492
|
-
"
|
|
2489
|
+
]
|
|
2490
|
+
},
|
|
2491
|
+
{
|
|
2492
|
+
"type": "CHOICE",
|
|
2493
|
+
"members": [
|
|
2494
|
+
{
|
|
2495
|
+
"type": "SYMBOL",
|
|
2496
|
+
"name": "alert_box_buttons"
|
|
2497
|
+
},
|
|
2498
|
+
{
|
|
2499
|
+
"type": "BLANK"
|
|
2500
|
+
}
|
|
2501
|
+
]
|
|
2502
|
+
},
|
|
2503
|
+
{
|
|
2504
|
+
"type": "CHOICE",
|
|
2505
|
+
"members": [
|
|
2506
|
+
{
|
|
2507
|
+
"type": "SEQ",
|
|
2508
|
+
"members": [
|
|
2509
|
+
{
|
|
2510
|
+
"type": "ALIAS",
|
|
2511
|
+
"content": {
|
|
2512
|
+
"type": "TOKEN",
|
|
2513
|
+
"content": {
|
|
2514
|
+
"type": "PREC",
|
|
2515
|
+
"value": 1,
|
|
2516
|
+
"content": {
|
|
2517
|
+
"type": "PATTERN",
|
|
2518
|
+
"value": "[tT][iI][tT][lL][eE]"
|
|
2519
|
+
}
|
|
2520
|
+
}
|
|
2521
|
+
},
|
|
2522
|
+
"named": false,
|
|
2523
|
+
"value": "TITLE"
|
|
2524
|
+
},
|
|
2525
|
+
{
|
|
2526
|
+
"type": "CHOICE",
|
|
2527
|
+
"members": [
|
|
2528
|
+
{
|
|
2529
|
+
"type": "SYMBOL",
|
|
2530
|
+
"name": "string_literal"
|
|
2531
|
+
},
|
|
2532
|
+
{
|
|
2533
|
+
"type": "SYMBOL",
|
|
2534
|
+
"name": "additive_expression"
|
|
2535
|
+
}
|
|
2536
|
+
]
|
|
2537
|
+
}
|
|
2538
|
+
]
|
|
2539
|
+
},
|
|
2540
|
+
{
|
|
2541
|
+
"type": "BLANK"
|
|
2542
|
+
}
|
|
2543
|
+
]
|
|
2544
|
+
}
|
|
2545
|
+
]
|
|
2546
|
+
},
|
|
2547
|
+
"alert_box_type": {
|
|
2548
|
+
"type": "CHOICE",
|
|
2549
|
+
"members": [
|
|
2550
|
+
{
|
|
2551
|
+
"type": "ALIAS",
|
|
2552
|
+
"content": {
|
|
2553
|
+
"type": "TOKEN",
|
|
2554
|
+
"content": {
|
|
2555
|
+
"type": "PREC",
|
|
2556
|
+
"value": 1,
|
|
2557
|
+
"content": {
|
|
2558
|
+
"type": "PATTERN",
|
|
2559
|
+
"value": "[mM][eE][sS][sS][aA][gG][eE]"
|
|
2560
|
+
}
|
|
2561
|
+
}
|
|
2562
|
+
},
|
|
2563
|
+
"named": false,
|
|
2564
|
+
"value": "MESSAGE"
|
|
2565
|
+
},
|
|
2566
|
+
{
|
|
2567
|
+
"type": "ALIAS",
|
|
2568
|
+
"content": {
|
|
2569
|
+
"type": "TOKEN",
|
|
2570
|
+
"content": {
|
|
2571
|
+
"type": "PREC",
|
|
2572
|
+
"value": 1,
|
|
2573
|
+
"content": {
|
|
2574
|
+
"type": "PATTERN",
|
|
2575
|
+
"value": "[iI][nN][fF][oO][rR][mM][aA][tT][iI][oO][nN]"
|
|
2576
|
+
}
|
|
2577
|
+
}
|
|
2578
|
+
},
|
|
2579
|
+
"named": false,
|
|
2580
|
+
"value": "INFORMATION"
|
|
2581
|
+
},
|
|
2582
|
+
{
|
|
2583
|
+
"type": "ALIAS",
|
|
2584
|
+
"content": {
|
|
2585
|
+
"type": "TOKEN",
|
|
2586
|
+
"content": {
|
|
2587
|
+
"type": "PREC",
|
|
2588
|
+
"value": 1,
|
|
2589
|
+
"content": {
|
|
2590
|
+
"type": "PATTERN",
|
|
2591
|
+
"value": "[iI][nN][fF][oO]"
|
|
2592
|
+
}
|
|
2593
|
+
}
|
|
2594
|
+
},
|
|
2595
|
+
"named": false,
|
|
2596
|
+
"value": "INFO"
|
|
2597
|
+
},
|
|
2598
|
+
{
|
|
2599
|
+
"type": "ALIAS",
|
|
2600
|
+
"content": {
|
|
2601
|
+
"type": "TOKEN",
|
|
2602
|
+
"content": {
|
|
2603
|
+
"type": "PREC",
|
|
2604
|
+
"value": 1,
|
|
2605
|
+
"content": {
|
|
2606
|
+
"type": "PATTERN",
|
|
2607
|
+
"value": "[wW][aA][rR][nN][iI][nN][gG]"
|
|
2608
|
+
}
|
|
2609
|
+
}
|
|
2610
|
+
},
|
|
2611
|
+
"named": false,
|
|
2612
|
+
"value": "WARNING"
|
|
2613
|
+
},
|
|
2614
|
+
{
|
|
2615
|
+
"type": "ALIAS",
|
|
2616
|
+
"content": {
|
|
2617
|
+
"type": "TOKEN",
|
|
2618
|
+
"content": {
|
|
2619
|
+
"type": "PREC",
|
|
2620
|
+
"value": 1,
|
|
2621
|
+
"content": {
|
|
2622
|
+
"type": "PATTERN",
|
|
2623
|
+
"value": "[eE][rR][rR][oO][rR]"
|
|
2624
|
+
}
|
|
2625
|
+
}
|
|
2626
|
+
},
|
|
2627
|
+
"named": false,
|
|
2628
|
+
"value": "ERROR"
|
|
2629
|
+
},
|
|
2630
|
+
{
|
|
2631
|
+
"type": "ALIAS",
|
|
2632
|
+
"content": {
|
|
2633
|
+
"type": "TOKEN",
|
|
2634
|
+
"content": {
|
|
2635
|
+
"type": "PREC",
|
|
2636
|
+
"value": 1,
|
|
2637
|
+
"content": {
|
|
2638
|
+
"type": "PATTERN",
|
|
2639
|
+
"value": "[qQ][uU][eE][sS][tT][iI][oO][nN]"
|
|
2640
|
+
}
|
|
2641
|
+
}
|
|
2642
|
+
},
|
|
2643
|
+
"named": false,
|
|
2644
|
+
"value": "QUESTION"
|
|
2645
|
+
}
|
|
2646
|
+
]
|
|
2647
|
+
},
|
|
2648
|
+
"alert_box_buttons": {
|
|
2649
|
+
"type": "SEQ",
|
|
2650
|
+
"members": [
|
|
2651
|
+
{
|
|
2652
|
+
"type": "ALIAS",
|
|
2653
|
+
"content": {
|
|
2654
|
+
"type": "TOKEN",
|
|
2655
|
+
"content": {
|
|
2656
|
+
"type": "PREC",
|
|
2657
|
+
"value": 1,
|
|
2658
|
+
"content": {
|
|
2659
|
+
"type": "PATTERN",
|
|
2660
|
+
"value": "[bB][uU][tT][tT][oO][nN][sS]"
|
|
2661
|
+
}
|
|
2662
|
+
}
|
|
2663
|
+
},
|
|
2664
|
+
"named": false,
|
|
2665
|
+
"value": "BUTTONS"
|
|
2666
|
+
},
|
|
2667
|
+
{
|
|
2668
|
+
"type": "CHOICE",
|
|
2669
|
+
"members": [
|
|
2670
|
+
{
|
|
2671
|
+
"type": "ALIAS",
|
|
2672
|
+
"content": {
|
|
2673
|
+
"type": "TOKEN",
|
|
2674
|
+
"content": {
|
|
2675
|
+
"type": "PREC",
|
|
2676
|
+
"value": 1,
|
|
2677
|
+
"content": {
|
|
2678
|
+
"type": "PATTERN",
|
|
2679
|
+
"value": "[oO][kK]"
|
|
2680
|
+
}
|
|
2681
|
+
}
|
|
2682
|
+
},
|
|
2683
|
+
"named": false,
|
|
2684
|
+
"value": "OK"
|
|
2685
|
+
},
|
|
2686
|
+
{
|
|
2687
|
+
"type": "ALIAS",
|
|
2688
|
+
"content": {
|
|
2689
|
+
"type": "TOKEN",
|
|
2690
|
+
"content": {
|
|
2691
|
+
"type": "PREC",
|
|
2692
|
+
"value": 1,
|
|
2693
|
+
"content": {
|
|
2694
|
+
"type": "PATTERN",
|
|
2695
|
+
"value": "[cC][aA][nN][cC][eE][lL]"
|
|
2696
|
+
}
|
|
2697
|
+
}
|
|
2698
|
+
},
|
|
2699
|
+
"named": false,
|
|
2700
|
+
"value": "CANCEL"
|
|
2701
|
+
},
|
|
2702
|
+
{
|
|
2703
|
+
"type": "ALIAS",
|
|
2704
|
+
"content": {
|
|
2705
|
+
"type": "TOKEN",
|
|
2706
|
+
"content": {
|
|
2707
|
+
"type": "PREC",
|
|
2708
|
+
"value": 1,
|
|
2709
|
+
"content": {
|
|
2710
|
+
"type": "PATTERN",
|
|
2711
|
+
"value": "[oO][kK][--][cC][aA][nN][cC][eE][lL]"
|
|
2712
|
+
}
|
|
2713
|
+
}
|
|
2714
|
+
},
|
|
2715
|
+
"named": false,
|
|
2716
|
+
"value": "OK-CANCEL"
|
|
2717
|
+
},
|
|
2718
|
+
{
|
|
2719
|
+
"type": "ALIAS",
|
|
2720
|
+
"content": {
|
|
2721
|
+
"type": "TOKEN",
|
|
2722
|
+
"content": {
|
|
2723
|
+
"type": "PREC",
|
|
2724
|
+
"value": 1,
|
|
2725
|
+
"content": {
|
|
2726
|
+
"type": "PATTERN",
|
|
2727
|
+
"value": "[yY][eE][sS][--][nN][oO]"
|
|
2728
|
+
}
|
|
2729
|
+
}
|
|
2730
|
+
},
|
|
2731
|
+
"named": false,
|
|
2732
|
+
"value": "YES-NO"
|
|
2733
|
+
},
|
|
2734
|
+
{
|
|
2735
|
+
"type": "ALIAS",
|
|
2736
|
+
"content": {
|
|
2737
|
+
"type": "TOKEN",
|
|
2738
|
+
"content": {
|
|
2739
|
+
"type": "PREC",
|
|
2740
|
+
"value": 1,
|
|
2741
|
+
"content": {
|
|
2742
|
+
"type": "PATTERN",
|
|
2743
|
+
"value": "[yY][eE][sS][--][nN][oO][--][cC][aA][nN][cC][eE][lL]"
|
|
2744
|
+
}
|
|
2745
|
+
}
|
|
2746
|
+
},
|
|
2747
|
+
"named": false,
|
|
2748
|
+
"value": "YES-NO-CANCEL"
|
|
2749
|
+
},
|
|
2750
|
+
{
|
|
2751
|
+
"type": "ALIAS",
|
|
2752
|
+
"content": {
|
|
2753
|
+
"type": "TOKEN",
|
|
2754
|
+
"content": {
|
|
2755
|
+
"type": "PREC",
|
|
2756
|
+
"value": 1,
|
|
2757
|
+
"content": {
|
|
2758
|
+
"type": "PATTERN",
|
|
2759
|
+
"value": "[oO][kK][--][hH][eE][lL][pP]"
|
|
2760
|
+
}
|
|
2761
|
+
}
|
|
2762
|
+
},
|
|
2763
|
+
"named": false,
|
|
2764
|
+
"value": "OK-HELP"
|
|
2765
|
+
},
|
|
2766
|
+
{
|
|
2767
|
+
"type": "ALIAS",
|
|
2768
|
+
"content": {
|
|
2769
|
+
"type": "TOKEN",
|
|
2770
|
+
"content": {
|
|
2771
|
+
"type": "PREC",
|
|
2772
|
+
"value": 1,
|
|
2773
|
+
"content": {
|
|
2774
|
+
"type": "PATTERN",
|
|
2775
|
+
"value": "[yY][eE][sS][--][nN][oO][--][hH][eE][lL][pP]"
|
|
2776
|
+
}
|
|
2777
|
+
}
|
|
2778
|
+
},
|
|
2779
|
+
"named": false,
|
|
2780
|
+
"value": "YES-NO-HELP"
|
|
2781
|
+
},
|
|
2782
|
+
{
|
|
2783
|
+
"type": "SYMBOL",
|
|
2784
|
+
"name": "identifier"
|
|
2785
|
+
},
|
|
2786
|
+
{
|
|
2787
|
+
"type": "SYMBOL",
|
|
2788
|
+
"name": "string_literal"
|
|
2789
|
+
}
|
|
2790
|
+
]
|
|
2791
|
+
}
|
|
2792
|
+
]
|
|
2793
|
+
},
|
|
2794
|
+
"message_update": {
|
|
2795
|
+
"type": "SEQ",
|
|
2796
|
+
"members": [
|
|
2797
|
+
{
|
|
2798
|
+
"type": "CHOICE",
|
|
2799
|
+
"members": [
|
|
2800
|
+
{
|
|
2801
|
+
"type": "ALIAS",
|
|
2802
|
+
"content": {
|
|
2803
|
+
"type": "TOKEN",
|
|
2804
|
+
"content": {
|
|
2805
|
+
"type": "PREC",
|
|
2806
|
+
"value": 1,
|
|
2807
|
+
"content": {
|
|
2808
|
+
"type": "PATTERN",
|
|
2809
|
+
"value": "[uU][pP][dD][aA][tT][eE]"
|
|
2810
|
+
}
|
|
2811
|
+
}
|
|
2812
|
+
},
|
|
2813
|
+
"named": false,
|
|
2814
|
+
"value": "UPDATE"
|
|
2815
|
+
},
|
|
2816
|
+
{
|
|
2817
|
+
"type": "ALIAS",
|
|
2818
|
+
"content": {
|
|
2819
|
+
"type": "TOKEN",
|
|
2820
|
+
"content": {
|
|
2821
|
+
"type": "PREC",
|
|
2822
|
+
"value": 1,
|
|
2823
|
+
"content": {
|
|
2824
|
+
"type": "PATTERN",
|
|
2825
|
+
"value": "[sS][eE][tT]"
|
|
2826
|
+
}
|
|
2827
|
+
}
|
|
2828
|
+
},
|
|
2829
|
+
"named": false,
|
|
2830
|
+
"value": "SET"
|
|
2831
|
+
}
|
|
2832
|
+
]
|
|
2833
|
+
},
|
|
2834
|
+
{
|
|
2835
|
+
"type": "SYMBOL",
|
|
2836
|
+
"name": "_name"
|
|
2837
|
+
},
|
|
2838
|
+
{
|
|
2839
|
+
"type": "REPEAT",
|
|
2840
|
+
"content": {
|
|
2841
|
+
"type": "CHOICE",
|
|
2842
|
+
"members": [
|
|
2843
|
+
{
|
|
2844
|
+
"type": "SEQ",
|
|
2845
|
+
"members": [
|
|
2846
|
+
{
|
|
2847
|
+
"type": "CHOICE",
|
|
2848
|
+
"members": [
|
|
2849
|
+
{
|
|
2850
|
+
"type": "ALIAS",
|
|
2851
|
+
"content": {
|
|
2852
|
+
"type": "TOKEN",
|
|
2853
|
+
"content": {
|
|
2854
|
+
"type": "PREC",
|
|
2855
|
+
"value": 1,
|
|
2856
|
+
"content": {
|
|
2857
|
+
"type": "PATTERN",
|
|
2858
|
+
"value": "[aA][sS]"
|
|
2859
|
+
}
|
|
2860
|
+
}
|
|
2861
|
+
},
|
|
2862
|
+
"named": false,
|
|
2863
|
+
"value": "AS"
|
|
2864
|
+
},
|
|
2865
|
+
{
|
|
2866
|
+
"type": "ALIAS",
|
|
2867
|
+
"content": {
|
|
2868
|
+
"type": "TOKEN",
|
|
2869
|
+
"content": {
|
|
2870
|
+
"type": "PREC",
|
|
2871
|
+
"value": 1,
|
|
2872
|
+
"content": {
|
|
2873
|
+
"type": "PATTERN",
|
|
2874
|
+
"value": "[lL][iI][kK][eE]"
|
|
2875
|
+
}
|
|
2876
|
+
}
|
|
2877
|
+
},
|
|
2878
|
+
"named": false,
|
|
2879
|
+
"value": "LIKE"
|
|
2880
|
+
}
|
|
2881
|
+
]
|
|
2882
|
+
},
|
|
2883
|
+
{
|
|
2884
|
+
"type": "SYMBOL",
|
|
2885
|
+
"name": "_type"
|
|
2886
|
+
}
|
|
2887
|
+
]
|
|
2888
|
+
},
|
|
2889
|
+
{
|
|
2890
|
+
"type": "SEQ",
|
|
2891
|
+
"members": [
|
|
2892
|
+
{
|
|
2893
|
+
"type": "ALIAS",
|
|
2894
|
+
"content": {
|
|
2895
|
+
"type": "TOKEN",
|
|
2896
|
+
"content": {
|
|
2897
|
+
"type": "PREC",
|
|
2898
|
+
"value": 1,
|
|
2899
|
+
"content": {
|
|
2900
|
+
"type": "PATTERN",
|
|
2901
|
+
"value": "[fF][oO][rR][mM][aA][tT]"
|
|
2902
|
+
}
|
|
2903
|
+
}
|
|
2904
|
+
},
|
|
2905
|
+
"named": false,
|
|
2906
|
+
"value": "FORMAT"
|
|
2907
|
+
},
|
|
2908
|
+
{
|
|
2909
|
+
"type": "SYMBOL",
|
|
2910
|
+
"name": "string_literal"
|
|
2911
|
+
}
|
|
2912
|
+
]
|
|
2913
|
+
},
|
|
2914
|
+
{
|
|
2915
|
+
"type": "ALIAS",
|
|
2916
|
+
"content": {
|
|
2917
|
+
"type": "TOKEN",
|
|
2918
|
+
"content": {
|
|
2919
|
+
"type": "PREC",
|
|
2920
|
+
"value": 1,
|
|
2921
|
+
"content": {
|
|
2922
|
+
"type": "PATTERN",
|
|
2923
|
+
"value": "[aA][uU][tT][oO][--][rR][eE][tT][uU][rR][nN]"
|
|
2924
|
+
}
|
|
2925
|
+
}
|
|
2926
|
+
},
|
|
2927
|
+
"named": false,
|
|
2928
|
+
"value": "AUTO-RETURN"
|
|
2929
|
+
}
|
|
2930
|
+
]
|
|
2931
|
+
}
|
|
2932
|
+
}
|
|
2933
|
+
]
|
|
2934
|
+
},
|
|
2935
|
+
"message_pause": {
|
|
2936
|
+
"type": "ALIAS",
|
|
2937
|
+
"content": {
|
|
2938
|
+
"type": "TOKEN",
|
|
2939
|
+
"content": {
|
|
2940
|
+
"type": "PREC",
|
|
2941
|
+
"value": 1,
|
|
2942
|
+
"content": {
|
|
2943
|
+
"type": "PATTERN",
|
|
2944
|
+
"value": "[pP][aA][uU][sS][eE]"
|
|
2945
|
+
}
|
|
2946
|
+
}
|
|
2947
|
+
},
|
|
2948
|
+
"named": false,
|
|
2949
|
+
"value": "PAUSE"
|
|
2950
|
+
},
|
|
2951
|
+
"class_tuning": {
|
|
2952
|
+
"type": "CHOICE",
|
|
2953
|
+
"members": [
|
|
2954
|
+
{
|
|
2955
|
+
"type": "SYMBOL",
|
|
2956
|
+
"name": "inherits"
|
|
2957
|
+
},
|
|
2958
|
+
{
|
|
2959
|
+
"type": "SYMBOL",
|
|
2960
|
+
"name": "implements"
|
|
2961
|
+
},
|
|
2962
|
+
{
|
|
2963
|
+
"type": "ALIAS",
|
|
2964
|
+
"content": {
|
|
2965
|
+
"type": "TOKEN",
|
|
2966
|
+
"content": {
|
|
2967
|
+
"type": "PREC",
|
|
2968
|
+
"value": 1,
|
|
2969
|
+
"content": {
|
|
2970
|
+
"type": "PATTERN",
|
|
2971
|
+
"value": "[uU][sS][eE][--][wW][iI][dD][gG][eE][tT][--][pP][oO][oO][lL]"
|
|
2972
|
+
}
|
|
2973
|
+
}
|
|
2974
|
+
},
|
|
2975
|
+
"named": false,
|
|
2976
|
+
"value": "USE-WIDGET-POOL"
|
|
2977
|
+
},
|
|
2978
|
+
{
|
|
2979
|
+
"type": "ALIAS",
|
|
2980
|
+
"content": {
|
|
2981
|
+
"type": "TOKEN",
|
|
2982
|
+
"content": {
|
|
2983
|
+
"type": "PREC",
|
|
2984
|
+
"value": 1,
|
|
2985
|
+
"content": {
|
|
2986
|
+
"type": "PATTERN",
|
|
2987
|
+
"value": "[aA][bB][sS][tT][rR][aA][cC][tT]"
|
|
2988
|
+
}
|
|
2989
|
+
}
|
|
2990
|
+
},
|
|
2991
|
+
"named": false,
|
|
2992
|
+
"value": "ABSTRACT"
|
|
2993
|
+
},
|
|
2994
|
+
{
|
|
2995
|
+
"type": "ALIAS",
|
|
2996
|
+
"content": {
|
|
2997
|
+
"type": "TOKEN",
|
|
2998
|
+
"content": {
|
|
2999
|
+
"type": "PREC",
|
|
3000
|
+
"value": 1,
|
|
3001
|
+
"content": {
|
|
3002
|
+
"type": "PATTERN",
|
|
3003
|
+
"value": "[fF][iI][nN][aA][lL]"
|
|
3004
|
+
}
|
|
3005
|
+
}
|
|
3006
|
+
},
|
|
3007
|
+
"named": false,
|
|
3008
|
+
"value": "FINAL"
|
|
3009
|
+
},
|
|
3010
|
+
{
|
|
3011
|
+
"type": "ALIAS",
|
|
3012
|
+
"content": {
|
|
3013
|
+
"type": "TOKEN",
|
|
3014
|
+
"content": {
|
|
3015
|
+
"type": "PREC",
|
|
3016
|
+
"value": 1,
|
|
3017
|
+
"content": {
|
|
3018
|
+
"type": "PATTERN",
|
|
3019
|
+
"value": "[sS][eE][rR][iI][aA][lL][iI][zZ][aA][bB][lL][eE]"
|
|
3020
|
+
}
|
|
3021
|
+
}
|
|
3022
|
+
},
|
|
3023
|
+
"named": false,
|
|
3024
|
+
"value": "SERIALIZABLE"
|
|
3025
|
+
}
|
|
3026
|
+
]
|
|
3027
|
+
},
|
|
3028
|
+
"field_option": {
|
|
3029
|
+
"type": "CHOICE",
|
|
3030
|
+
"members": [
|
|
3031
|
+
{
|
|
3032
|
+
"type": "SYMBOL",
|
|
3033
|
+
"name": "_column_label"
|
|
3034
|
+
},
|
|
3035
|
+
{
|
|
3036
|
+
"type": "SYMBOL",
|
|
3037
|
+
"name": "_label"
|
|
3038
|
+
},
|
|
3039
|
+
{
|
|
3040
|
+
"type": "SYMBOL",
|
|
3041
|
+
"name": "_format"
|
|
3042
|
+
},
|
|
3043
|
+
{
|
|
3044
|
+
"type": "SYMBOL",
|
|
3045
|
+
"name": "_value_tuning"
|
|
3046
|
+
},
|
|
3047
|
+
{
|
|
3048
|
+
"type": "SYMBOL",
|
|
3049
|
+
"name": "_font"
|
|
3050
|
+
},
|
|
3051
|
+
{
|
|
3052
|
+
"type": "ALIAS",
|
|
3053
|
+
"content": {
|
|
3054
|
+
"type": "TOKEN",
|
|
3055
|
+
"content": {
|
|
3056
|
+
"type": "PREC",
|
|
3057
|
+
"value": 1,
|
|
3058
|
+
"content": {
|
|
3059
|
+
"type": "PATTERN",
|
|
3060
|
+
"value": "[sS][eE][rR][iI][aA][lL][iI][zZ][eE][--][hH][iI][dD][dD][eE][nN]"
|
|
3061
|
+
}
|
|
3062
|
+
}
|
|
3063
|
+
},
|
|
3064
|
+
"named": false,
|
|
3065
|
+
"value": "SERIALIZE-HIDDEN"
|
|
3066
|
+
},
|
|
3067
|
+
{
|
|
3068
|
+
"type": "SYMBOL",
|
|
3069
|
+
"name": "_serialize_name"
|
|
3070
|
+
},
|
|
3071
|
+
{
|
|
3072
|
+
"type": "SEQ",
|
|
3073
|
+
"members": [
|
|
3074
|
+
{
|
|
3075
|
+
"type": "ALIAS",
|
|
3076
|
+
"content": {
|
|
3077
|
+
"type": "TOKEN",
|
|
3078
|
+
"content": {
|
|
3079
|
+
"type": "PREC",
|
|
3080
|
+
"value": 1,
|
|
3081
|
+
"content": {
|
|
3082
|
+
"type": "PATTERN",
|
|
3083
|
+
"value": "[hH][eE][lL][pP]"
|
|
3084
|
+
}
|
|
3085
|
+
}
|
|
3086
|
+
},
|
|
3087
|
+
"named": false,
|
|
3088
|
+
"value": "HELP"
|
|
3089
|
+
},
|
|
3090
|
+
{
|
|
3091
|
+
"type": "SYMBOL",
|
|
3092
|
+
"name": "string_literal"
|
|
3093
|
+
}
|
|
3094
|
+
]
|
|
3095
|
+
},
|
|
3096
|
+
{
|
|
3097
|
+
"type": "SEQ",
|
|
3098
|
+
"members": [
|
|
3099
|
+
{
|
|
3100
|
+
"type": "CHOICE",
|
|
3101
|
+
"members": [
|
|
3102
|
+
{
|
|
3103
|
+
"type": "ALIAS",
|
|
3104
|
+
"content": {
|
|
3105
|
+
"type": "TOKEN",
|
|
3106
|
+
"content": {
|
|
3107
|
+
"type": "PREC",
|
|
3108
|
+
"value": 1,
|
|
3109
|
+
"content": {
|
|
3110
|
+
"type": "PATTERN",
|
|
3111
|
+
"value": "[nN][oO][tT]"
|
|
3112
|
+
}
|
|
3113
|
+
}
|
|
3114
|
+
},
|
|
3115
|
+
"named": false,
|
|
3116
|
+
"value": "NOT"
|
|
3117
|
+
},
|
|
3118
|
+
{
|
|
3119
|
+
"type": "BLANK"
|
|
3120
|
+
}
|
|
3121
|
+
]
|
|
3122
|
+
},
|
|
3123
|
+
{
|
|
3124
|
+
"type": "ALIAS",
|
|
3125
|
+
"content": {
|
|
3126
|
+
"type": "TOKEN",
|
|
3127
|
+
"content": {
|
|
3128
|
+
"type": "PREC",
|
|
3129
|
+
"value": 1,
|
|
3130
|
+
"content": {
|
|
3131
|
+
"type": "PATTERN",
|
|
3132
|
+
"value": "[cC][aA][sS][eE][--][sS][eE][nN][sS][iI][tT][iI][vV][eE]"
|
|
3133
|
+
}
|
|
3134
|
+
}
|
|
3135
|
+
},
|
|
3136
|
+
"named": false,
|
|
3137
|
+
"value": "CASE-SENSITIVE"
|
|
3138
|
+
}
|
|
3139
|
+
]
|
|
3140
|
+
},
|
|
3141
|
+
{
|
|
3142
|
+
"type": "SEQ",
|
|
3143
|
+
"members": [
|
|
3144
|
+
{
|
|
3145
|
+
"type": "ALIAS",
|
|
3146
|
+
"content": {
|
|
3147
|
+
"type": "TOKEN",
|
|
3148
|
+
"content": {
|
|
3149
|
+
"type": "PREC",
|
|
3150
|
+
"value": 1,
|
|
3151
|
+
"content": {
|
|
3152
|
+
"type": "PATTERN",
|
|
3153
|
+
"value": "[mM][oO][uU][sS][eE][--][pP][oO][iI][nN][tT][eE][rR]"
|
|
3154
|
+
}
|
|
3155
|
+
}
|
|
3156
|
+
},
|
|
3157
|
+
"named": false,
|
|
3158
|
+
"value": "MOUSE-POINTER"
|
|
3159
|
+
},
|
|
3160
|
+
{
|
|
3161
|
+
"type": "SYMBOL",
|
|
3162
|
+
"name": "identifier"
|
|
3163
|
+
}
|
|
3164
|
+
]
|
|
3165
|
+
}
|
|
3166
|
+
]
|
|
3167
|
+
},
|
|
3168
|
+
"parameter_tuning": {
|
|
3169
|
+
"type": "CHOICE",
|
|
3170
|
+
"members": [
|
|
3171
|
+
{
|
|
3172
|
+
"type": "ALIAS",
|
|
3173
|
+
"content": {
|
|
3174
|
+
"type": "TOKEN",
|
|
3175
|
+
"content": {
|
|
3176
|
+
"type": "PREC",
|
|
3177
|
+
"value": 1,
|
|
3178
|
+
"content": {
|
|
3179
|
+
"type": "PATTERN",
|
|
3180
|
+
"value": "[aA][pP][pP][eE][nN][dD]"
|
|
3181
|
+
}
|
|
3182
|
+
}
|
|
3183
|
+
},
|
|
3184
|
+
"named": false,
|
|
3185
|
+
"value": "APPEND"
|
|
3186
|
+
},
|
|
3187
|
+
{
|
|
3188
|
+
"type": "ALIAS",
|
|
3189
|
+
"content": {
|
|
3190
|
+
"type": "TOKEN",
|
|
3191
|
+
"content": {
|
|
3192
|
+
"type": "PREC",
|
|
3193
|
+
"value": 1,
|
|
3194
|
+
"content": {
|
|
3195
|
+
"type": "PATTERN",
|
|
3196
|
+
"value": "[bB][iI][nN][dD]"
|
|
3197
|
+
}
|
|
3198
|
+
}
|
|
3199
|
+
},
|
|
3200
|
+
"named": false,
|
|
3201
|
+
"value": "BIND"
|
|
3202
|
+
},
|
|
3203
|
+
{
|
|
3204
|
+
"type": "ALIAS",
|
|
3205
|
+
"content": {
|
|
3206
|
+
"type": "TOKEN",
|
|
3207
|
+
"content": {
|
|
3208
|
+
"type": "PREC",
|
|
3209
|
+
"value": 1,
|
|
3210
|
+
"content": {
|
|
3211
|
+
"type": "PATTERN",
|
|
3212
|
+
"value": "[bB][yY][--][vV][aA][lL][uU][eE]"
|
|
3213
|
+
}
|
|
3214
|
+
}
|
|
3215
|
+
},
|
|
3216
|
+
"named": false,
|
|
3217
|
+
"value": "BY-VALUE"
|
|
3218
|
+
},
|
|
3219
|
+
{
|
|
3220
|
+
"type": "ALIAS",
|
|
3221
|
+
"content": {
|
|
3222
|
+
"type": "TOKEN",
|
|
3223
|
+
"content": {
|
|
3224
|
+
"type": "PREC",
|
|
3225
|
+
"value": 1,
|
|
3226
|
+
"content": {
|
|
3227
|
+
"type": "PATTERN",
|
|
3228
|
+
"value": "[bB][yY][--][rR][eE][fF][eE][rR][eE][nN][cC][eE]"
|
|
3229
|
+
}
|
|
3230
|
+
}
|
|
3231
|
+
},
|
|
3232
|
+
"named": false,
|
|
3233
|
+
"value": "BY-REFERENCE"
|
|
3234
|
+
},
|
|
3235
|
+
{
|
|
3236
|
+
"type": "SYMBOL",
|
|
3237
|
+
"name": "_extent"
|
|
3238
|
+
}
|
|
3239
|
+
]
|
|
3240
|
+
},
|
|
3241
|
+
"function_parameters": {
|
|
3242
|
+
"type": "SEQ",
|
|
3243
|
+
"members": [
|
|
3244
|
+
{
|
|
3245
|
+
"type": "STRING",
|
|
3246
|
+
"value": "("
|
|
2493
3247
|
},
|
|
2494
3248
|
{
|
|
2495
3249
|
"type": "CHOICE",
|
|
@@ -2753,8 +3507,17 @@
|
|
|
2753
3507
|
"value": "TARGET"
|
|
2754
3508
|
},
|
|
2755
3509
|
{
|
|
2756
|
-
"type": "
|
|
2757
|
-
"
|
|
3510
|
+
"type": "CHOICE",
|
|
3511
|
+
"members": [
|
|
3512
|
+
{
|
|
3513
|
+
"type": "SYMBOL",
|
|
3514
|
+
"name": "identifier"
|
|
3515
|
+
},
|
|
3516
|
+
{
|
|
3517
|
+
"type": "SYMBOL",
|
|
3518
|
+
"name": "string_literal"
|
|
3519
|
+
}
|
|
3520
|
+
]
|
|
2758
3521
|
}
|
|
2759
3522
|
]
|
|
2760
3523
|
},
|
|
@@ -2786,8 +3549,17 @@
|
|
|
2786
3549
|
"value": "SOURCE"
|
|
2787
3550
|
},
|
|
2788
3551
|
{
|
|
2789
|
-
"type": "
|
|
2790
|
-
"
|
|
3552
|
+
"type": "CHOICE",
|
|
3553
|
+
"members": [
|
|
3554
|
+
{
|
|
3555
|
+
"type": "SYMBOL",
|
|
3556
|
+
"name": "identifier"
|
|
3557
|
+
},
|
|
3558
|
+
{
|
|
3559
|
+
"type": "SYMBOL",
|
|
3560
|
+
"name": "string_literal"
|
|
3561
|
+
}
|
|
3562
|
+
]
|
|
2791
3563
|
}
|
|
2792
3564
|
]
|
|
2793
3565
|
},
|
|
@@ -4414,15 +5186,8 @@
|
|
|
4414
5186
|
{
|
|
4415
5187
|
"type": "ALIAS",
|
|
4416
5188
|
"content": {
|
|
4417
|
-
"type": "
|
|
4418
|
-
"
|
|
4419
|
-
"type": "PREC",
|
|
4420
|
-
"value": 1,
|
|
4421
|
-
"content": {
|
|
4422
|
-
"type": "PATTERN",
|
|
4423
|
-
"value": "[rR][eE][tT][uU][rR][nN]"
|
|
4424
|
-
}
|
|
4425
|
-
}
|
|
5189
|
+
"type": "SYMBOL",
|
|
5190
|
+
"name": "_return_keyword"
|
|
4426
5191
|
},
|
|
4427
5192
|
"named": false,
|
|
4428
5193
|
"value": "RETURN"
|
|
@@ -4593,6 +5358,10 @@
|
|
|
4593
5358
|
"type": "SYMBOL",
|
|
4594
5359
|
"name": "identifier"
|
|
4595
5360
|
},
|
|
5361
|
+
{
|
|
5362
|
+
"type": "SYMBOL",
|
|
5363
|
+
"name": "qualified_name"
|
|
5364
|
+
},
|
|
4596
5365
|
{
|
|
4597
5366
|
"type": "SYMBOL",
|
|
4598
5367
|
"name": "object_access"
|
|
@@ -4737,6 +5506,10 @@
|
|
|
4737
5506
|
{
|
|
4738
5507
|
"type": "SYMBOL",
|
|
4739
5508
|
"name": "object_access"
|
|
5509
|
+
},
|
|
5510
|
+
{
|
|
5511
|
+
"type": "SYMBOL",
|
|
5512
|
+
"name": "member_access"
|
|
4740
5513
|
}
|
|
4741
5514
|
]
|
|
4742
5515
|
},
|
|
@@ -4907,6 +5680,10 @@
|
|
|
4907
5680
|
{
|
|
4908
5681
|
"type": "SYMBOL",
|
|
4909
5682
|
"name": "function_call"
|
|
5683
|
+
},
|
|
5684
|
+
{
|
|
5685
|
+
"type": "SYMBOL",
|
|
5686
|
+
"name": "boolean_literal"
|
|
4910
5687
|
}
|
|
4911
5688
|
]
|
|
4912
5689
|
},
|
|
@@ -6427,15 +7204,8 @@
|
|
|
6427
7204
|
{
|
|
6428
7205
|
"type": "ALIAS",
|
|
6429
7206
|
"content": {
|
|
6430
|
-
"type": "
|
|
6431
|
-
"
|
|
6432
|
-
"type": "PREC",
|
|
6433
|
-
"value": 1,
|
|
6434
|
-
"content": {
|
|
6435
|
-
"type": "PATTERN",
|
|
6436
|
-
"value": "[rR][eE][tT][uU][rR][nN]"
|
|
6437
|
-
}
|
|
6438
|
-
}
|
|
7207
|
+
"type": "SYMBOL",
|
|
7208
|
+
"name": "_return_keyword"
|
|
6439
7209
|
},
|
|
6440
7210
|
"named": false,
|
|
6441
7211
|
"value": "RETURN"
|
|
@@ -6558,6 +7328,67 @@
|
|
|
6558
7328
|
"named": false,
|
|
6559
7329
|
"value": "TO"
|
|
6560
7330
|
},
|
|
7331
|
+
{
|
|
7332
|
+
"type": "CHOICE",
|
|
7333
|
+
"members": [
|
|
7334
|
+
{
|
|
7335
|
+
"type": "CHOICE",
|
|
7336
|
+
"members": [
|
|
7337
|
+
{
|
|
7338
|
+
"type": "ALIAS",
|
|
7339
|
+
"content": {
|
|
7340
|
+
"type": "TOKEN",
|
|
7341
|
+
"content": {
|
|
7342
|
+
"type": "PREC",
|
|
7343
|
+
"value": 1,
|
|
7344
|
+
"content": {
|
|
7345
|
+
"type": "PATTERN",
|
|
7346
|
+
"value": "[bB][rR][oO][wW][sS][eE]"
|
|
7347
|
+
}
|
|
7348
|
+
}
|
|
7349
|
+
},
|
|
7350
|
+
"named": false,
|
|
7351
|
+
"value": "BROWSE"
|
|
7352
|
+
},
|
|
7353
|
+
{
|
|
7354
|
+
"type": "ALIAS",
|
|
7355
|
+
"content": {
|
|
7356
|
+
"type": "TOKEN",
|
|
7357
|
+
"content": {
|
|
7358
|
+
"type": "PREC",
|
|
7359
|
+
"value": 1,
|
|
7360
|
+
"content": {
|
|
7361
|
+
"type": "PATTERN",
|
|
7362
|
+
"value": "[sS][eE][lL][eE][cC][tT][iI][oO][nN][--][lL][iI][sS][tT]"
|
|
7363
|
+
}
|
|
7364
|
+
}
|
|
7365
|
+
},
|
|
7366
|
+
"named": false,
|
|
7367
|
+
"value": "SELECTION-LIST"
|
|
7368
|
+
},
|
|
7369
|
+
{
|
|
7370
|
+
"type": "ALIAS",
|
|
7371
|
+
"content": {
|
|
7372
|
+
"type": "TOKEN",
|
|
7373
|
+
"content": {
|
|
7374
|
+
"type": "PREC",
|
|
7375
|
+
"value": 1,
|
|
7376
|
+
"content": {
|
|
7377
|
+
"type": "PATTERN",
|
|
7378
|
+
"value": "[lL][iI][sS][tT][--][bB][oO][xX]"
|
|
7379
|
+
}
|
|
7380
|
+
}
|
|
7381
|
+
},
|
|
7382
|
+
"named": false,
|
|
7383
|
+
"value": "LIST-BOX"
|
|
7384
|
+
}
|
|
7385
|
+
]
|
|
7386
|
+
},
|
|
7387
|
+
{
|
|
7388
|
+
"type": "BLANK"
|
|
7389
|
+
}
|
|
7390
|
+
]
|
|
7391
|
+
},
|
|
6561
7392
|
{
|
|
6562
7393
|
"type": "CHOICE",
|
|
6563
7394
|
"members": [
|
|
@@ -6571,11 +7402,19 @@
|
|
|
6571
7402
|
},
|
|
6572
7403
|
{
|
|
6573
7404
|
"type": "SYMBOL",
|
|
6574
|
-
"name": "
|
|
7405
|
+
"name": "_name"
|
|
6575
7406
|
},
|
|
6576
7407
|
{
|
|
6577
7408
|
"type": "SYMBOL",
|
|
6578
7409
|
"name": "object_access"
|
|
7410
|
+
},
|
|
7411
|
+
{
|
|
7412
|
+
"type": "SYMBOL",
|
|
7413
|
+
"name": "multiplicative_expression"
|
|
7414
|
+
},
|
|
7415
|
+
{
|
|
7416
|
+
"type": "SYMBOL",
|
|
7417
|
+
"name": "additive_expression"
|
|
6579
7418
|
}
|
|
6580
7419
|
]
|
|
6581
7420
|
},
|
|
@@ -10746,15 +11585,8 @@
|
|
|
10746
11585
|
{
|
|
10747
11586
|
"type": "ALIAS",
|
|
10748
11587
|
"content": {
|
|
10749
|
-
"type": "
|
|
10750
|
-
"
|
|
10751
|
-
"type": "PREC",
|
|
10752
|
-
"value": 1,
|
|
10753
|
-
"content": {
|
|
10754
|
-
"type": "PATTERN",
|
|
10755
|
-
"value": "[rR][eE][tT][uU][rR][nN]"
|
|
10756
|
-
}
|
|
10757
|
-
}
|
|
11588
|
+
"type": "SYMBOL",
|
|
11589
|
+
"name": "_return_keyword"
|
|
10758
11590
|
},
|
|
10759
11591
|
"named": false,
|
|
10760
11592
|
"value": "RETURN"
|
|
@@ -11771,78 +12603,217 @@
|
|
|
11771
12603
|
]
|
|
11772
12604
|
}
|
|
11773
12605
|
},
|
|
11774
|
-
{
|
|
11775
|
-
"type": "SYMBOL",
|
|
11776
|
-
"name": "_terminator"
|
|
11777
|
-
}
|
|
11778
|
-
]
|
|
11779
|
-
},
|
|
11780
|
-
"workfile_definition": {
|
|
11781
|
-
"type": "SEQ",
|
|
11782
|
-
"members": [
|
|
11783
|
-
{
|
|
11784
|
-
"type": "SYMBOL",
|
|
11785
|
-
"name": "_define"
|
|
11786
|
-
},
|
|
12606
|
+
{
|
|
12607
|
+
"type": "SYMBOL",
|
|
12608
|
+
"name": "_terminator"
|
|
12609
|
+
}
|
|
12610
|
+
]
|
|
12611
|
+
},
|
|
12612
|
+
"workfile_definition": {
|
|
12613
|
+
"type": "SEQ",
|
|
12614
|
+
"members": [
|
|
12615
|
+
{
|
|
12616
|
+
"type": "SYMBOL",
|
|
12617
|
+
"name": "_define"
|
|
12618
|
+
},
|
|
12619
|
+
{
|
|
12620
|
+
"type": "REPEAT",
|
|
12621
|
+
"content": {
|
|
12622
|
+
"type": "SYMBOL",
|
|
12623
|
+
"name": "_tuning"
|
|
12624
|
+
}
|
|
12625
|
+
},
|
|
12626
|
+
{
|
|
12627
|
+
"type": "CHOICE",
|
|
12628
|
+
"members": [
|
|
12629
|
+
{
|
|
12630
|
+
"type": "ALIAS",
|
|
12631
|
+
"content": {
|
|
12632
|
+
"type": "TOKEN",
|
|
12633
|
+
"content": {
|
|
12634
|
+
"type": "PREC",
|
|
12635
|
+
"value": 1,
|
|
12636
|
+
"content": {
|
|
12637
|
+
"type": "PATTERN",
|
|
12638
|
+
"value": "[wW][oO][rR][kK][fF][iI][lL][eE]"
|
|
12639
|
+
}
|
|
12640
|
+
}
|
|
12641
|
+
},
|
|
12642
|
+
"named": false,
|
|
12643
|
+
"value": "WORKFILE"
|
|
12644
|
+
},
|
|
12645
|
+
{
|
|
12646
|
+
"type": "ALIAS",
|
|
12647
|
+
"content": {
|
|
12648
|
+
"type": "TOKEN",
|
|
12649
|
+
"content": {
|
|
12650
|
+
"type": "PREC",
|
|
12651
|
+
"value": 1,
|
|
12652
|
+
"content": {
|
|
12653
|
+
"type": "PATTERN",
|
|
12654
|
+
"value": "[wW][oO][rR][kK][--][tT][aA][bB][lL][eE]"
|
|
12655
|
+
}
|
|
12656
|
+
}
|
|
12657
|
+
},
|
|
12658
|
+
"named": false,
|
|
12659
|
+
"value": "WORK-TABLE"
|
|
12660
|
+
}
|
|
12661
|
+
]
|
|
12662
|
+
},
|
|
12663
|
+
{
|
|
12664
|
+
"type": "FIELD",
|
|
12665
|
+
"name": "name",
|
|
12666
|
+
"content": {
|
|
12667
|
+
"type": "SYMBOL",
|
|
12668
|
+
"name": "identifier"
|
|
12669
|
+
}
|
|
12670
|
+
},
|
|
12671
|
+
{
|
|
12672
|
+
"type": "REPEAT",
|
|
12673
|
+
"content": {
|
|
12674
|
+
"type": "SYMBOL",
|
|
12675
|
+
"name": "workfile_tuning"
|
|
12676
|
+
}
|
|
12677
|
+
},
|
|
12678
|
+
{
|
|
12679
|
+
"type": "SYMBOL",
|
|
12680
|
+
"name": "_terminator"
|
|
12681
|
+
}
|
|
12682
|
+
]
|
|
12683
|
+
},
|
|
12684
|
+
"message_statement": {
|
|
12685
|
+
"type": "SEQ",
|
|
12686
|
+
"members": [
|
|
12687
|
+
{
|
|
12688
|
+
"type": "ALIAS",
|
|
12689
|
+
"content": {
|
|
12690
|
+
"type": "TOKEN",
|
|
12691
|
+
"content": {
|
|
12692
|
+
"type": "PREC",
|
|
12693
|
+
"value": 1,
|
|
12694
|
+
"content": {
|
|
12695
|
+
"type": "PATTERN",
|
|
12696
|
+
"value": "[mM][eE][sS][sS][aA][gG][eE]"
|
|
12697
|
+
}
|
|
12698
|
+
}
|
|
12699
|
+
},
|
|
12700
|
+
"named": false,
|
|
12701
|
+
"value": "MESSAGE"
|
|
12702
|
+
},
|
|
12703
|
+
{
|
|
12704
|
+
"type": "REPEAT1",
|
|
12705
|
+
"content": {
|
|
12706
|
+
"type": "CHOICE",
|
|
12707
|
+
"members": [
|
|
12708
|
+
{
|
|
12709
|
+
"type": "SYMBOL",
|
|
12710
|
+
"name": "_message_statement_expression"
|
|
12711
|
+
},
|
|
12712
|
+
{
|
|
12713
|
+
"type": "SEQ",
|
|
12714
|
+
"members": [
|
|
12715
|
+
{
|
|
12716
|
+
"type": "ALIAS",
|
|
12717
|
+
"content": {
|
|
12718
|
+
"type": "TOKEN",
|
|
12719
|
+
"content": {
|
|
12720
|
+
"type": "PREC",
|
|
12721
|
+
"value": 1,
|
|
12722
|
+
"content": {
|
|
12723
|
+
"type": "PATTERN",
|
|
12724
|
+
"value": "[sS][kK][iI][pP]"
|
|
12725
|
+
}
|
|
12726
|
+
}
|
|
12727
|
+
},
|
|
12728
|
+
"named": false,
|
|
12729
|
+
"value": "SKIP"
|
|
12730
|
+
},
|
|
12731
|
+
{
|
|
12732
|
+
"type": "CHOICE",
|
|
12733
|
+
"members": [
|
|
12734
|
+
{
|
|
12735
|
+
"type": "SEQ",
|
|
12736
|
+
"members": [
|
|
12737
|
+
{
|
|
12738
|
+
"type": "STRING",
|
|
12739
|
+
"value": "("
|
|
12740
|
+
},
|
|
12741
|
+
{
|
|
12742
|
+
"type": "SYMBOL",
|
|
12743
|
+
"name": "_integer_literal"
|
|
12744
|
+
},
|
|
12745
|
+
{
|
|
12746
|
+
"type": "STRING",
|
|
12747
|
+
"value": ")"
|
|
12748
|
+
}
|
|
12749
|
+
]
|
|
12750
|
+
},
|
|
12751
|
+
{
|
|
12752
|
+
"type": "BLANK"
|
|
12753
|
+
}
|
|
12754
|
+
]
|
|
12755
|
+
}
|
|
12756
|
+
]
|
|
12757
|
+
}
|
|
12758
|
+
]
|
|
12759
|
+
}
|
|
12760
|
+
},
|
|
11787
12761
|
{
|
|
11788
12762
|
"type": "REPEAT",
|
|
11789
12763
|
"content": {
|
|
11790
12764
|
"type": "SYMBOL",
|
|
11791
|
-
"name": "
|
|
12765
|
+
"name": "_message_tuning"
|
|
11792
12766
|
}
|
|
11793
12767
|
},
|
|
11794
12768
|
{
|
|
11795
12769
|
"type": "CHOICE",
|
|
11796
12770
|
"members": [
|
|
11797
12771
|
{
|
|
11798
|
-
"type": "
|
|
11799
|
-
"
|
|
11800
|
-
|
|
11801
|
-
|
|
11802
|
-
"type": "PREC",
|
|
11803
|
-
"value": 1,
|
|
12772
|
+
"type": "SEQ",
|
|
12773
|
+
"members": [
|
|
12774
|
+
{
|
|
12775
|
+
"type": "ALIAS",
|
|
11804
12776
|
"content": {
|
|
11805
|
-
"type": "
|
|
11806
|
-
"
|
|
11807
|
-
|
|
12777
|
+
"type": "TOKEN",
|
|
12778
|
+
"content": {
|
|
12779
|
+
"type": "PREC",
|
|
12780
|
+
"value": 1,
|
|
12781
|
+
"content": {
|
|
12782
|
+
"type": "PATTERN",
|
|
12783
|
+
"value": "[iI][nN]"
|
|
12784
|
+
}
|
|
12785
|
+
}
|
|
12786
|
+
},
|
|
12787
|
+
"named": false,
|
|
12788
|
+
"value": "IN"
|
|
12789
|
+
},
|
|
12790
|
+
{
|
|
12791
|
+
"type": "ALIAS",
|
|
12792
|
+
"content": {
|
|
12793
|
+
"type": "TOKEN",
|
|
12794
|
+
"content": {
|
|
12795
|
+
"type": "PREC",
|
|
12796
|
+
"value": 1,
|
|
12797
|
+
"content": {
|
|
12798
|
+
"type": "PATTERN",
|
|
12799
|
+
"value": "[wW][iI][nN][dD][oO][wW]"
|
|
12800
|
+
}
|
|
12801
|
+
}
|
|
12802
|
+
},
|
|
12803
|
+
"named": false,
|
|
12804
|
+
"value": "WINDOW"
|
|
12805
|
+
},
|
|
12806
|
+
{
|
|
12807
|
+
"type": "SYMBOL",
|
|
12808
|
+
"name": "_name"
|
|
11808
12809
|
}
|
|
11809
|
-
|
|
11810
|
-
"named": false,
|
|
11811
|
-
"value": "WORKFILE"
|
|
12810
|
+
]
|
|
11812
12811
|
},
|
|
11813
12812
|
{
|
|
11814
|
-
"type": "
|
|
11815
|
-
"content": {
|
|
11816
|
-
"type": "TOKEN",
|
|
11817
|
-
"content": {
|
|
11818
|
-
"type": "PREC",
|
|
11819
|
-
"value": 1,
|
|
11820
|
-
"content": {
|
|
11821
|
-
"type": "PATTERN",
|
|
11822
|
-
"value": "[wW][oO][rR][kK][--][tT][aA][bB][lL][eE]"
|
|
11823
|
-
}
|
|
11824
|
-
}
|
|
11825
|
-
},
|
|
11826
|
-
"named": false,
|
|
11827
|
-
"value": "WORK-TABLE"
|
|
12813
|
+
"type": "BLANK"
|
|
11828
12814
|
}
|
|
11829
12815
|
]
|
|
11830
12816
|
},
|
|
11831
|
-
{
|
|
11832
|
-
"type": "FIELD",
|
|
11833
|
-
"name": "name",
|
|
11834
|
-
"content": {
|
|
11835
|
-
"type": "SYMBOL",
|
|
11836
|
-
"name": "identifier"
|
|
11837
|
-
}
|
|
11838
|
-
},
|
|
11839
|
-
{
|
|
11840
|
-
"type": "REPEAT",
|
|
11841
|
-
"content": {
|
|
11842
|
-
"type": "SYMBOL",
|
|
11843
|
-
"name": "workfile_tuning"
|
|
11844
|
-
}
|
|
11845
|
-
},
|
|
11846
12817
|
{
|
|
11847
12818
|
"type": "SYMBOL",
|
|
11848
12819
|
"name": "_terminator"
|
|
@@ -12443,6 +13414,30 @@
|
|
|
12443
13414
|
"type": "SYMBOL",
|
|
12444
13415
|
"name": "assignment"
|
|
12445
13416
|
},
|
|
13417
|
+
{
|
|
13418
|
+
"type": "CHOICE",
|
|
13419
|
+
"members": [
|
|
13420
|
+
{
|
|
13421
|
+
"type": "ALIAS",
|
|
13422
|
+
"content": {
|
|
13423
|
+
"type": "TOKEN",
|
|
13424
|
+
"content": {
|
|
13425
|
+
"type": "PREC",
|
|
13426
|
+
"value": 1,
|
|
13427
|
+
"content": {
|
|
13428
|
+
"type": "PATTERN",
|
|
13429
|
+
"value": "[nN][oO][--][eE][rR][rR][oO][rR]"
|
|
13430
|
+
}
|
|
13431
|
+
}
|
|
13432
|
+
},
|
|
13433
|
+
"named": false,
|
|
13434
|
+
"value": "NO-ERROR"
|
|
13435
|
+
},
|
|
13436
|
+
{
|
|
13437
|
+
"type": "BLANK"
|
|
13438
|
+
}
|
|
13439
|
+
]
|
|
13440
|
+
},
|
|
12446
13441
|
{
|
|
12447
13442
|
"type": "SYMBOL",
|
|
12448
13443
|
"name": "_terminator"
|
|
@@ -12793,16 +13788,11 @@
|
|
|
12793
13788
|
]
|
|
12794
13789
|
},
|
|
12795
13790
|
{
|
|
12796
|
-
"type": "
|
|
12797
|
-
"
|
|
12798
|
-
|
|
12799
|
-
|
|
12800
|
-
|
|
12801
|
-
},
|
|
12802
|
-
{
|
|
12803
|
-
"type": "BLANK"
|
|
12804
|
-
}
|
|
12805
|
-
]
|
|
13791
|
+
"type": "REPEAT",
|
|
13792
|
+
"content": {
|
|
13793
|
+
"type": "SYMBOL",
|
|
13794
|
+
"name": "_on_phrase"
|
|
13795
|
+
}
|
|
12806
13796
|
},
|
|
12807
13797
|
{
|
|
12808
13798
|
"type": "SYMBOL",
|
|
@@ -12828,41 +13818,38 @@
|
|
|
12828
13818
|
]
|
|
12829
13819
|
},
|
|
12830
13820
|
"return_statement": {
|
|
12831
|
-
"type": "
|
|
12832
|
-
"
|
|
12833
|
-
|
|
12834
|
-
|
|
12835
|
-
|
|
12836
|
-
|
|
13821
|
+
"type": "PREC",
|
|
13822
|
+
"value": 1,
|
|
13823
|
+
"content": {
|
|
13824
|
+
"type": "SEQ",
|
|
13825
|
+
"members": [
|
|
13826
|
+
{
|
|
13827
|
+
"type": "ALIAS",
|
|
12837
13828
|
"content": {
|
|
12838
|
-
"type": "PREC",
|
|
12839
|
-
"value": 1,
|
|
12840
|
-
"content": {
|
|
12841
|
-
"type": "PATTERN",
|
|
12842
|
-
"value": "[rR][eE][tT][uU][rR][nN]"
|
|
12843
|
-
}
|
|
12844
|
-
}
|
|
12845
|
-
},
|
|
12846
|
-
"named": false,
|
|
12847
|
-
"value": "RETURN"
|
|
12848
|
-
},
|
|
12849
|
-
{
|
|
12850
|
-
"type": "CHOICE",
|
|
12851
|
-
"members": [
|
|
12852
|
-
{
|
|
12853
13829
|
"type": "SYMBOL",
|
|
12854
|
-
"name": "
|
|
13830
|
+
"name": "_return_keyword"
|
|
12855
13831
|
},
|
|
12856
|
-
|
|
12857
|
-
|
|
12858
|
-
|
|
12859
|
-
|
|
12860
|
-
|
|
12861
|
-
|
|
12862
|
-
|
|
12863
|
-
|
|
12864
|
-
|
|
12865
|
-
|
|
13832
|
+
"named": false,
|
|
13833
|
+
"value": "RETURN"
|
|
13834
|
+
},
|
|
13835
|
+
{
|
|
13836
|
+
"type": "CHOICE",
|
|
13837
|
+
"members": [
|
|
13838
|
+
{
|
|
13839
|
+
"type": "SYMBOL",
|
|
13840
|
+
"name": "_return_action"
|
|
13841
|
+
},
|
|
13842
|
+
{
|
|
13843
|
+
"type": "BLANK"
|
|
13844
|
+
}
|
|
13845
|
+
]
|
|
13846
|
+
},
|
|
13847
|
+
{
|
|
13848
|
+
"type": "SYMBOL",
|
|
13849
|
+
"name": "_terminator"
|
|
13850
|
+
}
|
|
13851
|
+
]
|
|
13852
|
+
}
|
|
12866
13853
|
},
|
|
12867
13854
|
"input_output_statement": {
|
|
12868
13855
|
"type": "SEQ",
|
|
@@ -12956,14 +13943,14 @@
|
|
|
12956
13943
|
"type": "REPEAT",
|
|
12957
13944
|
"content": {
|
|
12958
13945
|
"type": "SYMBOL",
|
|
12959
|
-
"name": "
|
|
13946
|
+
"name": "stream_flag"
|
|
12960
13947
|
}
|
|
12961
13948
|
},
|
|
12962
13949
|
{
|
|
12963
13950
|
"type": "REPEAT",
|
|
12964
13951
|
"content": {
|
|
12965
13952
|
"type": "SYMBOL",
|
|
12966
|
-
"name": "
|
|
13953
|
+
"name": "stream_tuning"
|
|
12967
13954
|
}
|
|
12968
13955
|
},
|
|
12969
13956
|
{
|
|
@@ -13010,49 +13997,186 @@
|
|
|
13010
13997
|
"type": "CHOICE",
|
|
13011
13998
|
"members": [
|
|
13012
13999
|
{
|
|
13013
|
-
"type": "ALIAS",
|
|
13014
|
-
"content": {
|
|
13015
|
-
"type": "TOKEN",
|
|
13016
|
-
"content": {
|
|
13017
|
-
"type": "PREC",
|
|
13018
|
-
"value": 1,
|
|
13019
|
-
"content": {
|
|
13020
|
-
"type": "PATTERN",
|
|
13021
|
-
"value": "[fF][rR][oO][mM]"
|
|
13022
|
-
}
|
|
13023
|
-
}
|
|
13024
|
-
},
|
|
13025
|
-
"named": false,
|
|
13026
|
-
"value": "FROM"
|
|
14000
|
+
"type": "ALIAS",
|
|
14001
|
+
"content": {
|
|
14002
|
+
"type": "TOKEN",
|
|
14003
|
+
"content": {
|
|
14004
|
+
"type": "PREC",
|
|
14005
|
+
"value": 1,
|
|
14006
|
+
"content": {
|
|
14007
|
+
"type": "PATTERN",
|
|
14008
|
+
"value": "[fF][rR][oO][mM]"
|
|
14009
|
+
}
|
|
14010
|
+
}
|
|
14011
|
+
},
|
|
14012
|
+
"named": false,
|
|
14013
|
+
"value": "FROM"
|
|
14014
|
+
},
|
|
14015
|
+
{
|
|
14016
|
+
"type": "ALIAS",
|
|
14017
|
+
"content": {
|
|
14018
|
+
"type": "TOKEN",
|
|
14019
|
+
"content": {
|
|
14020
|
+
"type": "PREC",
|
|
14021
|
+
"value": 1,
|
|
14022
|
+
"content": {
|
|
14023
|
+
"type": "PATTERN",
|
|
14024
|
+
"value": "[tT][oO]"
|
|
14025
|
+
}
|
|
14026
|
+
}
|
|
14027
|
+
},
|
|
14028
|
+
"named": false,
|
|
14029
|
+
"value": "TO"
|
|
14030
|
+
}
|
|
14031
|
+
]
|
|
14032
|
+
},
|
|
14033
|
+
{
|
|
14034
|
+
"type": "CHOICE",
|
|
14035
|
+
"members": [
|
|
14036
|
+
{
|
|
14037
|
+
"type": "SYMBOL",
|
|
14038
|
+
"name": "string_literal"
|
|
14039
|
+
},
|
|
14040
|
+
{
|
|
14041
|
+
"type": "SYMBOL",
|
|
14042
|
+
"name": "function_call"
|
|
14043
|
+
}
|
|
14044
|
+
]
|
|
14045
|
+
}
|
|
14046
|
+
]
|
|
14047
|
+
},
|
|
14048
|
+
{
|
|
14049
|
+
"type": "SEQ",
|
|
14050
|
+
"members": [
|
|
14051
|
+
{
|
|
14052
|
+
"type": "ALIAS",
|
|
14053
|
+
"content": {
|
|
14054
|
+
"type": "TOKEN",
|
|
14055
|
+
"content": {
|
|
14056
|
+
"type": "PREC",
|
|
14057
|
+
"value": 1,
|
|
14058
|
+
"content": {
|
|
14059
|
+
"type": "PATTERN",
|
|
14060
|
+
"value": "[tT][hH][rR][oO][uU][gG][hH]"
|
|
14061
|
+
}
|
|
14062
|
+
}
|
|
14063
|
+
},
|
|
14064
|
+
"named": false,
|
|
14065
|
+
"value": "THROUGH"
|
|
14066
|
+
},
|
|
14067
|
+
{
|
|
14068
|
+
"type": "CHOICE",
|
|
14069
|
+
"members": [
|
|
14070
|
+
{
|
|
14071
|
+
"type": "SYMBOL",
|
|
14072
|
+
"name": "identifier"
|
|
13027
14073
|
},
|
|
13028
14074
|
{
|
|
13029
|
-
"type": "
|
|
13030
|
-
"
|
|
13031
|
-
|
|
13032
|
-
|
|
13033
|
-
"type": "PREC",
|
|
13034
|
-
"value": 1,
|
|
14075
|
+
"type": "SEQ",
|
|
14076
|
+
"members": [
|
|
14077
|
+
{
|
|
14078
|
+
"type": "ALIAS",
|
|
13035
14079
|
"content": {
|
|
13036
|
-
"type": "
|
|
13037
|
-
"
|
|
13038
|
-
|
|
14080
|
+
"type": "TOKEN",
|
|
14081
|
+
"content": {
|
|
14082
|
+
"type": "PREC",
|
|
14083
|
+
"value": 1,
|
|
14084
|
+
"content": {
|
|
14085
|
+
"type": "PATTERN",
|
|
14086
|
+
"value": "[vV][aA][lL][uU][eE]"
|
|
14087
|
+
}
|
|
14088
|
+
}
|
|
14089
|
+
},
|
|
14090
|
+
"named": false,
|
|
14091
|
+
"value": "VALUE"
|
|
14092
|
+
},
|
|
14093
|
+
{
|
|
14094
|
+
"type": "STRING",
|
|
14095
|
+
"value": "("
|
|
14096
|
+
},
|
|
14097
|
+
{
|
|
14098
|
+
"type": "SYMBOL",
|
|
14099
|
+
"name": "_expression"
|
|
14100
|
+
},
|
|
14101
|
+
{
|
|
14102
|
+
"type": "STRING",
|
|
14103
|
+
"value": ")"
|
|
13039
14104
|
}
|
|
13040
|
-
|
|
13041
|
-
"named": false,
|
|
13042
|
-
"value": "TO"
|
|
14105
|
+
]
|
|
13043
14106
|
}
|
|
13044
14107
|
]
|
|
13045
14108
|
},
|
|
14109
|
+
{
|
|
14110
|
+
"type": "REPEAT",
|
|
14111
|
+
"content": {
|
|
14112
|
+
"type": "CHOICE",
|
|
14113
|
+
"members": [
|
|
14114
|
+
{
|
|
14115
|
+
"type": "SYMBOL",
|
|
14116
|
+
"name": "identifier"
|
|
14117
|
+
},
|
|
14118
|
+
{
|
|
14119
|
+
"type": "SYMBOL",
|
|
14120
|
+
"name": "string_literal"
|
|
14121
|
+
},
|
|
14122
|
+
{
|
|
14123
|
+
"type": "SYMBOL",
|
|
14124
|
+
"name": "number_literal"
|
|
14125
|
+
},
|
|
14126
|
+
{
|
|
14127
|
+
"type": "SEQ",
|
|
14128
|
+
"members": [
|
|
14129
|
+
{
|
|
14130
|
+
"type": "ALIAS",
|
|
14131
|
+
"content": {
|
|
14132
|
+
"type": "TOKEN",
|
|
14133
|
+
"content": {
|
|
14134
|
+
"type": "PREC",
|
|
14135
|
+
"value": 1,
|
|
14136
|
+
"content": {
|
|
14137
|
+
"type": "PATTERN",
|
|
14138
|
+
"value": "[vV][aA][lL][uU][eE]"
|
|
14139
|
+
}
|
|
14140
|
+
}
|
|
14141
|
+
},
|
|
14142
|
+
"named": false,
|
|
14143
|
+
"value": "VALUE"
|
|
14144
|
+
},
|
|
14145
|
+
{
|
|
14146
|
+
"type": "STRING",
|
|
14147
|
+
"value": "("
|
|
14148
|
+
},
|
|
14149
|
+
{
|
|
14150
|
+
"type": "SYMBOL",
|
|
14151
|
+
"name": "_expression"
|
|
14152
|
+
},
|
|
14153
|
+
{
|
|
14154
|
+
"type": "STRING",
|
|
14155
|
+
"value": ")"
|
|
14156
|
+
}
|
|
14157
|
+
]
|
|
14158
|
+
}
|
|
14159
|
+
]
|
|
14160
|
+
}
|
|
14161
|
+
},
|
|
13046
14162
|
{
|
|
13047
14163
|
"type": "CHOICE",
|
|
13048
14164
|
"members": [
|
|
13049
14165
|
{
|
|
13050
|
-
"type": "
|
|
13051
|
-
"
|
|
14166
|
+
"type": "SEQ",
|
|
14167
|
+
"members": [
|
|
14168
|
+
{
|
|
14169
|
+
"type": "STRING",
|
|
14170
|
+
"value": ">"
|
|
14171
|
+
},
|
|
14172
|
+
{
|
|
14173
|
+
"type": "SYMBOL",
|
|
14174
|
+
"name": "identifier"
|
|
14175
|
+
}
|
|
14176
|
+
]
|
|
13052
14177
|
},
|
|
13053
14178
|
{
|
|
13054
|
-
"type": "
|
|
13055
|
-
"name": "function_call"
|
|
14179
|
+
"type": "BLANK"
|
|
13056
14180
|
}
|
|
13057
14181
|
]
|
|
13058
14182
|
}
|
|
@@ -13121,6 +14245,10 @@
|
|
|
13121
14245
|
{
|
|
13122
14246
|
"type": "SYMBOL",
|
|
13123
14247
|
"name": "frame_phrase"
|
|
14248
|
+
},
|
|
14249
|
+
{
|
|
14250
|
+
"type": "SYMBOL",
|
|
14251
|
+
"name": "while_phrase"
|
|
13124
14252
|
}
|
|
13125
14253
|
]
|
|
13126
14254
|
}
|
|
@@ -13937,10 +15065,26 @@
|
|
|
13937
15065
|
{
|
|
13938
15066
|
"type": "SYMBOL",
|
|
13939
15067
|
"name": "file_name"
|
|
15068
|
+
},
|
|
15069
|
+
{
|
|
15070
|
+
"type": "SYMBOL",
|
|
15071
|
+
"name": "string_literal"
|
|
13940
15072
|
}
|
|
13941
15073
|
]
|
|
13942
15074
|
}
|
|
13943
15075
|
},
|
|
15076
|
+
{
|
|
15077
|
+
"type": "CHOICE",
|
|
15078
|
+
"members": [
|
|
15079
|
+
{
|
|
15080
|
+
"type": "SYMBOL",
|
|
15081
|
+
"name": "function_call_argument"
|
|
15082
|
+
},
|
|
15083
|
+
{
|
|
15084
|
+
"type": "BLANK"
|
|
15085
|
+
}
|
|
15086
|
+
]
|
|
15087
|
+
},
|
|
13944
15088
|
{
|
|
13945
15089
|
"type": "REPEAT",
|
|
13946
15090
|
"content": {
|
|
@@ -14100,16 +15244,11 @@
|
|
|
14100
15244
|
}
|
|
14101
15245
|
},
|
|
14102
15246
|
{
|
|
14103
|
-
"type": "
|
|
14104
|
-
"
|
|
14105
|
-
|
|
14106
|
-
|
|
14107
|
-
|
|
14108
|
-
},
|
|
14109
|
-
{
|
|
14110
|
-
"type": "BLANK"
|
|
14111
|
-
}
|
|
14112
|
-
]
|
|
15247
|
+
"type": "REPEAT",
|
|
15248
|
+
"content": {
|
|
15249
|
+
"type": "SYMBOL",
|
|
15250
|
+
"name": "_on_phrase"
|
|
15251
|
+
}
|
|
14113
15252
|
},
|
|
14114
15253
|
{
|
|
14115
15254
|
"type": "CHOICE",
|
|
@@ -15334,6 +16473,103 @@
|
|
|
15334
16473
|
}
|
|
15335
16474
|
]
|
|
15336
16475
|
},
|
|
16476
|
+
"_message_statement_expression": {
|
|
16477
|
+
"type": "CHOICE",
|
|
16478
|
+
"members": [
|
|
16479
|
+
{
|
|
16480
|
+
"type": "SYMBOL",
|
|
16481
|
+
"name": "unary_expression"
|
|
16482
|
+
},
|
|
16483
|
+
{
|
|
16484
|
+
"type": "SYMBOL",
|
|
16485
|
+
"name": "null_expression"
|
|
16486
|
+
},
|
|
16487
|
+
{
|
|
16488
|
+
"type": "SYMBOL",
|
|
16489
|
+
"name": "ternary_expression"
|
|
16490
|
+
},
|
|
16491
|
+
{
|
|
16492
|
+
"type": "SYMBOL",
|
|
16493
|
+
"name": "available_expression"
|
|
16494
|
+
},
|
|
16495
|
+
{
|
|
16496
|
+
"type": "SYMBOL",
|
|
16497
|
+
"name": "accumulate_expression"
|
|
16498
|
+
},
|
|
16499
|
+
{
|
|
16500
|
+
"type": "SYMBOL",
|
|
16501
|
+
"name": "parenthesized_expression"
|
|
16502
|
+
},
|
|
16503
|
+
{
|
|
16504
|
+
"type": "SYMBOL",
|
|
16505
|
+
"name": "ambiguous_expression"
|
|
16506
|
+
},
|
|
16507
|
+
{
|
|
16508
|
+
"type": "SYMBOL",
|
|
16509
|
+
"name": "current_changed_expression"
|
|
16510
|
+
},
|
|
16511
|
+
{
|
|
16512
|
+
"type": "SYMBOL",
|
|
16513
|
+
"name": "locked_expression"
|
|
16514
|
+
},
|
|
16515
|
+
{
|
|
16516
|
+
"type": "SYMBOL",
|
|
16517
|
+
"name": "can_find_expression"
|
|
16518
|
+
},
|
|
16519
|
+
{
|
|
16520
|
+
"type": "SYMBOL",
|
|
16521
|
+
"name": "additive_expression"
|
|
16522
|
+
},
|
|
16523
|
+
{
|
|
16524
|
+
"type": "SYMBOL",
|
|
16525
|
+
"name": "multiplicative_expression"
|
|
16526
|
+
},
|
|
16527
|
+
{
|
|
16528
|
+
"type": "SYMBOL",
|
|
16529
|
+
"name": "boolean_literal"
|
|
16530
|
+
},
|
|
16531
|
+
{
|
|
16532
|
+
"type": "SYMBOL",
|
|
16533
|
+
"name": "string_literal"
|
|
16534
|
+
},
|
|
16535
|
+
{
|
|
16536
|
+
"type": "SYMBOL",
|
|
16537
|
+
"name": "date_literal"
|
|
16538
|
+
},
|
|
16539
|
+
{
|
|
16540
|
+
"type": "SYMBOL",
|
|
16541
|
+
"name": "number_literal"
|
|
16542
|
+
},
|
|
16543
|
+
{
|
|
16544
|
+
"type": "SYMBOL",
|
|
16545
|
+
"name": "array_literal"
|
|
16546
|
+
},
|
|
16547
|
+
{
|
|
16548
|
+
"type": "SYMBOL",
|
|
16549
|
+
"name": "object_access"
|
|
16550
|
+
},
|
|
16551
|
+
{
|
|
16552
|
+
"type": "SYMBOL",
|
|
16553
|
+
"name": "member_access"
|
|
16554
|
+
},
|
|
16555
|
+
{
|
|
16556
|
+
"type": "SYMBOL",
|
|
16557
|
+
"name": "array_access"
|
|
16558
|
+
},
|
|
16559
|
+
{
|
|
16560
|
+
"type": "SYMBOL",
|
|
16561
|
+
"name": "function_call"
|
|
16562
|
+
},
|
|
16563
|
+
{
|
|
16564
|
+
"type": "SYMBOL",
|
|
16565
|
+
"name": "_name"
|
|
16566
|
+
},
|
|
16567
|
+
{
|
|
16568
|
+
"type": "SYMBOL",
|
|
16569
|
+
"name": "constant"
|
|
16570
|
+
}
|
|
16571
|
+
]
|
|
16572
|
+
},
|
|
15337
16573
|
"_expression": {
|
|
15338
16574
|
"type": "CHOICE",
|
|
15339
16575
|
"members": [
|
|
@@ -15454,6 +16690,10 @@
|
|
|
15454
16690
|
"type": "SYMBOL",
|
|
15455
16691
|
"name": "var_statement"
|
|
15456
16692
|
},
|
|
16693
|
+
{
|
|
16694
|
+
"type": "SYMBOL",
|
|
16695
|
+
"name": "message_statement"
|
|
16696
|
+
},
|
|
15457
16697
|
{
|
|
15458
16698
|
"type": "SYMBOL",
|
|
15459
16699
|
"name": "null_statement"
|
|
@@ -15613,6 +16853,10 @@
|
|
|
15613
16853
|
"in_frame_phrase",
|
|
15614
16854
|
"_expression"
|
|
15615
16855
|
],
|
|
16856
|
+
[
|
|
16857
|
+
"in_frame_phrase",
|
|
16858
|
+
"_message_statement_expression"
|
|
16859
|
+
],
|
|
15616
16860
|
[
|
|
15617
16861
|
"include",
|
|
15618
16862
|
"constant"
|
|
@@ -15694,6 +16938,10 @@
|
|
|
15694
16938
|
{
|
|
15695
16939
|
"type": "SYMBOL",
|
|
15696
16940
|
"name": "_field_keyword"
|
|
16941
|
+
},
|
|
16942
|
+
{
|
|
16943
|
+
"type": "SYMBOL",
|
|
16944
|
+
"name": "_return_keyword"
|
|
15697
16945
|
}
|
|
15698
16946
|
],
|
|
15699
16947
|
"inline": [],
|