abl-tmlanguage 1.3.29 → 1.4.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 +12 -14
- package/abl.tmLanguage.json +183 -203
- package/package.json +1 -1
package/abl.tmLanguage.json
CHANGED
|
@@ -245,13 +245,13 @@
|
|
|
245
245
|
"name": "entity.name.function.abl"
|
|
246
246
|
},
|
|
247
247
|
"2": {
|
|
248
|
-
"name": "meta.brace.round.
|
|
248
|
+
"name": "meta.brace.round.abl"
|
|
249
249
|
}
|
|
250
250
|
},
|
|
251
251
|
"end": "(\\))",
|
|
252
252
|
"endCaptures": {
|
|
253
253
|
"1": {
|
|
254
|
-
"name": "meta.brace.round.
|
|
254
|
+
"name": "meta.brace.round.abl"
|
|
255
255
|
}
|
|
256
256
|
},
|
|
257
257
|
"patterns": [
|
|
@@ -424,10 +424,7 @@
|
|
|
424
424
|
"include": "#keywords"
|
|
425
425
|
},
|
|
426
426
|
{
|
|
427
|
-
"include": "#handle-attributes"
|
|
428
|
-
},
|
|
429
|
-
{
|
|
430
|
-
"include": "#handle-methods"
|
|
427
|
+
"include": "#handle-attributes-and-methods"
|
|
431
428
|
},
|
|
432
429
|
{
|
|
433
430
|
"include": "#type-names"
|
|
@@ -445,17 +442,16 @@
|
|
|
445
442
|
},
|
|
446
443
|
"function-parameter-definition": {
|
|
447
444
|
"comment": "https://docs.progress.com/bundle/abl-reference/page/Parameter-definition-syntax.html",
|
|
448
|
-
"name": "meta.function.parameters",
|
|
449
445
|
"begin": "(\\()",
|
|
450
446
|
"beginCaptures": {
|
|
451
447
|
"1": {
|
|
452
|
-
"name": "meta.brace.round.
|
|
448
|
+
"name": "meta.brace.round.abl"
|
|
453
449
|
}
|
|
454
450
|
},
|
|
455
451
|
"end": "(\\))",
|
|
456
452
|
"endCaptures": {
|
|
457
453
|
"1": {
|
|
458
|
-
"name": "meta.brace.round.
|
|
454
|
+
"name": "meta.brace.round.abl"
|
|
459
455
|
}
|
|
460
456
|
},
|
|
461
457
|
"patterns": [
|
|
@@ -576,13 +572,10 @@
|
|
|
576
572
|
"include": "#event-un-subscribe"
|
|
577
573
|
},
|
|
578
574
|
{
|
|
579
|
-
"include": "#
|
|
580
|
-
},
|
|
581
|
-
{
|
|
582
|
-
"include": "#handle-attributes"
|
|
575
|
+
"include": "#handle-attributes-and-methods"
|
|
583
576
|
},
|
|
584
577
|
{
|
|
585
|
-
"include": "#
|
|
578
|
+
"include": "#property-call"
|
|
586
579
|
},
|
|
587
580
|
{
|
|
588
581
|
"include": "#get-query"
|
|
@@ -1105,7 +1098,7 @@
|
|
|
1105
1098
|
}
|
|
1106
1099
|
]
|
|
1107
1100
|
},
|
|
1108
|
-
"get-query"
|
|
1101
|
+
"get-query": {
|
|
1109
1102
|
"begin": "(?i)\\b(get)\\s+(first|next|prev|last|current)\\b",
|
|
1110
1103
|
"beginCaptures": {
|
|
1111
1104
|
"1": {
|
|
@@ -1136,7 +1129,7 @@
|
|
|
1136
1129
|
},
|
|
1137
1130
|
"parens": {
|
|
1138
1131
|
"match": "\\(|\\)",
|
|
1139
|
-
"name": "meta.brace.round.
|
|
1132
|
+
"name": "meta.brace.round.abl"
|
|
1140
1133
|
},
|
|
1141
1134
|
"new-class": {
|
|
1142
1135
|
"comment": "A dash/minus is not a word boundary, so we need to make sure we don't capture constructs like new-variable",
|
|
@@ -1167,7 +1160,7 @@
|
|
|
1167
1160
|
"end": "(\\))",
|
|
1168
1161
|
"endCaptures": {
|
|
1169
1162
|
"1": {
|
|
1170
|
-
"name": "meta.brace.round.
|
|
1163
|
+
"name": "meta.brace.round.abl"
|
|
1171
1164
|
}
|
|
1172
1165
|
},
|
|
1173
1166
|
"patterns": [
|
|
@@ -1190,13 +1183,13 @@
|
|
|
1190
1183
|
"name": "support.function.abl"
|
|
1191
1184
|
},
|
|
1192
1185
|
"2": {
|
|
1193
|
-
"name": "meta.brace.round.
|
|
1186
|
+
"name": "meta.brace.round.abl"
|
|
1194
1187
|
}
|
|
1195
1188
|
},
|
|
1196
1189
|
"end": "(\\))",
|
|
1197
1190
|
"endCaptures": {
|
|
1198
1191
|
"1": {
|
|
1199
|
-
"name": "meta.brace.round.
|
|
1192
|
+
"name": "meta.brace.round.abl"
|
|
1200
1193
|
}
|
|
1201
1194
|
},
|
|
1202
1195
|
"patterns": [
|
|
@@ -1225,14 +1218,6 @@
|
|
|
1225
1218
|
"field-name": {
|
|
1226
1219
|
"comment": "Just a field name",
|
|
1227
1220
|
"patterns": [
|
|
1228
|
-
{
|
|
1229
|
-
"match": "\\s*([a-zA-Z][a-zA-Z0-9_\\-#$%]*(\\.[a-zA-Z][a-zA-Z0-9_\\-#$%]*)?\\s*(\\[\\d+\\]))\\s*",
|
|
1230
|
-
"captures": {
|
|
1231
|
-
"1": {
|
|
1232
|
-
"name": "storage.data.table.abl"
|
|
1233
|
-
}
|
|
1234
|
-
}
|
|
1235
|
-
},
|
|
1236
1221
|
{
|
|
1237
1222
|
"match": "\\s*([a-zA-Z][a-zA-Z0-9_\\-#$%]*(\\.[a-zA-Z][a-zA-Z0-9_\\-#$%]*)?)\\s*",
|
|
1238
1223
|
"captures": {
|
|
@@ -1244,7 +1229,7 @@
|
|
|
1244
1229
|
]
|
|
1245
1230
|
},
|
|
1246
1231
|
"db-dot-table-dot-field": {
|
|
1247
|
-
"match": "(?i)(?<=^|\\s|\\(|,)(([a-zA-Z][a-zA-Z0-9#$\\-_%&]*\\.)?([a-zA-Z_][a-zA-Z0-9#$\\-_%&]*\\.)([a-zA-Z_][a-zA-Z0-9#$\\-_%&]*)
|
|
1232
|
+
"match": "(?i)(?<=^|\\s|\\(|,)(([a-zA-Z][a-zA-Z0-9#$\\-_%&]*\\.)?([a-zA-Z_][a-zA-Z0-9#$\\-_%&]*\\.)([a-zA-Z_][a-zA-Z0-9#$\\-_%&]*))",
|
|
1248
1233
|
"comment": "Looks for format of 'table.field', with an optional preceding 'db.'. This pattern may conflict with type names",
|
|
1249
1234
|
"captures": {
|
|
1250
1235
|
"1": {
|
|
@@ -1268,13 +1253,13 @@
|
|
|
1268
1253
|
"name": "keyword.other.abl"
|
|
1269
1254
|
},
|
|
1270
1255
|
"2": {
|
|
1271
|
-
"name": "meta.brace.round.
|
|
1256
|
+
"name": "meta.brace.round.abl"
|
|
1272
1257
|
},
|
|
1273
1258
|
"3": {
|
|
1274
1259
|
"name": "storage.data.table.abl"
|
|
1275
1260
|
},
|
|
1276
1261
|
"4": {
|
|
1277
|
-
"name": "meta.brace.round.
|
|
1262
|
+
"name": "meta.brace.round.abl"
|
|
1278
1263
|
}
|
|
1279
1264
|
}
|
|
1280
1265
|
},
|
|
@@ -1319,7 +1304,7 @@
|
|
|
1319
1304
|
}
|
|
1320
1305
|
},
|
|
1321
1306
|
"for-each-join": {
|
|
1322
|
-
"begin": "(?i)\\b(each|first|last)\\
|
|
1307
|
+
"begin": "(?i)\\b(each|first|last)\\s(?<!\\()",
|
|
1323
1308
|
"beginCaptures": {
|
|
1324
1309
|
"1": {
|
|
1325
1310
|
"name": "keyword.other.abl"
|
|
@@ -1406,13 +1391,13 @@
|
|
|
1406
1391
|
"name": "keyword.other.abl"
|
|
1407
1392
|
},
|
|
1408
1393
|
"2": {
|
|
1409
|
-
"name": "meta.brace.round.
|
|
1394
|
+
"name": "meta.brace.round.abl"
|
|
1410
1395
|
}
|
|
1411
1396
|
},
|
|
1412
1397
|
"end": "(\\))",
|
|
1413
1398
|
"endCaptures": {
|
|
1414
1399
|
"1": {
|
|
1415
|
-
"name": "meta.brace.round.
|
|
1400
|
+
"name": "meta.brace.round.abl"
|
|
1416
1401
|
}
|
|
1417
1402
|
},
|
|
1418
1403
|
"patterns": [
|
|
@@ -1422,6 +1407,9 @@
|
|
|
1422
1407
|
{
|
|
1423
1408
|
"include": "#field-name"
|
|
1424
1409
|
},
|
|
1410
|
+
{
|
|
1411
|
+
"include": "#array-literal"
|
|
1412
|
+
},
|
|
1425
1413
|
{
|
|
1426
1414
|
"include": "#punctuation-comma"
|
|
1427
1415
|
}
|
|
@@ -1453,7 +1441,7 @@
|
|
|
1453
1441
|
"end": "(?<=\\))",
|
|
1454
1442
|
"endCaptures": {
|
|
1455
1443
|
"1": {
|
|
1456
|
-
"name": "meta.brace.round.
|
|
1444
|
+
"name": "meta.brace.round.abl"
|
|
1457
1445
|
}
|
|
1458
1446
|
},
|
|
1459
1447
|
"patterns": [
|
|
@@ -1499,6 +1487,12 @@
|
|
|
1499
1487
|
{
|
|
1500
1488
|
"include": "#parens"
|
|
1501
1489
|
},
|
|
1490
|
+
{
|
|
1491
|
+
"include": "#array-literal"
|
|
1492
|
+
},
|
|
1493
|
+
{
|
|
1494
|
+
"include": "#type-member-call"
|
|
1495
|
+
},
|
|
1502
1496
|
{
|
|
1503
1497
|
"include": "#create-statement"
|
|
1504
1498
|
},
|
|
@@ -1563,10 +1557,7 @@
|
|
|
1563
1557
|
"include": "#abl-functions"
|
|
1564
1558
|
},
|
|
1565
1559
|
{
|
|
1566
|
-
"include": "#handle-methods"
|
|
1567
|
-
},
|
|
1568
|
-
{
|
|
1569
|
-
"include": "#handle-attributes"
|
|
1560
|
+
"include": "#handle-attributes-and-methods"
|
|
1570
1561
|
},
|
|
1571
1562
|
{
|
|
1572
1563
|
"include": "#keywords"
|
|
@@ -1620,7 +1611,7 @@
|
|
|
1620
1611
|
}
|
|
1621
1612
|
},
|
|
1622
1613
|
"property-get-set-block": {
|
|
1623
|
-
"begin": "\\s*(?<!:)\\s*([Gg][Ee][Tt]|[Ss][Ee][Tt])\\b(?![#$\\-_%&])(?=\\()",
|
|
1614
|
+
"begin": "\\s*(?<!:)\\s*([Gg][Ee][Tt]|[Ss][Ee][Tt])\\b(?![#$\\-_%&])(?=\\(|:)",
|
|
1624
1615
|
"beginCaptures": {
|
|
1625
1616
|
"1": {
|
|
1626
1617
|
"name": "keyword.other.abl"
|
|
@@ -1988,10 +1979,7 @@
|
|
|
1988
1979
|
"include": "#property-call"
|
|
1989
1980
|
},
|
|
1990
1981
|
{
|
|
1991
|
-
"include": "#handle-attributes"
|
|
1992
|
-
},
|
|
1993
|
-
{
|
|
1994
|
-
"include": "#handle-methods"
|
|
1982
|
+
"include": "#handle-attributes-and-methods"
|
|
1995
1983
|
},
|
|
1996
1984
|
{
|
|
1997
1985
|
"include": "#function-parameter-definition"
|
|
@@ -2028,7 +2016,7 @@
|
|
|
2028
2016
|
"name": "keyword.other.abl"
|
|
2029
2017
|
},
|
|
2030
2018
|
"3": {
|
|
2031
|
-
"name": "constant.numeric.
|
|
2019
|
+
"name": "constant.numeric.abl"
|
|
2032
2020
|
}
|
|
2033
2021
|
}
|
|
2034
2022
|
},
|
|
@@ -2396,7 +2384,7 @@
|
|
|
2396
2384
|
"include": "#preprocessor-reference"
|
|
2397
2385
|
},
|
|
2398
2386
|
{
|
|
2399
|
-
"include": "#handle-attributes"
|
|
2387
|
+
"include": "#handle-attributes-and-methods"
|
|
2400
2388
|
},
|
|
2401
2389
|
{
|
|
2402
2390
|
"include": "#db-dot-table-dot-field"
|
|
@@ -2406,6 +2394,16 @@
|
|
|
2406
2394
|
}
|
|
2407
2395
|
]
|
|
2408
2396
|
},
|
|
2397
|
+
"handle-attributes-and-methods": {
|
|
2398
|
+
"patterns": [
|
|
2399
|
+
{
|
|
2400
|
+
"include": "#handle-attributes"
|
|
2401
|
+
},
|
|
2402
|
+
{
|
|
2403
|
+
"include": "#handle-methods"
|
|
2404
|
+
}
|
|
2405
|
+
]
|
|
2406
|
+
},
|
|
2409
2407
|
"define-index": {
|
|
2410
2408
|
"begin": "(?i)\\s*(index)\\s+([a-zA-Z_][a-zA-Z0-9_#$\\-%&]*)",
|
|
2411
2409
|
"beginCaptures": {
|
|
@@ -2549,13 +2547,13 @@
|
|
|
2549
2547
|
"name": "keyword.other.abl"
|
|
2550
2548
|
},
|
|
2551
2549
|
"6": {
|
|
2552
|
-
"name": "constant.numeric.
|
|
2550
|
+
"name": "constant.numeric.abl"
|
|
2553
2551
|
},
|
|
2554
2552
|
"8": {
|
|
2555
2553
|
"name": "keyword.other.abl"
|
|
2556
2554
|
},
|
|
2557
2555
|
"12": {
|
|
2558
|
-
"name": "constant.numeric.
|
|
2556
|
+
"name": "constant.numeric.abl"
|
|
2559
2557
|
}
|
|
2560
2558
|
}
|
|
2561
2559
|
},
|
|
@@ -2684,7 +2682,7 @@
|
|
|
2684
2682
|
"name": "keyword.other.abl"
|
|
2685
2683
|
},
|
|
2686
2684
|
"2": {
|
|
2687
|
-
"name": "constant.language.
|
|
2685
|
+
"name": "constant.language.abl"
|
|
2688
2686
|
}
|
|
2689
2687
|
}
|
|
2690
2688
|
},
|
|
@@ -2717,14 +2715,6 @@
|
|
|
2717
2715
|
}
|
|
2718
2716
|
}
|
|
2719
2717
|
},
|
|
2720
|
-
"double-colon-field-name": {
|
|
2721
|
-
"match": "\\s*::([a-zA-Z_\\-#$%]+)\\s*",
|
|
2722
|
-
"captures": {
|
|
2723
|
-
"1": {
|
|
2724
|
-
"name": "storage.data.table.abl"
|
|
2725
|
-
}
|
|
2726
|
-
}
|
|
2727
|
-
},
|
|
2728
2718
|
"for-table": {
|
|
2729
2719
|
"match": "(?i)\\s*(for)\\s+((temp-table)\\s+)?([a-zA-Z_\\-#$%]+)\\s*",
|
|
2730
2720
|
"captures": {
|
|
@@ -2747,7 +2737,7 @@
|
|
|
2747
2737
|
"name": "support.function.abl"
|
|
2748
2738
|
},
|
|
2749
2739
|
"2": {
|
|
2750
|
-
"name": "meta.brace.round.
|
|
2740
|
+
"name": "meta.brace.round.abl"
|
|
2751
2741
|
}
|
|
2752
2742
|
},
|
|
2753
2743
|
"end": "(?i)\\b(?=\\)|where|no-lock|(share(?:-lock|-loc|-lo|-l|-)?)|using|(no-prefe(?:tch|tc|t)?)|no-wait)\\s*",
|
|
@@ -2821,10 +2811,14 @@
|
|
|
2821
2811
|
"name": "keyword.other.abl"
|
|
2822
2812
|
}
|
|
2823
2813
|
},
|
|
2824
|
-
"end": "(\\s([a-zA-Z][a-zA-Z0-9_\\-#$%]*))",
|
|
2814
|
+
"end": "(\\s([a-zA-Z][a-zA-Z0-9_\\-#$%]*)|(=))",
|
|
2815
|
+
"comment": "Capture the = in case there's a variable named 'var' which is being assigned",
|
|
2825
2816
|
"endCaptures": {
|
|
2826
2817
|
"2": {
|
|
2827
2818
|
"name": "variable.other.abl"
|
|
2819
|
+
},
|
|
2820
|
+
"3": {
|
|
2821
|
+
"name": "keyword.operator.abl"
|
|
2828
2822
|
}
|
|
2829
2823
|
},
|
|
2830
2824
|
"patterns": [
|
|
@@ -2976,7 +2970,7 @@
|
|
|
2976
2970
|
"name": "variable.other.abl"
|
|
2977
2971
|
},
|
|
2978
2972
|
"2": {
|
|
2979
|
-
"name": "keyword.operator.
|
|
2973
|
+
"name": "keyword.operator.abl"
|
|
2980
2974
|
}
|
|
2981
2975
|
},
|
|
2982
2976
|
"end": "(?i)(?=(transact(?:ion|io|i)?)|on|:|with|while)",
|
|
@@ -3010,22 +3004,22 @@
|
|
|
3010
3004
|
"begin": "(?i)((\\?:)|(:))(unsubscribe|subscribe)\\s*(\\()",
|
|
3011
3005
|
"beginCaptures": {
|
|
3012
3006
|
"2": {
|
|
3013
|
-
"name": "keyword.operator.
|
|
3007
|
+
"name": "keyword.operator.abl"
|
|
3014
3008
|
},
|
|
3015
3009
|
"3": {
|
|
3016
|
-
"name": "punctuation.
|
|
3010
|
+
"name": "punctuation.accessor.abl"
|
|
3017
3011
|
},
|
|
3018
3012
|
"4": {
|
|
3019
3013
|
"name": "entity.name.function.abl"
|
|
3020
3014
|
},
|
|
3021
3015
|
"5": {
|
|
3022
|
-
"name": "meta.brace.round.
|
|
3016
|
+
"name": "meta.brace.round.abl"
|
|
3023
3017
|
}
|
|
3024
3018
|
},
|
|
3025
3019
|
"end": "(\\))",
|
|
3026
3020
|
"endCaptures": {
|
|
3027
3021
|
"1": {
|
|
3028
|
-
"name": "meta.brace.round.
|
|
3022
|
+
"name": "meta.brace.round.abl"
|
|
3029
3023
|
}
|
|
3030
3024
|
},
|
|
3031
3025
|
"patterns": [
|
|
@@ -3037,7 +3031,7 @@
|
|
|
3037
3031
|
"name": "entity.name.type.abl"
|
|
3038
3032
|
},
|
|
3039
3033
|
"3": {
|
|
3040
|
-
"name": "punctuation.
|
|
3034
|
+
"name": "punctuation.accessor.abl"
|
|
3041
3035
|
}
|
|
3042
3036
|
}
|
|
3043
3037
|
},
|
|
@@ -3052,7 +3046,7 @@
|
|
|
3052
3046
|
"name": "punctuation.separator.comma.abl"
|
|
3053
3047
|
},
|
|
3054
3048
|
"4": {
|
|
3055
|
-
"name": "punctuation.
|
|
3049
|
+
"name": "punctuation.accessor.abl"
|
|
3056
3050
|
}
|
|
3057
3051
|
}
|
|
3058
3052
|
},
|
|
@@ -3106,7 +3100,7 @@
|
|
|
3106
3100
|
},
|
|
3107
3101
|
"for-record": {
|
|
3108
3102
|
"comment": "this regex just tries to capture a bunch (6) of tables",
|
|
3109
|
-
"match": "(?i)\\s*(for)\\s+([a-zA-Z_\\-#$%]*)\\s*(,)?\\s*([a-zA-Z_\\-#$%]*)?\\s*(,)?\\s*([a-zA-Z_\\-#$%]*)?\\s*(,)?\\s*([a-zA-Z_\\-#$%]*)?\\s*(,)?\\s*([a-zA-Z_\\-#$%]*)?\\s*(,)?\\s*([a-zA-Z_\\-#$%]*)?",
|
|
3103
|
+
"match": "(?i)\\s*(for)\\s+([a-zA-Z_\\-#$%0-9]*)\\s*(,)?\\s*([a-zA-Z_\\-#$%0-9]*)?\\s*(,)?\\s*([a-zA-Z_\\-#$%0-9]*)?\\s*(,)?\\s*([a-zA-Z_\\-#$%0-9]*)?\\s*(,)?\\s*([a-zA-Z_\\-#$%0-9]*)?\\s*(,)?\\s*([a-zA-Z_\\-#$%0-9]*)?",
|
|
3110
3104
|
"captures": {
|
|
3111
3105
|
"1": {
|
|
3112
3106
|
"name": "keyword.other.abl"
|
|
@@ -3221,35 +3215,24 @@
|
|
|
3221
3215
|
"match": "(~)\\s*$",
|
|
3222
3216
|
"captures": {
|
|
3223
3217
|
"1": {
|
|
3224
|
-
"name": "punctuation.separator.continuation"
|
|
3218
|
+
"name": "punctuation.separator.continuation.abl"
|
|
3225
3219
|
}
|
|
3226
3220
|
}
|
|
3227
3221
|
},
|
|
3228
3222
|
"branch-return-value-double": {
|
|
3229
3223
|
"comment": "RETURN \"return-value\"",
|
|
3230
|
-
"
|
|
3231
|
-
"
|
|
3224
|
+
"match": "(?i)\\s*(return)(\\s+(error))?\\s+(?=\")",
|
|
3225
|
+
"captures": {
|
|
3232
3226
|
"1": {
|
|
3233
3227
|
"name": "keyword.other.abl"
|
|
3234
3228
|
},
|
|
3235
|
-
"
|
|
3229
|
+
"3": {
|
|
3236
3230
|
"name": "keyword.other.abl"
|
|
3237
3231
|
},
|
|
3238
|
-
"
|
|
3232
|
+
"4": {
|
|
3239
3233
|
"name": "punctuation.definition.string.begin.abl"
|
|
3240
3234
|
}
|
|
3241
|
-
}
|
|
3242
|
-
"end": "(\")",
|
|
3243
|
-
"endCaptures": {
|
|
3244
|
-
"1": {
|
|
3245
|
-
"name": "punctuation.definition.string.end.abl"
|
|
3246
|
-
}
|
|
3247
|
-
},
|
|
3248
|
-
"patterns": [
|
|
3249
|
-
{
|
|
3250
|
-
"include": "#escape-char"
|
|
3251
|
-
}
|
|
3252
|
-
]
|
|
3235
|
+
}
|
|
3253
3236
|
},
|
|
3254
3237
|
"branch-return-no-apply": {
|
|
3255
3238
|
"comment": "RETURN NO-APPLY",
|
|
@@ -3511,7 +3494,7 @@
|
|
|
3511
3494
|
"end": "(\\))",
|
|
3512
3495
|
"endCaptures": {
|
|
3513
3496
|
"1": {
|
|
3514
|
-
"name": "meta.brace.round.
|
|
3497
|
+
"name": "meta.brace.round.abl"
|
|
3515
3498
|
}
|
|
3516
3499
|
}
|
|
3517
3500
|
},
|
|
@@ -3590,18 +3573,17 @@
|
|
|
3590
3573
|
]
|
|
3591
3574
|
},
|
|
3592
3575
|
"function-arguments": {
|
|
3593
|
-
"name": "meta.function.arguments.abl",
|
|
3594
3576
|
"comment": "Captures what's between ( and ) when calling a function, excluding the braces ",
|
|
3595
3577
|
"begin": "(?=\\()",
|
|
3596
3578
|
"beginCaptures": {
|
|
3597
3579
|
"1": {
|
|
3598
|
-
"name": "meta.brace.round.
|
|
3580
|
+
"name": "meta.brace.round.abl"
|
|
3599
3581
|
}
|
|
3600
3582
|
},
|
|
3601
3583
|
"end": "(?=\\))",
|
|
3602
3584
|
"endCaptures": {
|
|
3603
3585
|
"1": {
|
|
3604
|
-
"name": "meta.brace.round.
|
|
3586
|
+
"name": "meta.brace.round.abl"
|
|
3605
3587
|
}
|
|
3606
3588
|
},
|
|
3607
3589
|
"patterns": [
|
|
@@ -3614,7 +3596,6 @@
|
|
|
3614
3596
|
]
|
|
3615
3597
|
},
|
|
3616
3598
|
"function-arguments-no-parens": {
|
|
3617
|
-
"name": "meta.function.arguments.abl",
|
|
3618
3599
|
"patterns": [
|
|
3619
3600
|
{
|
|
3620
3601
|
"match": "(?i)\\s*((input-o(?:utput|utpu|utp|u)?)|output|input|table-handle|dataset-handle|append|by-value|by-reference|bind)\\b(?![#$\\-_%&])",
|
|
@@ -3705,14 +3686,14 @@
|
|
|
3705
3686
|
}
|
|
3706
3687
|
]
|
|
3707
3688
|
},
|
|
3708
|
-
"dynamic-buffer-field-access"
|
|
3689
|
+
"dynamic-buffer-field-access": {
|
|
3709
3690
|
"match": "(::)([a-zA-Z_][a-zA-Z0-9#$\\-_%&]*)",
|
|
3710
3691
|
"captures": {
|
|
3711
3692
|
"1": {
|
|
3712
3693
|
"name": "punctuation.accessor.abl"
|
|
3713
3694
|
},
|
|
3714
3695
|
"2": {
|
|
3715
|
-
"name":"storage.data.table.abl"
|
|
3696
|
+
"name": "storage.data.table.abl"
|
|
3716
3697
|
}
|
|
3717
3698
|
}
|
|
3718
3699
|
},
|
|
@@ -3724,7 +3705,7 @@
|
|
|
3724
3705
|
"name": "entity.name.type.abl"
|
|
3725
3706
|
},
|
|
3726
3707
|
"4": {
|
|
3727
|
-
"name": "punctuation.
|
|
3708
|
+
"name": "punctuation.accessor.abl"
|
|
3728
3709
|
},
|
|
3729
3710
|
"7": {
|
|
3730
3711
|
"name": "entity.name.function.abl"
|
|
@@ -3743,10 +3724,10 @@
|
|
|
3743
3724
|
"match": "((\\?:)|(:))([a-zA-Z_][a-zA-Z0-9_#$\\-%&]*)\\b",
|
|
3744
3725
|
"captures": {
|
|
3745
3726
|
"2": {
|
|
3746
|
-
"name": "keyword.operator.
|
|
3727
|
+
"name": "keyword.operator.abl"
|
|
3747
3728
|
},
|
|
3748
3729
|
"3": {
|
|
3749
|
-
"name": "punctuation.
|
|
3730
|
+
"name": "punctuation.accessor.abl"
|
|
3750
3731
|
},
|
|
3751
3732
|
"4": {
|
|
3752
3733
|
"name": "entity.name.function.abl"
|
|
@@ -3778,7 +3759,7 @@
|
|
|
3778
3759
|
"name": "keyword.other.abl"
|
|
3779
3760
|
},
|
|
3780
3761
|
"2": {
|
|
3781
|
-
"name": "constant.numeric.
|
|
3762
|
+
"name": "constant.numeric.abl"
|
|
3782
3763
|
}
|
|
3783
3764
|
}
|
|
3784
3765
|
},
|
|
@@ -3789,7 +3770,7 @@
|
|
|
3789
3770
|
"name": "keyword.other.abl"
|
|
3790
3771
|
},
|
|
3791
3772
|
"2": {
|
|
3792
|
-
"name": "constant.numeric.
|
|
3773
|
+
"name": "constant.numeric.abl"
|
|
3793
3774
|
}
|
|
3794
3775
|
}
|
|
3795
3776
|
},
|
|
@@ -3800,7 +3781,7 @@
|
|
|
3800
3781
|
"name": "keyword.other.abl"
|
|
3801
3782
|
},
|
|
3802
3783
|
"2": {
|
|
3803
|
-
"name": "constant.numeric.
|
|
3784
|
+
"name": "constant.numeric.abl"
|
|
3804
3785
|
}
|
|
3805
3786
|
}
|
|
3806
3787
|
},
|
|
@@ -3883,7 +3864,7 @@
|
|
|
3883
3864
|
"include": "#variable-name"
|
|
3884
3865
|
},
|
|
3885
3866
|
{
|
|
3886
|
-
"include": "#
|
|
3867
|
+
"include": "#dynamic-buffer-field-access"
|
|
3887
3868
|
}
|
|
3888
3869
|
]
|
|
3889
3870
|
},
|
|
@@ -3992,7 +3973,7 @@
|
|
|
3992
3973
|
"name": "support.other.argument.abl"
|
|
3993
3974
|
},
|
|
3994
3975
|
"2": {
|
|
3995
|
-
"name": "keyword.operator.
|
|
3976
|
+
"name": "keyword.operator.abl"
|
|
3996
3977
|
}
|
|
3997
3978
|
}
|
|
3998
3979
|
},
|
|
@@ -4059,18 +4040,17 @@
|
|
|
4059
4040
|
},
|
|
4060
4041
|
"singlelinecomment": {
|
|
4061
4042
|
"match": "//.*$",
|
|
4062
|
-
"comment": "Was comment.source.abl but should be changed, per https://macromates.com/manual/en/language_grammars",
|
|
4063
4043
|
"name": "comment.line.double-slash.abl"
|
|
4064
4044
|
},
|
|
4065
4045
|
"multilinecomment": {
|
|
4066
4046
|
"begin": "/\\*",
|
|
4067
4047
|
"end": "\\*/",
|
|
4068
4048
|
"contentName": "comment",
|
|
4069
|
-
"name": "comment.block.
|
|
4049
|
+
"name": "comment.block.abl",
|
|
4070
4050
|
"patterns": [
|
|
4071
4051
|
{
|
|
4072
4052
|
"include": "#multilinecomment",
|
|
4073
|
-
"name": "comment.block.
|
|
4053
|
+
"name": "comment.block.abl"
|
|
4074
4054
|
}
|
|
4075
4055
|
]
|
|
4076
4056
|
},
|
|
@@ -4153,7 +4133,7 @@
|
|
|
4153
4133
|
},
|
|
4154
4134
|
"numeric": {
|
|
4155
4135
|
"match": "(?<![a-zA-Z0-9_\\-#$%-])(0[xX]\\h+)|([+\\-]?\\.?(0|[1-9][0-9]*)(\\.[0-9]+)?([eE][+\\-]?[0-9]+)?)",
|
|
4156
|
-
"name": "constant.numeric.
|
|
4136
|
+
"name": "constant.numeric.abl"
|
|
4157
4137
|
},
|
|
4158
4138
|
"abl-system-handles": {
|
|
4159
4139
|
"match": "(?i)\\b(active-window|audit-control|audit-policy|clipboard|codebase-locator|color-table|com-self|compiler|current-window|debugger|default-window|dslog-manager|(error-stat(?:us|u)?)|(file-info(?:rmation|rmatio|rmati|rmat|rma|rm|r)?)|focus|font-table|last-event|log-manager|profiler|(rcode-info(?:rmation|rmatio|rmati|rmat|rma|rm|r)?)|sax-attributes|sax-reader|sax-writer|security-policy|self|session|source-procedure|super|target-procedure|this-object|this-procedure|transaction|web-context)\\b(?![#$\\-_%&\\(])",
|
|
@@ -4162,7 +4142,7 @@
|
|
|
4162
4142
|
"name": "variable.language.abl"
|
|
4163
4143
|
},
|
|
4164
4144
|
"2": {
|
|
4165
|
-
"name": "punctuation.
|
|
4145
|
+
"name": "punctuation.accessor.abl"
|
|
4166
4146
|
}
|
|
4167
4147
|
}
|
|
4168
4148
|
},
|
|
@@ -4189,7 +4169,7 @@
|
|
|
4189
4169
|
"match": "(:)",
|
|
4190
4170
|
"captures": {
|
|
4191
4171
|
"1": {
|
|
4192
|
-
"name": "punctuation.
|
|
4172
|
+
"name": "punctuation.accessor.abl"
|
|
4193
4173
|
}
|
|
4194
4174
|
}
|
|
4195
4175
|
},
|
|
@@ -4244,7 +4224,7 @@
|
|
|
4244
4224
|
"match": "(\\+=|-=|\\\\=|\\*=|<=|<>|>=|=|<|>)",
|
|
4245
4225
|
"captures": {
|
|
4246
4226
|
"1": {
|
|
4247
|
-
"name": "keyword.operator.
|
|
4227
|
+
"name": "keyword.operator.abl"
|
|
4248
4228
|
}
|
|
4249
4229
|
}
|
|
4250
4230
|
},
|
|
@@ -4253,7 +4233,7 @@
|
|
|
4253
4233
|
"comment": "Lookahead and -behind for the spaces",
|
|
4254
4234
|
"captures": {
|
|
4255
4235
|
"1": {
|
|
4256
|
-
"name": "keyword.operator.
|
|
4236
|
+
"name": "keyword.operator.abl"
|
|
4257
4237
|
}
|
|
4258
4238
|
}
|
|
4259
4239
|
},
|
|
@@ -4262,7 +4242,7 @@
|
|
|
4262
4242
|
"comment": "Lookahead only for the spaces, so that in particular the NOT is captured properly",
|
|
4263
4243
|
"captures": {
|
|
4264
4244
|
"1": {
|
|
4265
|
-
"name": "keyword.operator.
|
|
4245
|
+
"name": "keyword.operator.abl"
|
|
4266
4246
|
}
|
|
4267
4247
|
}
|
|
4268
4248
|
},
|
|
@@ -4273,13 +4253,13 @@
|
|
|
4273
4253
|
"name": "support.function.abl"
|
|
4274
4254
|
},
|
|
4275
4255
|
"2": {
|
|
4276
|
-
"name": "meta.brace.round.
|
|
4256
|
+
"name": "meta.brace.round.abl"
|
|
4277
4257
|
},
|
|
4278
4258
|
"3": {
|
|
4279
4259
|
"name": "storage.data.table.abl"
|
|
4280
4260
|
},
|
|
4281
4261
|
"5": {
|
|
4282
|
-
"name": "meta.brace.round.
|
|
4262
|
+
"name": "meta.brace.round.abl"
|
|
4283
4263
|
}
|
|
4284
4264
|
}
|
|
4285
4265
|
},
|
|
@@ -4294,13 +4274,13 @@
|
|
|
4294
4274
|
"name": "support.function.abl"
|
|
4295
4275
|
},
|
|
4296
4276
|
"2": {
|
|
4297
|
-
"name": "meta.brace.round.
|
|
4277
|
+
"name": "meta.brace.round.abl"
|
|
4298
4278
|
},
|
|
4299
4279
|
"3": {
|
|
4300
4280
|
"name": "storage.data.table.abl"
|
|
4301
4281
|
},
|
|
4302
4282
|
"5": {
|
|
4303
|
-
"name": "meta.brace.round.
|
|
4283
|
+
"name": "meta.brace.round.abl"
|
|
4304
4284
|
}
|
|
4305
4285
|
}
|
|
4306
4286
|
},
|
|
@@ -4329,13 +4309,13 @@
|
|
|
4329
4309
|
"name": "support.function.abl"
|
|
4330
4310
|
},
|
|
4331
4311
|
"2": {
|
|
4332
|
-
"name": "meta.brace.round.
|
|
4312
|
+
"name": "meta.brace.round.abl"
|
|
4333
4313
|
},
|
|
4334
4314
|
"3": {
|
|
4335
4315
|
"name": "storage.data.table.abl"
|
|
4336
4316
|
},
|
|
4337
4317
|
"5": {
|
|
4338
|
-
"name": "meta.brace.round.
|
|
4318
|
+
"name": "meta.brace.round.abl"
|
|
4339
4319
|
}
|
|
4340
4320
|
}
|
|
4341
4321
|
},
|
|
@@ -4733,7 +4713,7 @@
|
|
|
4733
4713
|
},
|
|
4734
4714
|
"keywords-S": {
|
|
4735
4715
|
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
4736
|
-
"match": "(?i)\\b(s(?:ave|ave-as|ax-attributes|ax-complete?|ax-comple|ax-parser-error|ax-reader|ax-running|ax-uninitialized|ax-write-begin|ax-write-complete|ax-write-content|ax-write-element|ax-write-error|ax-write-idle|ax-write-tag|ax-writer|ax-xml|chema|creen|creen-io|croll|croll-bars|croll-horizontal|croll-left|croll-mode|croll-notify|croll-right|croll-vertical|crollable|crollbar-drag|crolled-row-position?|crolled-row-positi?|crolled-row-posi?|crolling|earch-self|earch-target|ection|ecurity-policy|eek|elect|elect-extend|elect-on-join|elect-repositioned-row|elected-items|election|election-extend|election-list|elf|end|ensitive|eparate-connection|eparators|erializable|erialize-hidden|erialize-name|erver|erver-socket|ession|et|et-attr-call-type|et-byte-order|et-cell-focus|et-contents|et-db-logging|et-event-manager-option|et-option|et-pointer-value?|et-pointer-val|et-state|ettings|hare-lock?|hare-lo?|hare-?|hared|hort|how-in-taskbar?|how-in-taskb?|how-stats?|ide-labels?|ide-labe?|ignature|ilent|imple|ingle|ingle-character|ingle-run|ingleton|ize|ize-chars?|ize-cha?|ize-c|ize-pixels?|ize-pixe?|ize-pi?|kip
|
|
4716
|
+
"match": "(?i)\\b(s(?:ave|ave-as|ax-attributes|ax-complete?|ax-comple|ax-parser-error|ax-reader|ax-running|ax-uninitialized|ax-write-begin|ax-write-complete|ax-write-content|ax-write-element|ax-write-error|ax-write-idle|ax-write-tag|ax-writer|ax-xml|chema|creen|creen-io|croll|croll-bars|croll-horizontal|croll-left|croll-mode|croll-notify|croll-right|croll-vertical|crollable|crollbar-drag|crolled-row-position?|crolled-row-positi?|crolled-row-posi?|crolling|earch-self|earch-target|ection|ecurity-policy|eek|elect|elect-extend|elect-on-join|elect-repositioned-row|elected-items|election|election-extend|election-list|elf|end|ensitive|eparate-connection|eparators|erializable|erialize-hidden|erialize-name|erver|erver-socket|ession|et|et-attr-call-type|et-byte-order|et-cell-focus|et-contents|et-db-logging|et-event-manager-option|et-option|et-pointer-value?|et-pointer-val|et-state|ettings|hare-lock?|hare-lo?|hare-?|hared|hort|how-in-taskbar?|how-in-taskb?|how-stats?|ide-labels?|ide-labe?|ignature|ilent|imple|ingle|ingle-character|ingle-run|ingleton|ize|ize-chars?|ize-cha?|ize-c|ize-pixels?|ize-pixe?|ize-pi?|kip-group-duplicates|kip-schema-check|lider|mallint|oap-fault|oap-header|oap-header-entryref|ocket|ome|ource|ource-procedure|pace|ql|tart|tart-box-selection|tart-extend-box-selection|tart-mem-check|tart-move|tart-resize|tart-row-resize|tart-search|tarting|tatic|tatus|tatus-area|tatus-area-msg|tdcall|tomp-detection|tomp-frequency|top|top-after|top-display|top-mem-check|tored-procedure?|tored-procedu?|tored-proce?|tream|tream-handle|tream-io|tring-xref|ub-average?|ub-avera?|ub-ave|ub-count|ub-maximum?|ub-maxim?|ub-max|ub-menu|ub-menu-help|ub-minimum?|ub-minim?|ub-min|ub-total|ubscribe|ubstring?|ubstri?|um|ummary|uper|uspend|ystem-dialog|ystem-help))\\b(?![#$\\-_%&])",
|
|
4737
4717
|
"captures": {
|
|
4738
4718
|
"1": {
|
|
4739
4719
|
"name": "keyword.other.abl"
|
|
@@ -4874,7 +4854,7 @@
|
|
|
4874
4854
|
"match": "(?i)(:)(a(?:ccelerator|ctive|ctor|dm-data|fter-buffer|fter-rowid|fter-table|llow-column-searching|llow-prev-deserialization|lways-on-top|mbiguous?|mbiguo?|mbig|ppl-alert-boxes?|ppl-alert-box?|ppl-alert-b?|ppl-alert|ppl-context-id|ppserver-info|ppserver-password|ppserver-userid|sync-request-count|sync-request-handle|synchronous|ttached-pairlist|ttr-space?|ttr-spa?|ttr-s?|ttr|ttribute-names|udit-event-context|uto-completion?|uto-completi?|uto-comple?|uto-comp|uto-delete|uto-delete-xml|uto-end-key|uto-go|uto-indent?|uto-inde?|uto-resize|uto-return?|uto-retu?|uto-synchronize|uto-validate?|uto-valida?|uto-vali?|uto-zap?|uto-z|vailable-formats|vailable?|vailab?|vail))\\b(?![#$\\-_%&])",
|
|
4875
4855
|
"captures": {
|
|
4876
4856
|
"1": {
|
|
4877
|
-
"name": "punctuation.
|
|
4857
|
+
"name": "punctuation.accessor.abl"
|
|
4878
4858
|
},
|
|
4879
4859
|
"2": {
|
|
4880
4860
|
"name": "entity.name.function.abl"
|
|
@@ -4885,7 +4865,7 @@
|
|
|
4885
4865
|
"match": "(?i)(:)(b(?:ackground?|ackgrou?|ackgr?|ack|ase-ade|asic-logging|atch-mode|atch-size|efore-buffer|efore-rowid|efore-table|gcolor?|gcol?|gc|lank|lock-iteration-display|order-bottom-chars?|order-bottom-cha?|order-bottom-c|order-bottom-pixels?|order-bottom-pixe?|order-bottom-pi?|order-left-chars?|order-left-cha?|order-left-c|order-left-pixels?|order-left-pixe?|order-left-pi?|order-right-chars?|order-right-cha?|order-right-c|order-right-pixels?|order-right-pixe?|order-right-pi?|order-top-chars?|order-top-cha?|order-top-c|order-top-pixels?|order-top-pixe?|order-top-pi?|ox|ox-selectable?|ox-selectab?|ox-select|uffer-chars|uffer-field|uffer-group-id|uffer-group-name|uffer-handle|uffer-lines|uffer-name?|uffer-na?|uffer-partition-id|uffer-tenant-id|uffer-tenant-name|ytes-read|ytes-written))\\b(?![#$\\-_%&])",
|
|
4886
4866
|
"captures": {
|
|
4887
4867
|
"1": {
|
|
4888
|
-
"name": "punctuation.
|
|
4868
|
+
"name": "punctuation.accessor.abl"
|
|
4889
4869
|
},
|
|
4890
4870
|
"2": {
|
|
4891
4871
|
"name": "entity.name.function.abl"
|
|
@@ -4896,7 +4876,7 @@
|
|
|
4896
4876
|
"match": "(?i)(:)(c(?:ache|all-name|all-type|an-create?|an-crea|an-delete?|an-dele|an-do-domain-support|an-read|an-write?|ancel-button|ancelled|areful-paint|ase-sensitive?|ase-sensiti?|ase-sensi?|ase-sen|entered?|enter|harset|hecked|hild-buffer|hild-num|lass-type|lient-connection-id|lient-tty|lient-type|lient-workstation|ode|odepage|olumn-bgcolor?|olumn-bgcol?|olumn-bgc|olumn-dcolor|olumn-fgcolor?|olumn-fgcol?|olumn-fgc|olumn-font|olumn-label?|olumn-lab|olumn-movable|olumn-pfcolor?|olumn-pfcol?|olumn-pfc|olumn-read-only|olumn-resizable|olumn-scrolling?|olumn-scrolli?|olumn-scrol?|olumn-scr?|olumns?|om-handle|omplete|onfig-name|ontext-help|ontext-help-file|ontext-help-id|ontrol-box|onvert-3d-colors?|onvert-3d-colo?|onvert-3d-co?|onvert-3d-?|overage|pcase|pcoll|pinternal?|pintern?|pinte?|plog|pprint|prcodein|prcodeout|pstream|pterm|rc-value?|rc-val|urrent-changed|urrent-column|urrent-environment?|urrent-environme?|urrent-environ?|urrent-envir?|urrent-env|urrent-iteration|urrent-request-info|urrent-response-info|urrent-result-row|urrent-row-modified|urrent-window|ursor-char|ursor-line|ursor-offset))\\b(?![#$\\-_%&])",
|
|
4897
4877
|
"captures": {
|
|
4898
4878
|
"1": {
|
|
4899
|
-
"name": "punctuation.
|
|
4879
|
+
"name": "punctuation.accessor.abl"
|
|
4900
4880
|
},
|
|
4901
4881
|
"2": {
|
|
4902
4882
|
"name": "entity.name.function.abl"
|
|
@@ -4907,7 +4887,7 @@
|
|
|
4907
4887
|
"match": "(?i)(:)(d(?:ata-entry-return?|ata-entry-retu?|ata-source|ata-source-complete-map|ata-source-modified|ata-source-rowid|ata-type?|ata-ty?|ataset|ate-format?|ate-form?|ate-fo?|b-context|b-list|b-references|bname|color|de-error|de-id?|de-item|de-name|de-topic|eblank|ebug-alert|ecimals|efault|efault-buffer-handle|efault-button?|efault-butt?|efault-commit|efault-string|efault-value|elimiter|escription?|escripti?|irectory|isable-auto-zap|isplay-timezone|isplay-type?|isplay-ty?|omain-description|omain-name|omain-type|own|rag-enabled|rop-target|ynamic))\\b(?![#$\\-_%&])",
|
|
4908
4888
|
"captures": {
|
|
4909
4889
|
"1": {
|
|
4910
|
-
"name": "punctuation.
|
|
4890
|
+
"name": "punctuation.accessor.abl"
|
|
4911
4891
|
},
|
|
4912
4892
|
"2": {
|
|
4913
4893
|
"name": "entity.name.function.abl"
|
|
@@ -4918,7 +4898,7 @@
|
|
|
4918
4898
|
"match": "(?i)(:)(e(?:dge-chars?|dge-cha?|dge-c|dge-pixels?|dge-pixe?|dge-pi?|dit-can-paste|dit-can-undo|mpty|nabled|ncoding|ncryption-salt|nd-user-prompt|ntity-expansion-limit|ntry-types-list|rror|rror-column?|rror-colu?|rror-object|rror-object-detail|rror-row|rror-stack-trace|rror-string|vent-group-id|vent-handler|vent-handler-object|vent-procedure|vent-procedure-context|vent-type?|vent-ty?|xclusive-id|xecution-log|xit-code|xpand|xpandable|xtent))\\b(?![#$\\-_%&])",
|
|
4919
4899
|
"captures": {
|
|
4920
4900
|
"1": {
|
|
4921
|
-
"name": "punctuation.
|
|
4901
|
+
"name": "punctuation.accessor.abl"
|
|
4922
4902
|
},
|
|
4923
4903
|
"2": {
|
|
4924
4904
|
"name": "entity.name.function.abl"
|
|
@@ -4926,10 +4906,10 @@
|
|
|
4926
4906
|
}
|
|
4927
4907
|
},
|
|
4928
4908
|
"handle-attributes-F": {
|
|
4929
|
-
"match": "(?i)(:)(f(?:gcolor?|gcol?|gc|ile-create-date?|ile-create-da?|ile-create-time?|ile-create-ti?|ile-mod-date?|ile-mod-da?|ile-mod-time?|ile-mod-ti?|ile-name|ile-offset?|ile-offs?|ile-size|ile-type|ill-mode|ill-where-string|illed|irst-async-request?|irst-async-reque?|irst-async-req?|irst-async-r?|irst-async|irst-buffer|irst-child|irst-column|irst-data-source|irst-dataset|irst-form|irst-object|irst-procedure?|irst-procedu?|irst-proce?|irst-query|irst-server-socket|irst-server?|irst-serv|irst-socket|irst-tab-item?|irst-tab-it?|it-last-column|lat-button|ocused-row|ocused-row-selected|ont|oreground?|oregrou?|oregr?|ore|oreign-key-hidden|orm-input|orm-long-input|ormatted?|ormat?|orm|orward-only|ragment?|rame-col|rame-name|rame-row|rame-spacing?|rame-spaci?|rame-spa|rame-x|rame-y|rame?|requency|ull-height-chars?|ull-height-cha?|ull-height-c|ull-height-pixels?|ull-height-pixe?|ull-height-pi?|ull-pathname?|ull-pathna?|ull-width-chars?|ull-width-cha?|ull-width-c?|ull-width|ull-width-pixels?|ull-width-pixe?|ull-width-pi?|unction))\\b(?![#$\\-_%&])",
|
|
4909
|
+
"match": "(?i)(:)(f(?:gcolor?|gcol?|gc|ile-create-date?|ile-create-da?|ile-create-time?|ile-create-ti?|ile-mod-date?|ile-mod-da?|ile-mod-time?|ile-mod-ti?|ile-name|ile-offset?|ile-offs?|ile-size|ile-type|ill-mode|ill-where-string|illed|ips-mode|irst-async-request?|irst-async-reque?|irst-async-req?|irst-async-r?|irst-async|irst-buffer|irst-child|irst-column|irst-data-source|irst-dataset|irst-form|irst-object|irst-procedure?|irst-procedu?|irst-proce?|irst-query|irst-server-socket|irst-server?|irst-serv|irst-socket|irst-tab-item?|irst-tab-it?|it-last-column|lat-button|ocused-row|ocused-row-selected|ont|oreground?|oregrou?|oregr?|ore|oreign-key-hidden|orm-input|orm-long-input|ormatted?|ormat?|orm|orward-only|ragment?|rame-col|rame-name|rame-row|rame-spacing?|rame-spaci?|rame-spa|rame-x|rame-y|rame?|requency|ull-height-chars?|ull-height-cha?|ull-height-c|ull-height-pixels?|ull-height-pixe?|ull-height-pi?|ull-pathname?|ull-pathna?|ull-width-chars?|ull-width-cha?|ull-width-c?|ull-width|ull-width-pixels?|ull-width-pixe?|ull-width-pi?|unction))\\b(?![#$\\-_%&])",
|
|
4930
4910
|
"captures": {
|
|
4931
4911
|
"1": {
|
|
4932
|
-
"name": "punctuation.
|
|
4912
|
+
"name": "punctuation.accessor.abl"
|
|
4933
4913
|
},
|
|
4934
4914
|
"2": {
|
|
4935
4915
|
"name": "entity.name.function.abl"
|
|
@@ -4940,7 +4920,7 @@
|
|
|
4940
4920
|
"match": "(?i)(:)(gr(?:aphic-edge?|aphic-ed?|id-factor-horizontal?|id-factor-horizont?|id-factor-horizo?|id-factor-hori?|id-factor-ho?|id-factor-vertical?|id-factor-vertic?|id-factor-vert?|id-factor-ve?|id-snap|id-unit-height-chars?|id-unit-height-cha?|id-unit-height-c|id-unit-height-pixels?|id-unit-height-pixe?|id-unit-height-pi?|id-unit-width-chars?|id-unit-width-cha?|id-unit-width-c|id-unit-width-pixels?|id-unit-width-pixe?|id-unit-width-pi?|id-visible|oup-box))\\b(?![#$\\-_%&])",
|
|
4941
4921
|
"captures": {
|
|
4942
4922
|
"1": {
|
|
4943
|
-
"name": "punctuation.
|
|
4923
|
+
"name": "punctuation.accessor.abl"
|
|
4944
4924
|
},
|
|
4945
4925
|
"2": {
|
|
4946
4926
|
"name": "entity.name.function.abl"
|
|
@@ -4951,7 +4931,7 @@
|
|
|
4951
4931
|
"match": "(?i)(:)(h(?:andler??|as-lobs|as-records|eight-chars?|eight-cha?|eight-c|eight-pixels?|eight-pixe?|eight-pi?|elp|idden|orizontal?|orizont?|orizo?|ori|tml-charset|tml-end-of-line|tml-end-of-page|tml-frame-begin|tml-frame-end|tml-header-begin|tml-header-end|tml-title-begin|tml-title-end|wnd))\\b(?![#$\\-_%&])",
|
|
4952
4932
|
"captures": {
|
|
4953
4933
|
"1": {
|
|
4954
|
-
"name": "punctuation.
|
|
4934
|
+
"name": "punctuation.accessor.abl"
|
|
4955
4935
|
},
|
|
4956
4936
|
"2": {
|
|
4957
4937
|
"name": "entity.name.function.abl"
|
|
@@ -4962,7 +4942,7 @@
|
|
|
4962
4942
|
"match": "(?i)(:)(i(?:cfparameter?|cfparamet?|cfparam|con|gnore-current-modified?|gnore-current-modifi?|gnore-current-modi?|mage|mage-down|mage-insensitive|mage-up|mmediate-display|n-handle|ndex|ndex-information?|ndex-informati?|ndex-informa?|ndex-infor?|nherit-bgcolor?|nherit-bgcol?|nherit-bgc|nherit-fgcolor?|nherit-fgcol?|nherit-fgc|nitial|nner-chars|nner-lines|nput-value|nstantiating-procedure|nternal-entries|s-class?|s-json|s-multi-tenant|s-open|s-parameter-set|s-partitioned?|s-xml|tems-per-row))\\b(?![#$\\-_%&])",
|
|
4963
4943
|
"captures": {
|
|
4964
4944
|
"1": {
|
|
4965
|
-
"name": "punctuation.
|
|
4945
|
+
"name": "punctuation.accessor.abl"
|
|
4966
4946
|
},
|
|
4967
4947
|
"2": {
|
|
4968
4948
|
"name": "entity.name.function.abl"
|
|
@@ -4973,7 +4953,7 @@
|
|
|
4973
4953
|
"match": "(?i)(:)(ke(?:ep-connection-open|ep-frame-z-order?|ep-frame-z-ord?|ep-frame-z-o?|ep-frame-z|ep-security-cache|ys??))\\b(?![#$\\-_%&])",
|
|
4974
4954
|
"captures": {
|
|
4975
4955
|
"1": {
|
|
4976
|
-
"name": "punctuation.
|
|
4956
|
+
"name": "punctuation.accessor.abl"
|
|
4977
4957
|
},
|
|
4978
4958
|
"2": {
|
|
4979
4959
|
"name": "entity.name.function.abl"
|
|
@@ -4984,7 +4964,7 @@
|
|
|
4984
4964
|
"match": "(?i)(:)(l(?:abel|abel-bgcolor?|abel-bgcol?|abel-bgc|abel-dcolor?|abel-dcol?|abel-dc|abel-fgcolor?|abel-fgcol?|abel-fgc|abel-font|abels|abels-have-colons|anguages?|arge|arge-to-small|ast-async-request?|ast-async-reque?|ast-async-req?|ast-async-r?|ast-async|ast-batch|ast-child|ast-form|ast-object|ast-procedure?|ast-procedu?|ast-proce|ast-server-socket|ast-server?|ast-serv|ast-socket|ast-tab-item?|ast-tab-it?|ength|ibrary|ibrary-calling-convention|ine|ist-item-pairs|ist-items|istings|iteral-question|ocal-host|ocal-name|ocal-port|ocal-version-info|ocator-column-number|ocator-line-number|ocator-public-id|ocator-system-id|ocator-type|ocked|og-entry-types|og-threshold|ogfile-name|ogging-level|ogin-expiration-timestamp|ogin-host|ogin-state))\\b(?![#$\\-_%&])",
|
|
4985
4965
|
"captures": {
|
|
4986
4966
|
"1": {
|
|
4987
|
-
"name": "punctuation.
|
|
4967
|
+
"name": "punctuation.accessor.abl"
|
|
4988
4968
|
},
|
|
4989
4969
|
"2": {
|
|
4990
4970
|
"name": "entity.name.function.abl"
|
|
@@ -4995,7 +4975,7 @@
|
|
|
4995
4975
|
"match": "(?i)(:)(m(?:andatory|anual-highlight|ax-button|ax-chars|ax-data-guess|ax-height-chars?|ax-height-cha?|ax-height-c|ax-height-pixels?|ax-height-pixe?|ax-height-pi?|ax-value?|ax-val|ax-width-chars?|ax-width-cha?|ax-width-c|ax-width-pixels?|ax-width-pixe?|ax-width-pi?|aximum-level|enu-bar|enu-key?|enu-k|enu-mouse?|enu-mou?|enu-m|erge-by-field|essage-area|essage-area-font|in-button|in-column-width-chars?|in-column-width-cha?|in-column-width-c|in-column-width-pixels?|in-column-width-pixe?|in-column-width-pi?|in-height-chars?|in-height-cha?|in-height-c|in-height-pixels?|in-height-pixe?|in-height-pi?|in-schema-marshall?|in-value?|in-val|in-width-chars?|in-width-cha?|in-width-c|in-width-pixels?|in-width-pixe?|in-width-pi?|odified|ouse-pointer?|ouse-point?|ouse-poi?|ouse-p|ovable|ulti-compile|ultiple|ultitasking-interval|ust-understand))\\b(?![#$\\-_%&])",
|
|
4996
4976
|
"captures": {
|
|
4997
4977
|
"1": {
|
|
4998
|
-
"name": "punctuation.
|
|
4978
|
+
"name": "punctuation.accessor.abl"
|
|
4999
4979
|
},
|
|
5000
4980
|
"2": {
|
|
5001
4981
|
"name": "entity.name.function.abl"
|
|
@@ -5006,7 +4986,7 @@
|
|
|
5006
4986
|
"match": "(?i)(:)(n(?:ame|amespace-prefix|amespace-uri|eeds-appserver-prompt|eeds-prompt|ested|ew|ew-row|ext-column?|ext-colu?|ext-rowid|ext-sibling|ext-tab-item?|o-current-value|o-empty-space|o-focus|o-schema-marshall?|o-validate?|o-valida?|o-vali?|ode-value|onamespace-schema-location|um-buffers|um-buttons?|um-butto?|um-but|um-child-relations|um-children|um-columns?|um-colum?|um-col|um-dropped-files|um-entries|um-fields|um-formats|um-header-entries|um-items|um-iterations|um-lines|um-locked-columns?|um-locked-colum?|um-locked-col|um-log-files|um-messages|um-parameters|um-references|um-relations|um-replaced?|um-replac?|um-repl|um-results|um-selected-rows|um-selected-widgets|um-source-buffers|um-tabs|um-to-retain|um-top-buffers|um-visible-columns?|um-visible-colum?|um-visible-col|umeric-decimal-point?|umeric-decimal-poi?|umeric-decimal-p?|umeric-decimal?|umeric-decim?|umeric-dec|umeric-format?|umeric-form?|umeric-fo?|umeric-separator?|umeric-separat?|umeric-separ?|umeric-sep))\\b(?![#$\\-_%&])",
|
|
5007
4987
|
"captures": {
|
|
5008
4988
|
"1": {
|
|
5009
|
-
"name": "punctuation.
|
|
4989
|
+
"name": "punctuation.accessor.abl"
|
|
5010
4990
|
},
|
|
5011
4991
|
"2": {
|
|
5012
4992
|
"name": "entity.name.function.abl"
|
|
@@ -5017,7 +4997,7 @@
|
|
|
5017
4997
|
"match": "(?i)(:)(o(?:n-frame-border?|n-frame-bord?|n-frame-bo?|n-frame-?|ptions|rdinal|rigin-handle|rigin-rowid|verlay|wner|wner-document))\\b(?![#$\\-_%&])",
|
|
5018
4998
|
"captures": {
|
|
5019
4999
|
"1": {
|
|
5020
|
-
"name": "punctuation.
|
|
5000
|
+
"name": "punctuation.accessor.abl"
|
|
5021
5001
|
},
|
|
5022
5002
|
"2": {
|
|
5023
5003
|
"name": "entity.name.function.abl"
|
|
@@ -5025,10 +5005,10 @@
|
|
|
5025
5005
|
}
|
|
5026
5006
|
},
|
|
5027
5007
|
"handle-attributes-P": {
|
|
5028
|
-
"match": "(?i)(:)(p(?:age-bottom?|age-bott?|age-top|arameter?|aramet?|aram|arent|arent-buffer|arent-fields-after|arent-fields-before|arent-id-relation|arent-relation?|arent-relati?|arent-rela?|arse-status|assword-field|athname|be-hash-algorithm?|be-hash-algorit?|be-hash-algor?|be-hash-alg|be-key-rounds|ersistent-cache-disabled|ersistent-procedure|ersistent?|ersiste?|fcolor?|fcol?|fc|ixels-per-column?|ixels-per-colu?|ixels-per-row|opup-menu?|opup-me?|opup-only?|opup-on?|osition|refer-dataset|repare-string|repared|rev-column?|rev-colu?|rev-sibling|rev-tab-item?|rev-tab-it?|rimary|rimary-passphrase|rinter-control-handle|rinter-hdc|rinter-name|rinter-port|rivate-data?|rivate-da?|rocedure-name|rocedure-type|rofiling|rogress-source?|rogress-sour?|rogress-so?|roxy|roxy-password|roxy-userid|ublic-id|ublished-events))\\b(?![#$\\-_%&])",
|
|
5008
|
+
"match": "(?i)(:)(p(?:age-bottom?|age-bott?|age-top|arameter?|aramet?|aram|arent|arent-buffer|arent-fields-after|arent-fields-before|arent-id-relation|arent-relation?|arent-relati?|arent-rela?|arse-status|assword-field|assword-hash-algorithm|assword-hash-rounds|assword-hash-salt|athname|be-algorithm|be-hash-algorithm?|be-hash-algorit?|be-hash-algor?|be-hash-alg|be-key-rounds|ersistent-cache-disabled|ersistent-procedure|ersistent?|ersiste?|fcolor?|fcol?|fc|ixels-per-column?|ixels-per-colu?|ixels-per-row|opup-menu?|opup-me?|opup-only?|opup-on?|osition|refer-dataset|repare-string|repared|rev-column?|rev-colu?|rev-sibling|rev-tab-item?|rev-tab-it?|rimary|rimary-passphrase|rinter-control-handle|rinter-hdc|rinter-name|rinter-port|rivate-data?|rivate-da?|rocedure-name|rocedure-type|rofiling|rogress-source?|rogress-sour?|rogress-so?|roxy|roxy-password|roxy-userid|ublic-id|ublished-events))\\b(?![#$\\-_%&])",
|
|
5029
5009
|
"captures": {
|
|
5030
5010
|
"1": {
|
|
5031
|
-
"name": "punctuation.
|
|
5011
|
+
"name": "punctuation.accessor.abl"
|
|
5032
5012
|
},
|
|
5033
5013
|
"2": {
|
|
5034
5014
|
"name": "entity.name.function.abl"
|
|
@@ -5039,7 +5019,7 @@
|
|
|
5039
5019
|
"match": "(?i)(:)(qu(?:alified-user-id|ery|ery-off-end|it))\\b(?![#$\\-_%&])",
|
|
5040
5020
|
"captures": {
|
|
5041
5021
|
"1": {
|
|
5042
|
-
"name": "punctuation.
|
|
5022
|
+
"name": "punctuation.accessor.abl"
|
|
5043
5023
|
},
|
|
5044
5024
|
"2": {
|
|
5045
5025
|
"name": "entity.name.function.abl"
|
|
@@ -5050,7 +5030,7 @@
|
|
|
5050
5030
|
"match": "(?i)(:)(r(?:adio-buttons|ead-only|ecid|ecord-length?|ecord-leng?|ecursive|efreshable|ejected|elation-fields?|elation-fiel?|elation-fi|elations-active|emote|emote-host|emote-port|eposition|equest-info|esizable?|esizab?|esize|esponse-info|estart-row|estart-rowid|etain-shape?|etain-sha?|etain-s|eturn-inserted?|eturn-insert?|eturn-inse?|eturn-value-data-type|eturn-value-dll-type|eturn-value?|eturn-val|oles??|ounded|ow|ow-height-chars?|ow-height-cha?|ow-height-c|ow-height-pixels?|ow-height-pixe?|ow-height-pi?|ow-markers?|ow-marke?|ow-mar?|ow-resizable|ow-state|owid))\\b(?![#$\\-_%&])",
|
|
5051
5031
|
"captures": {
|
|
5052
5032
|
"1": {
|
|
5053
|
-
"name": "punctuation.
|
|
5033
|
+
"name": "punctuation.accessor.abl"
|
|
5054
5034
|
},
|
|
5055
5035
|
"2": {
|
|
5056
5036
|
"name": "entity.name.function.abl"
|
|
@@ -5061,7 +5041,7 @@
|
|
|
5061
5041
|
"match": "(?i)(:)(s(?:ave-where-string|chema-change|chema-location|chema-marshal|chema-path|creen-lines|creen-value?|creen-val|croll-bars|crollable|crollbar-horizontal?|crollbar-horizont?|crollbar-horizo?|crollbar-hori?|crollbar-ho?|crollbar-vertical?|crollbar-vertic?|crollbar-vert?|crollbar-ve?|eal-timestamp|electable|elected|election-end|election-start|election-text|ensitive|eparator-fgcolor?|eparator-fgcol?|eparator-fgc|eparators|erialize-hidden|erialize-name|erver|erver-connection-bound-request?|erver-connection-bound-reque?|erver-connection-bound-req?|erver-connection-bound?|erver-connection-bou?|erver-connection-context?|erver-connection-conte?|erver-connection-con?|erver-connection-id|erver-operating-mode|ession-end|ession-id|how-in-taskbar?|how-in-taskb?|ide-label-handle?|ide-label-hand?|ide-label-ha?|ide-labels|ignature-value|ingle-run|ingleton|kip-deleted-record?|kip-deleted-reco?|mall-icon|mall-title|oap-fault-actor|oap-fault-code|oap-fault-detail|oap-fault-misunderstood-header|oap-fault-node|oap-fault-role|oap-fault-string|oap-fault-subcode|oap-version|ort|ort-ascending|ort-number|sl-server-name|tandalone|tartup-parameters|tate-detail|tatistics|tatus-area|tatus-area-font|top|top-object|topped?|tream|tretch-to-fit|trict|trict-entity-resolution|ubtype|uper-procedures?|uper-procedur?|uper-proced?|uper-proc|uppress-namespace-processing|uppress-warnings-list|uppress-warnings?|uppress-warnin?|uppress-warn?|uppress-wa?|ymmetric-encryption-aad|ymmetric-encryption-algorithm|ymmetric-encryption-iv|ymmetric-encryption-key|ymmetric-support|ystem-alert-boxes?|ystem-alert-box?|ystem-alert-b?|ystem-alert|ystem-id))\\b(?![#$\\-_%&])",
|
|
5062
5042
|
"captures": {
|
|
5063
5043
|
"1": {
|
|
5064
|
-
"name": "punctuation.
|
|
5044
|
+
"name": "punctuation.accessor.abl"
|
|
5065
5045
|
},
|
|
5066
5046
|
"2": {
|
|
5067
5047
|
"name": "entity.name.function.abl"
|
|
@@ -5072,7 +5052,7 @@
|
|
|
5072
5052
|
"match": "(?i)(:)(t(?:ab-position|ab-stop|able|able-crc-list|able-handle|able-list|able-number?|able-numb?|emp-directory?|emp-directo?|emp-direc?|emp-dir|ext-selected|hread-safe|hree-d|ic-marks|ime-source|imezone|itle|itle-bgcolor?|itle-bgcol?|itle-bgc|itle-dcolor?|itle-dcol?|itle-dc|itle-fgcolor?|itle-fgcol?|itle-fgc|itle-font?|itle-fo|oggle-box|ooltips??|op-nav-query|op-only|race-filter|racing|racking-changes|rans-init-procedure?|rans-init-procedu?|rans-init-proce?|ransaction?|ransacti?|ransparent?|ranspare?|ype))\\b(?![#$\\-_%&])",
|
|
5073
5053
|
"captures": {
|
|
5074
5054
|
"1": {
|
|
5075
|
-
"name": "punctuation.
|
|
5055
|
+
"name": "punctuation.accessor.abl"
|
|
5076
5056
|
},
|
|
5077
5057
|
"2": {
|
|
5078
5058
|
"name": "entity.name.function.abl"
|
|
@@ -5083,7 +5063,7 @@
|
|
|
5083
5063
|
"match": "(?i)(:)(u(?:ndo|ndo-throw-scope|nique-id|nique-match|rl|rl-password|rl-userid|ser-id))\\b(?![#$\\-_%&])",
|
|
5084
5064
|
"captures": {
|
|
5085
5065
|
"1": {
|
|
5086
|
-
"name": "punctuation.
|
|
5066
|
+
"name": "punctuation.accessor.abl"
|
|
5087
5067
|
},
|
|
5088
5068
|
"2": {
|
|
5089
5069
|
"name": "entity.name.function.abl"
|
|
@@ -5094,7 +5074,7 @@
|
|
|
5094
5074
|
"match": "(?i)(:)(v(?:6display|alidate-expression?|alidate-message|alidate-xml|alidation-enabled|alue|ersion|iew-as|iew-first-column-on-reopen|irtual-height-chars?|irtual-height-cha?|irtual-height-c|irtual-height-pixels?|irtual-height-pixe?|irtual-height-pi?|irtual-width-chars?|irtual-width-cha?|irtual-width-c|irtual-width-pixels?|irtual-width-pixe?|irtual-width-pi?|isible))\\b(?![#$\\-_%&])",
|
|
5095
5075
|
"captures": {
|
|
5096
5076
|
"1": {
|
|
5097
|
-
"name": "punctuation.
|
|
5077
|
+
"name": "punctuation.accessor.abl"
|
|
5098
5078
|
},
|
|
5099
5079
|
"2": {
|
|
5100
5080
|
"name": "entity.name.function.abl"
|
|
@@ -5105,7 +5085,7 @@
|
|
|
5105
5085
|
"match": "(?i)(:)(w(?:arning|c-admin-app|here-string|idget-enter?|idget-ent?|idget-e|idget-id|idget-leave?|idget-lea?|idget-l|idth-chars?|idth-cha?|idth-c|idth-pixels?|idth-pixe?|idth-pi?|indow|indow-state?|indow-sta|indow-system?|indow-syst?|ord-wrap|ork-area-height-pixels?|ork-area-height-pixe?|ork-area-height-pi?|ork-area-width-pixels?|ork-area-width-pixe?|ork-area-width-pi?|ork-area-x|ork-area-y|rite-status))\\b(?![#$\\-_%&])",
|
|
5106
5086
|
"captures": {
|
|
5107
5087
|
"1": {
|
|
5108
|
-
"name": "punctuation.
|
|
5088
|
+
"name": "punctuation.accessor.abl"
|
|
5109
5089
|
},
|
|
5110
5090
|
"2": {
|
|
5111
5091
|
"name": "entity.name.function.abl"
|
|
@@ -5116,7 +5096,7 @@
|
|
|
5116
5096
|
"match": "(?i)(:)(x(?:|-document|code-session-key|ml-data-type|ml-entity-expansion-limit|ml-node-name|ml-node-type|ml-schema-path?|ml-strict-entity-resolution|ml-suppress-namespace-processing))\\b(?![#$\\-_%&])",
|
|
5117
5097
|
"captures": {
|
|
5118
5098
|
"1": {
|
|
5119
|
-
"name": "punctuation.
|
|
5099
|
+
"name": "punctuation.accessor.abl"
|
|
5120
5100
|
},
|
|
5121
5101
|
"2": {
|
|
5122
5102
|
"name": "entity.name.function.abl"
|
|
@@ -5127,7 +5107,7 @@
|
|
|
5127
5107
|
"match": "(?i)(:)(y(?:|ear-offset))\\b(?![#$\\-_%&])",
|
|
5128
5108
|
"captures": {
|
|
5129
5109
|
"1": {
|
|
5130
|
-
"name": "punctuation.
|
|
5110
|
+
"name": "punctuation.accessor.abl"
|
|
5131
5111
|
},
|
|
5132
5112
|
"2": {
|
|
5133
5113
|
"name": "entity.name.function.abl"
|
|
@@ -5196,7 +5176,7 @@
|
|
|
5196
5176
|
"begin": "(?i)(:)(a(?:ccept-changes|ccept-row-changes|dd-buffer|dd-calc-column?|dd-calc-colu?|dd-columns-from|dd-events-procedure?|dd-events-procedu?|dd-events-proce?|dd-fields-from|dd-first|dd-header-entry|dd-index-field|dd-last|dd-like-column?|dd-like-colu?|dd-like-field|dd-like-index|dd-new-field|dd-new-index|dd-parent-id-relation|dd-relation?|dd-relati?|dd-rela?|dd-schema-location|dd-source-buffer|dd-super-procedure?|dd-super-procedu?|dd-super-proce?|ppend-child|pply-callback|ttach-data-source|uthentication-failed))\\s*(?=\\()",
|
|
5197
5177
|
"beginCaptures": {
|
|
5198
5178
|
"1": {
|
|
5199
|
-
"name": "punctuation.
|
|
5179
|
+
"name": "punctuation.accessor.abl"
|
|
5200
5180
|
},
|
|
5201
5181
|
"2": {
|
|
5202
5182
|
"name": "support.function.abl"
|
|
@@ -5205,7 +5185,7 @@
|
|
|
5205
5185
|
"end": "(\\))",
|
|
5206
5186
|
"endCaptures": {
|
|
5207
5187
|
"1": {
|
|
5208
|
-
"name": "meta.brace.round.
|
|
5188
|
+
"name": "meta.brace.round.abl"
|
|
5209
5189
|
}
|
|
5210
5190
|
},
|
|
5211
5191
|
"patterns": [
|
|
@@ -5218,7 +5198,7 @@
|
|
|
5218
5198
|
"begin": "(?i)(:)(b(?:egin-event-group|uffer-compare?|uffer-compa?|uffer-copy|uffer-create|uffer-delete|uffer-export|uffer-export-fields|uffer-field|uffer-import|uffer-import-fields|uffer-release?|uffer-validate|uffer-value))\\s*(?=\\()",
|
|
5219
5199
|
"beginCaptures": {
|
|
5220
5200
|
"1": {
|
|
5221
|
-
"name": "punctuation.
|
|
5201
|
+
"name": "punctuation.accessor.abl"
|
|
5222
5202
|
},
|
|
5223
5203
|
"2": {
|
|
5224
5204
|
"name": "support.function.abl"
|
|
@@ -5227,7 +5207,7 @@
|
|
|
5227
5207
|
"end": "(\\))",
|
|
5228
5208
|
"endCaptures": {
|
|
5229
5209
|
"1": {
|
|
5230
|
-
"name": "meta.brace.round.
|
|
5210
|
+
"name": "meta.brace.round.abl"
|
|
5231
5211
|
}
|
|
5232
5212
|
},
|
|
5233
5213
|
"patterns": [
|
|
@@ -5240,7 +5220,7 @@
|
|
|
5240
5220
|
"begin": "(?i)(:)(c(?:ancel-break|ancel-requests|ancel-requests-after|lear|lear-appl-context|lear-log|lear-selection?|lear-selecti?|lear-sort-arrows?|lone-node|lose-log|onnect|onnected|onvert-to-offset?|onvert-to-offs|opy-dataset|opy-sax-attributes|opy-temp-table|reate-like|reate-like-sequential|reate-node|reate-node-namespace|reate-result-list-entry|urrent-query))\\s*(?=\\()",
|
|
5241
5221
|
"beginCaptures": {
|
|
5242
5222
|
"1": {
|
|
5243
|
-
"name": "punctuation.
|
|
5223
|
+
"name": "punctuation.accessor.abl"
|
|
5244
5224
|
},
|
|
5245
5225
|
"2": {
|
|
5246
5226
|
"name": "support.function.abl"
|
|
@@ -5249,7 +5229,7 @@
|
|
|
5249
5229
|
"end": "(\\))",
|
|
5250
5230
|
"endCaptures": {
|
|
5251
5231
|
"1": {
|
|
5252
|
-
"name": "meta.brace.round.
|
|
5232
|
+
"name": "meta.brace.round.abl"
|
|
5253
5233
|
}
|
|
5254
5234
|
},
|
|
5255
5235
|
"patterns": [
|
|
@@ -5262,7 +5242,7 @@
|
|
|
5262
5242
|
"begin": "(?i)(:)(d(?:ebug?|eclare-namespace|elete|elete-char|elete-current-row|elete-header-entry|elete-line|elete-node|elete-result-list-entry|elete-selected-rows??|eselect-focused-row|eselect-rows|eselect-selected-row|etach-data-source|isable|isable-connections|isable-dump-triggers|isable-load-triggers|isconnect?|isconne?|iscon|isplay-message|ump-logging-now))\\s*(?=\\()",
|
|
5263
5243
|
"beginCaptures": {
|
|
5264
5244
|
"1": {
|
|
5265
|
-
"name": "punctuation.
|
|
5245
|
+
"name": "punctuation.accessor.abl"
|
|
5266
5246
|
},
|
|
5267
5247
|
"2": {
|
|
5268
5248
|
"name": "support.function.abl"
|
|
@@ -5271,7 +5251,7 @@
|
|
|
5271
5251
|
"end": "(\\))",
|
|
5272
5252
|
"endCaptures": {
|
|
5273
5253
|
"1": {
|
|
5274
|
-
"name": "meta.brace.round.
|
|
5254
|
+
"name": "meta.brace.round.abl"
|
|
5275
5255
|
}
|
|
5276
5256
|
},
|
|
5277
5257
|
"patterns": [
|
|
@@ -5281,10 +5261,10 @@
|
|
|
5281
5261
|
]
|
|
5282
5262
|
},
|
|
5283
5263
|
"handle-methods-E": {
|
|
5284
|
-
"begin": "(?i)(:)(e(?:dit-clear|dit-copy|dit-cut|dit-paste|dit-undo|mpty-dataset|mpty-temp-table|nable|nable-connections|ncode-domain-access-code|ncrypt-audit-mac-key|nd-document|nd-element|nd-event-group|nd-file-drop|ntry|xport|xport-principal))\\s*(?=\\()",
|
|
5264
|
+
"begin": "(?i)(:)(e(?:dit-clear|dit-copy|dit-cut|dit-paste|dit-undo|mpty-dataset|mpty-temp-table|nable|nable-connections|ncode-domain-access-code|ncode-password|ncrypt-audit-mac-key|nd-document|nd-element|nd-event-group|nd-file-drop|ntry|xport|xport-principal))\\s*(?=\\()",
|
|
5285
5265
|
"beginCaptures": {
|
|
5286
5266
|
"1": {
|
|
5287
|
-
"name": "punctuation.
|
|
5267
|
+
"name": "punctuation.accessor.abl"
|
|
5288
5268
|
},
|
|
5289
5269
|
"2": {
|
|
5290
5270
|
"name": "support.function.abl"
|
|
@@ -5293,7 +5273,7 @@
|
|
|
5293
5273
|
"end": "(\\))",
|
|
5294
5274
|
"endCaptures": {
|
|
5295
5275
|
"1": {
|
|
5296
|
-
"name": "meta.brace.round.
|
|
5276
|
+
"name": "meta.brace.round.abl"
|
|
5297
5277
|
}
|
|
5298
5278
|
},
|
|
5299
5279
|
"patterns": [
|
|
@@ -5306,7 +5286,7 @@
|
|
|
5306
5286
|
"begin": "(?i)(:)(f(?:etch-selected-row|ill|ind-by-rowid|ind-current|ind-first|ind-last|ind-unique|irst-of))\\s*(?=\\()",
|
|
5307
5287
|
"beginCaptures": {
|
|
5308
5288
|
"1": {
|
|
5309
|
-
"name": "punctuation.
|
|
5289
|
+
"name": "punctuation.accessor.abl"
|
|
5310
5290
|
},
|
|
5311
5291
|
"2": {
|
|
5312
5292
|
"name": "support.function.abl"
|
|
@@ -5315,7 +5295,7 @@
|
|
|
5315
5295
|
"end": "(\\))",
|
|
5316
5296
|
"endCaptures": {
|
|
5317
5297
|
"1": {
|
|
5318
|
-
"name": "meta.brace.round.
|
|
5298
|
+
"name": "meta.brace.round.abl"
|
|
5319
5299
|
}
|
|
5320
5300
|
},
|
|
5321
5301
|
"patterns": [
|
|
@@ -5328,7 +5308,7 @@
|
|
|
5328
5308
|
"begin": "(?i)(:)(get-(?:attribute|attribute-node|binary-data|blue-value?|blue-val?|blue-v?|blue|browse-column?|browse-colu?|buffer-handle|bytes-available|callback-proc-context|callback-proc-name|cgi-list|cgi-long-value|cgi-value|changes|child|child-relation?|child-relati?|child-rela?|client|column|config-value|current?|curre?|dataset-buffer|document-element|dropped-file|dynamic|error-column|error-row|file-name|file-offset?|first?|green-value?|green-val?|green-v?|green|header-entry?|index-by-namespace-name|index-by-qname|iteration|last|localname-by-index|message|message-type|next|node|number|parent|prev|printers|property|qname-by-index|red-value?|red-val?|red-v?|red|relation?|relati?|rela?|repositioned-row|rgb-value?|rgb-val?|rgb-v?|rgb|row|safe-user|selected-widget?|selected-widg?|selected-wi?|selected-?|serialized|signature|socket-option|source-buffer|tab-item|text-height-chars?|text-height-cha?|text-height-c|text-height-pixels?|text-height-pixe?|text-height-pi?|text-width-chars?|text-width-cha?|text-width-c|text-width-pixels?|text-width-pixe?|text-width-pi?|top-buffer|type-by-index|type-by-namespace-name|type-by-qname|uri-by-index|value-by-index|value-by-namespace-name|value-by-qname|wait-state?|wait-sta?|wait-s?|wait))\\s*(?=\\()",
|
|
5329
5309
|
"beginCaptures": {
|
|
5330
5310
|
"1": {
|
|
5331
|
-
"name": "punctuation.
|
|
5311
|
+
"name": "punctuation.accessor.abl"
|
|
5332
5312
|
},
|
|
5333
5313
|
"2": {
|
|
5334
5314
|
"name": "support.function.abl"
|
|
@@ -5337,7 +5317,7 @@
|
|
|
5337
5317
|
"end": "(\\))",
|
|
5338
5318
|
"endCaptures": {
|
|
5339
5319
|
"1": {
|
|
5340
|
-
"name": "meta.brace.round.
|
|
5320
|
+
"name": "meta.brace.round.abl"
|
|
5341
5321
|
}
|
|
5342
5322
|
},
|
|
5343
5323
|
"patterns": [
|
|
@@ -5350,7 +5330,7 @@
|
|
|
5350
5330
|
"begin": "(?i)(:)(i(?:mport-node|mport-principal|ncrement-exclusive-id|ndex-information?|ndex-informati?|ndex-informa?|ndex-infor?|nitialize|nitialize-document-type|nitiate|nsert|nsert-attribute|nsert-backtab?|nsert-backt?|nsert-bac?|nsert-b|nsert-before|nsert-file|nsert-row|nsert-string|nsert-tab?|nsert-t|nvoke|s-row-selected|s-selected))\\s*(?=\\()",
|
|
5351
5331
|
"beginCaptures": {
|
|
5352
5332
|
"1": {
|
|
5353
|
-
"name": "punctuation.
|
|
5333
|
+
"name": "punctuation.accessor.abl"
|
|
5354
5334
|
},
|
|
5355
5335
|
"2": {
|
|
5356
5336
|
"name": "support.function.abl"
|
|
@@ -5359,7 +5339,7 @@
|
|
|
5359
5339
|
"end": "(\\))",
|
|
5360
5340
|
"endCaptures": {
|
|
5361
5341
|
"1": {
|
|
5362
|
-
"name": "meta.brace.round.
|
|
5342
|
+
"name": "meta.brace.round.abl"
|
|
5363
5343
|
}
|
|
5364
5344
|
},
|
|
5365
5345
|
"patterns": [
|
|
@@ -5372,7 +5352,7 @@
|
|
|
5372
5352
|
"begin": "(?i)(:)(l(?:ast-of|ist-property-names|oad|oad-domains|oad-icon|oad-image|oad-image-down|oad-image-insensitive|oad-image-up|oad-mouse-pointer?|oad-mouse-point?|oad-mouse-poi?|oad-mouse-p|oad-small-icon|ock-registration|og-audit-event|ogout|ongchar-to-node-value|ookup))\\s*(?=\\()",
|
|
5373
5353
|
"beginCaptures": {
|
|
5374
5354
|
"1": {
|
|
5375
|
-
"name": "punctuation.
|
|
5355
|
+
"name": "punctuation.accessor.abl"
|
|
5376
5356
|
},
|
|
5377
5357
|
"2": {
|
|
5378
5358
|
"name": "support.function.abl"
|
|
@@ -5381,7 +5361,7 @@
|
|
|
5381
5361
|
"end": "(\\))",
|
|
5382
5362
|
"endCaptures": {
|
|
5383
5363
|
"1": {
|
|
5384
|
-
"name": "meta.brace.round.
|
|
5364
|
+
"name": "meta.brace.round.abl"
|
|
5385
5365
|
}
|
|
5386
5366
|
},
|
|
5387
5367
|
"patterns": [
|
|
@@ -5394,7 +5374,7 @@
|
|
|
5394
5374
|
"begin": "(?i)(:)(m(?:ark-new|ark-row-state|emptr-to-node-value|erge-changes|erge-row-changes|ove-after-tab-item?|ove-after-tab-it?|ove-after-tab-?|ove-after-ta?|ove-after-?|ove-before-tab-item?|ove-before-tab-it?|ove-before-tab-?|ove-before-ta?|ove-before-?|ove-befor|ove-column?|ove-colu?|ove-to-bottom?|ove-to-bott?|ove-to-bo?|ove-to-eof|ove-to-top?|ove-to-t))\\s*(?=\\()",
|
|
5395
5375
|
"beginCaptures": {
|
|
5396
5376
|
"1": {
|
|
5397
|
-
"name": "punctuation.
|
|
5377
|
+
"name": "punctuation.accessor.abl"
|
|
5398
5378
|
},
|
|
5399
5379
|
"2": {
|
|
5400
5380
|
"name": "support.function.abl"
|
|
@@ -5403,7 +5383,7 @@
|
|
|
5403
5383
|
"end": "(\\))",
|
|
5404
5384
|
"endCaptures": {
|
|
5405
5385
|
"1": {
|
|
5406
|
-
"name": "meta.brace.round.
|
|
5386
|
+
"name": "meta.brace.round.abl"
|
|
5407
5387
|
}
|
|
5408
5388
|
},
|
|
5409
5389
|
"patterns": [
|
|
@@ -5416,7 +5396,7 @@
|
|
|
5416
5396
|
"begin": "(?i)(:)(no(?:de-value-to-longchar|de-value-to-memptr|rmalize))\\s*(?=\\()",
|
|
5417
5397
|
"beginCaptures": {
|
|
5418
5398
|
"1": {
|
|
5419
|
-
"name": "punctuation.
|
|
5399
|
+
"name": "punctuation.accessor.abl"
|
|
5420
5400
|
},
|
|
5421
5401
|
"2": {
|
|
5422
5402
|
"name": "support.function.abl"
|
|
@@ -5425,7 +5405,7 @@
|
|
|
5425
5405
|
"end": "(\\))",
|
|
5426
5406
|
"endCaptures": {
|
|
5427
5407
|
"1": {
|
|
5428
|
-
"name": "meta.brace.round.
|
|
5408
|
+
"name": "meta.brace.round.abl"
|
|
5429
5409
|
}
|
|
5430
5410
|
},
|
|
5431
5411
|
"patterns": [
|
|
@@ -5438,7 +5418,7 @@
|
|
|
5438
5418
|
"begin": "(?i)(:)(query-(?:close|open|prepare))\\s*(?=\\()",
|
|
5439
5419
|
"beginCaptures": {
|
|
5440
5420
|
"1": {
|
|
5441
|
-
"name": "punctuation.
|
|
5421
|
+
"name": "punctuation.accessor.abl"
|
|
5442
5422
|
},
|
|
5443
5423
|
"2": {
|
|
5444
5424
|
"name": "support.function.abl"
|
|
@@ -5447,7 +5427,7 @@
|
|
|
5447
5427
|
"end": "(\\))",
|
|
5448
5428
|
"endCaptures": {
|
|
5449
5429
|
"1": {
|
|
5450
|
-
"name": "meta.brace.round.
|
|
5430
|
+
"name": "meta.brace.round.abl"
|
|
5451
5431
|
}
|
|
5452
5432
|
},
|
|
5453
5433
|
"patterns": [
|
|
@@ -5460,7 +5440,7 @@
|
|
|
5460
5440
|
"begin": "(?i)(:)(r(?:aw-transfer|ead|ead-file|ead-json|ead-xml|ead-xmlschema|efresh|efresh-audit-policy|egister-domain|eject-changes|eject-row-changes|emove-attribute|emove-child|emove-events-procedure?|emove-events-procedu?|emove-events-proce?|emove-super-procedure?|emove-super-procedu?|emove-super-proce?|eplace|eplace-child|eplace-selection-text|eposition-to-row|eposition-to-rowid|eset))\\s*(?=\\()",
|
|
5461
5441
|
"beginCaptures": {
|
|
5462
5442
|
"1": {
|
|
5463
|
-
"name": "punctuation.
|
|
5443
|
+
"name": "punctuation.accessor.abl"
|
|
5464
5444
|
},
|
|
5465
5445
|
"2": {
|
|
5466
5446
|
"name": "support.function.abl"
|
|
@@ -5469,7 +5449,7 @@
|
|
|
5469
5449
|
"end": "(\\))",
|
|
5470
5450
|
"endCaptures": {
|
|
5471
5451
|
"1": {
|
|
5472
|
-
"name": "meta.brace.round.
|
|
5452
|
+
"name": "meta.brace.round.abl"
|
|
5473
5453
|
}
|
|
5474
5454
|
},
|
|
5475
5455
|
"patterns": [
|
|
@@ -5482,7 +5462,7 @@
|
|
|
5482
5462
|
"begin": "(?i)(:)(s(?:ave|ave-file|ave-row-changes|ax-parse|ax-parse-first|ax-parse-next|croll-to-current-row|croll-to-item?|croll-to-it?|croll-to-selected-row|eal|earch|elect-all|elect-focused-row|elect-next-row|elect-prev-row|elect-row|erialize-row|et-actor|et-appl-context|et-attribute|et-attribute-node|et-blue-value?|et-blue-val?|et-blue-v?|et-blue|et-break|et-buffers|et-callback|et-callback-procedure|et-client|et-commit|et-connect-procedure|et-dynamic|et-green-value?|et-green-val?|et-green-v?|et-green|et-input-source|et-must-understand|et-node|et-numeric-format?|et-numeric-form|et-output-destination|et-parameter|et-property|et-read-response-procedure|et-red-value?|et-red-val?|et-red-v?|et-red|et-repositioned-row|et-rgb-value?|et-rgb-val?|et-rgb-v?|et-rgb|et-role|et-rollback|et-safe-user|et-selection|et-serialized|et-socket-option|et-sort-arrow|et-wait-state?|et-wait-sta?|et-wait-s?|et-wait|tart-document|tart-element|top-parsing|tring-value|ynchronize))\\s*(?=\\()",
|
|
5483
5463
|
"beginCaptures": {
|
|
5484
5464
|
"1": {
|
|
5485
|
-
"name": "punctuation.
|
|
5465
|
+
"name": "punctuation.accessor.abl"
|
|
5486
5466
|
},
|
|
5487
5467
|
"2": {
|
|
5488
5468
|
"name": "support.function.abl"
|
|
@@ -5491,7 +5471,7 @@
|
|
|
5491
5471
|
"end": "(\\))",
|
|
5492
5472
|
"endCaptures": {
|
|
5493
5473
|
"1": {
|
|
5494
|
-
"name": "meta.brace.round.
|
|
5474
|
+
"name": "meta.brace.round.abl"
|
|
5495
5475
|
}
|
|
5496
5476
|
},
|
|
5497
5477
|
"patterns": [
|
|
@@ -5504,7 +5484,7 @@
|
|
|
5504
5484
|
"begin": "(?i)(:)(te(?:mp-table-prepare?|nant-id|nant-name))\\s*(?=\\()",
|
|
5505
5485
|
"beginCaptures": {
|
|
5506
5486
|
"1": {
|
|
5507
|
-
"name": "punctuation.
|
|
5487
|
+
"name": "punctuation.accessor.abl"
|
|
5508
5488
|
},
|
|
5509
5489
|
"2": {
|
|
5510
5490
|
"name": "support.function.abl"
|
|
@@ -5513,7 +5493,7 @@
|
|
|
5513
5493
|
"end": "(\\))",
|
|
5514
5494
|
"endCaptures": {
|
|
5515
5495
|
"1": {
|
|
5516
|
-
"name": "meta.brace.round.
|
|
5496
|
+
"name": "meta.brace.round.abl"
|
|
5517
5497
|
}
|
|
5518
5498
|
},
|
|
5519
5499
|
"patterns": [
|
|
@@ -5526,7 +5506,7 @@
|
|
|
5526
5506
|
"begin": "(?i)(:)(u(?:pdate-attribute|rl-decode|rl-encode|ser-data))\\s*(?=\\()",
|
|
5527
5507
|
"beginCaptures": {
|
|
5528
5508
|
"1": {
|
|
5529
|
-
"name": "punctuation.
|
|
5509
|
+
"name": "punctuation.accessor.abl"
|
|
5530
5510
|
},
|
|
5531
5511
|
"2": {
|
|
5532
5512
|
"name": "support.function.abl"
|
|
@@ -5535,7 +5515,7 @@
|
|
|
5535
5515
|
"end": "(\\))",
|
|
5536
5516
|
"endCaptures": {
|
|
5537
5517
|
"1": {
|
|
5538
|
-
"name": "meta.brace.round.
|
|
5518
|
+
"name": "meta.brace.round.abl"
|
|
5539
5519
|
}
|
|
5540
5520
|
},
|
|
5541
5521
|
"patterns": [
|
|
@@ -5545,10 +5525,10 @@
|
|
|
5545
5525
|
]
|
|
5546
5526
|
},
|
|
5547
5527
|
"handle-methods-V": {
|
|
5548
|
-
"begin": "(?i)(:)(validate(?:|-domain-access-code|-seal))\\s*(?=\\()",
|
|
5528
|
+
"begin": "(?i)(:)(validate(?:|-domain-access-code|-password|-seal))\\s*(?=\\()",
|
|
5549
5529
|
"beginCaptures": {
|
|
5550
5530
|
"1": {
|
|
5551
|
-
"name": "punctuation.
|
|
5531
|
+
"name": "punctuation.accessor.abl"
|
|
5552
5532
|
},
|
|
5553
5533
|
"2": {
|
|
5554
5534
|
"name": "support.function.abl"
|
|
@@ -5557,7 +5537,7 @@
|
|
|
5557
5537
|
"end": "(\\))",
|
|
5558
5538
|
"endCaptures": {
|
|
5559
5539
|
"1": {
|
|
5560
|
-
"name": "meta.brace.round.
|
|
5540
|
+
"name": "meta.brace.round.abl"
|
|
5561
5541
|
}
|
|
5562
5542
|
},
|
|
5563
5543
|
"patterns": [
|
|
@@ -5570,7 +5550,7 @@
|
|
|
5570
5550
|
"begin": "(?i)(:)(write(?:|-cdata|-characters|-comment|-data|-data-element|-empty-element|-entity-ref|-external-dtd|-fragment|-json|-message|-processing-instruction|-xml|-xmlschema))\\s*(?=\\()",
|
|
5571
5551
|
"beginCaptures": {
|
|
5572
5552
|
"1": {
|
|
5573
|
-
"name": "punctuation.
|
|
5553
|
+
"name": "punctuation.accessor.abl"
|
|
5574
5554
|
},
|
|
5575
5555
|
"2": {
|
|
5576
5556
|
"name": "support.function.abl"
|
|
@@ -5579,7 +5559,7 @@
|
|
|
5579
5559
|
"end": "(\\))",
|
|
5580
5560
|
"endCaptures": {
|
|
5581
5561
|
"1": {
|
|
5582
|
-
"name": "meta.brace.round.
|
|
5562
|
+
"name": "meta.brace.round.abl"
|
|
5583
5563
|
}
|
|
5584
5564
|
},
|
|
5585
5565
|
"patterns": [
|
|
@@ -5804,7 +5784,7 @@
|
|
|
5804
5784
|
"end": "(\\))",
|
|
5805
5785
|
"endCaptures": {
|
|
5806
5786
|
"1": {
|
|
5807
|
-
"name": "meta.brace.round.
|
|
5787
|
+
"name": "meta.brace.round.abl"
|
|
5808
5788
|
}
|
|
5809
5789
|
},
|
|
5810
5790
|
"patterns": [
|
|
@@ -5823,7 +5803,7 @@
|
|
|
5823
5803
|
"end": "(\\))",
|
|
5824
5804
|
"endCaptures": {
|
|
5825
5805
|
"1": {
|
|
5826
|
-
"name": "meta.brace.round.
|
|
5806
|
+
"name": "meta.brace.round.abl"
|
|
5827
5807
|
}
|
|
5828
5808
|
},
|
|
5829
5809
|
"patterns": [
|
|
@@ -5842,7 +5822,7 @@
|
|
|
5842
5822
|
"end": "(\\))",
|
|
5843
5823
|
"endCaptures": {
|
|
5844
5824
|
"1": {
|
|
5845
|
-
"name": "meta.brace.round.
|
|
5825
|
+
"name": "meta.brace.round.abl"
|
|
5846
5826
|
}
|
|
5847
5827
|
},
|
|
5848
5828
|
"patterns": [
|
|
@@ -5861,7 +5841,7 @@
|
|
|
5861
5841
|
"end": "(\\))",
|
|
5862
5842
|
"endCaptures": {
|
|
5863
5843
|
"1": {
|
|
5864
|
-
"name": "meta.brace.round.
|
|
5844
|
+
"name": "meta.brace.round.abl"
|
|
5865
5845
|
}
|
|
5866
5846
|
},
|
|
5867
5847
|
"patterns": [
|
|
@@ -5880,7 +5860,7 @@
|
|
|
5880
5860
|
"end": "(\\))",
|
|
5881
5861
|
"endCaptures": {
|
|
5882
5862
|
"1": {
|
|
5883
|
-
"name": "meta.brace.round.
|
|
5863
|
+
"name": "meta.brace.round.abl"
|
|
5884
5864
|
}
|
|
5885
5865
|
},
|
|
5886
5866
|
"patterns": [
|
|
@@ -5899,7 +5879,7 @@
|
|
|
5899
5879
|
"end": "(\\))",
|
|
5900
5880
|
"endCaptures": {
|
|
5901
5881
|
"1": {
|
|
5902
|
-
"name": "meta.brace.round.
|
|
5882
|
+
"name": "meta.brace.round.abl"
|
|
5903
5883
|
}
|
|
5904
5884
|
},
|
|
5905
5885
|
"patterns": [
|
|
@@ -5909,7 +5889,7 @@
|
|
|
5909
5889
|
]
|
|
5910
5890
|
},
|
|
5911
5891
|
"abl-functions-G": {
|
|
5912
|
-
"begin": "(?i)\\s*(g(?:ateways?|enerate-pbe-key|enerate-pbe-salt|enerate-random-key|enerate-uuid|et-bits|et-byte|et-byte-order|et-bytes|et-class|et-codepages?|et-codepages?|et-collations??|et-collation?|et-collati?|et-colla?|et-db-client|et-double|et-effective-tenant-id|et-effective-tenant-name|et-float|et-int64|et-long|et-pointer-value|et-short|et-size|et-string|et-unsigned-long|et-unsigned-short|o-pending?|o-pendi?|uid))\\s*(?=\\()",
|
|
5892
|
+
"begin": "(?i)\\s*(g(?:ateways?|enerate-password-hash|enerate-pbe-key|enerate-pbe-salt|enerate-random-key|enerate-salt|enerate-uuid|et-bits|et-byte|et-byte-order|et-bytes|et-class|et-codepages?|et-codepages?|et-collations??|et-collation?|et-collati?|et-colla?|et-db-client|et-double|et-effective-tenant-id|et-effective-tenant-name|et-float|et-int64|et-long|et-pointer-value|et-short|et-size|et-string|et-unsigned-long|et-unsigned-short|o-pending?|o-pendi?|uid))\\s*(?=\\()",
|
|
5913
5893
|
"beginCaptures": {
|
|
5914
5894
|
"1": {
|
|
5915
5895
|
"name": "support.function.abl"
|
|
@@ -5918,7 +5898,7 @@
|
|
|
5918
5898
|
"end": "(\\))",
|
|
5919
5899
|
"endCaptures": {
|
|
5920
5900
|
"1": {
|
|
5921
|
-
"name": "meta.brace.round.
|
|
5901
|
+
"name": "meta.brace.round.abl"
|
|
5922
5902
|
}
|
|
5923
5903
|
},
|
|
5924
5904
|
"patterns": [
|
|
@@ -5937,7 +5917,7 @@
|
|
|
5937
5917
|
"end": "(\\))",
|
|
5938
5918
|
"endCaptures": {
|
|
5939
5919
|
"1": {
|
|
5940
|
-
"name": "meta.brace.round.
|
|
5920
|
+
"name": "meta.brace.round.abl"
|
|
5941
5921
|
}
|
|
5942
5922
|
},
|
|
5943
5923
|
"patterns": [
|
|
@@ -5956,7 +5936,7 @@
|
|
|
5956
5936
|
"end": "(\\))",
|
|
5957
5937
|
"endCaptures": {
|
|
5958
5938
|
"1": {
|
|
5959
|
-
"name": "meta.brace.round.
|
|
5939
|
+
"name": "meta.brace.round.abl"
|
|
5960
5940
|
}
|
|
5961
5941
|
},
|
|
5962
5942
|
"patterns": [
|
|
@@ -5975,7 +5955,7 @@
|
|
|
5975
5955
|
"end": "(\\))",
|
|
5976
5956
|
"endCaptures": {
|
|
5977
5957
|
"1": {
|
|
5978
|
-
"name": "meta.brace.round.
|
|
5958
|
+
"name": "meta.brace.round.abl"
|
|
5979
5959
|
}
|
|
5980
5960
|
},
|
|
5981
5961
|
"patterns": [
|
|
@@ -5994,7 +5974,7 @@
|
|
|
5994
5974
|
"end": "(\\))",
|
|
5995
5975
|
"endCaptures": {
|
|
5996
5976
|
"1": {
|
|
5997
|
-
"name": "meta.brace.round.
|
|
5977
|
+
"name": "meta.brace.round.abl"
|
|
5998
5978
|
}
|
|
5999
5979
|
},
|
|
6000
5980
|
"patterns": [
|
|
@@ -6013,7 +5993,7 @@
|
|
|
6013
5993
|
"end": "(\\))",
|
|
6014
5994
|
"endCaptures": {
|
|
6015
5995
|
"1": {
|
|
6016
|
-
"name": "meta.brace.round.
|
|
5996
|
+
"name": "meta.brace.round.abl"
|
|
6017
5997
|
}
|
|
6018
5998
|
},
|
|
6019
5999
|
"patterns": [
|
|
@@ -6032,7 +6012,7 @@
|
|
|
6032
6012
|
"end": "(\\))",
|
|
6033
6013
|
"endCaptures": {
|
|
6034
6014
|
"1": {
|
|
6035
|
-
"name": "meta.brace.round.
|
|
6015
|
+
"name": "meta.brace.round.abl"
|
|
6036
6016
|
}
|
|
6037
6017
|
},
|
|
6038
6018
|
"patterns": [
|
|
@@ -6051,7 +6031,7 @@
|
|
|
6051
6031
|
"end": "(\\))",
|
|
6052
6032
|
"endCaptures": {
|
|
6053
6033
|
"1": {
|
|
6054
|
-
"name": "meta.brace.round.
|
|
6034
|
+
"name": "meta.brace.round.abl"
|
|
6055
6035
|
}
|
|
6056
6036
|
},
|
|
6057
6037
|
"patterns": [
|
|
@@ -6070,7 +6050,7 @@
|
|
|
6070
6050
|
"end": "(\\))",
|
|
6071
6051
|
"endCaptures": {
|
|
6072
6052
|
"1": {
|
|
6073
|
-
"name": "meta.brace.round.
|
|
6053
|
+
"name": "meta.brace.round.abl"
|
|
6074
6054
|
}
|
|
6075
6055
|
},
|
|
6076
6056
|
"patterns": [
|
|
@@ -6089,7 +6069,7 @@
|
|
|
6089
6069
|
"end": "(\\))",
|
|
6090
6070
|
"endCaptures": {
|
|
6091
6071
|
"1": {
|
|
6092
|
-
"name": "meta.brace.round.
|
|
6072
|
+
"name": "meta.brace.round.abl"
|
|
6093
6073
|
}
|
|
6094
6074
|
},
|
|
6095
6075
|
"patterns": [
|
|
@@ -6108,7 +6088,7 @@
|
|
|
6108
6088
|
"end": "(\\))",
|
|
6109
6089
|
"endCaptures": {
|
|
6110
6090
|
"1": {
|
|
6111
|
-
"name": "meta.brace.round.
|
|
6091
|
+
"name": "meta.brace.round.abl"
|
|
6112
6092
|
}
|
|
6113
6093
|
},
|
|
6114
6094
|
"patterns": [
|
|
@@ -6127,7 +6107,7 @@
|
|
|
6127
6107
|
"end": "(\\))",
|
|
6128
6108
|
"endCaptures": {
|
|
6129
6109
|
"1": {
|
|
6130
|
-
"name": "meta.brace.round.
|
|
6110
|
+
"name": "meta.brace.round.abl"
|
|
6131
6111
|
}
|
|
6132
6112
|
},
|
|
6133
6113
|
"patterns": [
|
|
@@ -6146,7 +6126,7 @@
|
|
|
6146
6126
|
"end": "(\\))",
|
|
6147
6127
|
"endCaptures": {
|
|
6148
6128
|
"1": {
|
|
6149
|
-
"name": "meta.brace.round.
|
|
6129
|
+
"name": "meta.brace.round.abl"
|
|
6150
6130
|
}
|
|
6151
6131
|
},
|
|
6152
6132
|
"patterns": [
|
|
@@ -6165,7 +6145,7 @@
|
|
|
6165
6145
|
"end": "(\\))",
|
|
6166
6146
|
"endCaptures": {
|
|
6167
6147
|
"1": {
|
|
6168
|
-
"name": "meta.brace.round.
|
|
6148
|
+
"name": "meta.brace.round.abl"
|
|
6169
6149
|
}
|
|
6170
6150
|
},
|
|
6171
6151
|
"patterns": [
|
|
@@ -6184,7 +6164,7 @@
|
|
|
6184
6164
|
"end": "(\\))",
|
|
6185
6165
|
"endCaptures": {
|
|
6186
6166
|
"1": {
|
|
6187
|
-
"name": "meta.brace.round.
|
|
6167
|
+
"name": "meta.brace.round.abl"
|
|
6188
6168
|
}
|
|
6189
6169
|
},
|
|
6190
6170
|
"patterns": [
|
|
@@ -6203,7 +6183,7 @@
|
|
|
6203
6183
|
"end": "(\\))",
|
|
6204
6184
|
"endCaptures": {
|
|
6205
6185
|
"1": {
|
|
6206
|
-
"name": "meta.brace.round.
|
|
6186
|
+
"name": "meta.brace.round.abl"
|
|
6207
6187
|
}
|
|
6208
6188
|
},
|
|
6209
6189
|
"patterns": [
|
|
@@ -6222,7 +6202,7 @@
|
|
|
6222
6202
|
"end": "(\\))",
|
|
6223
6203
|
"endCaptures": {
|
|
6224
6204
|
"1": {
|
|
6225
|
-
"name": "meta.brace.round.
|
|
6205
|
+
"name": "meta.brace.round.abl"
|
|
6226
6206
|
}
|
|
6227
6207
|
},
|
|
6228
6208
|
"patterns": [
|
|
@@ -6234,4 +6214,4 @@
|
|
|
6234
6214
|
},
|
|
6235
6215
|
"scopeName": "source.abl",
|
|
6236
6216
|
"uuid": "075bb86e-03ea-4fea-bac0-e11b9dc73e03"
|
|
6237
|
-
}
|
|
6217
|
+
}
|