abl-tmlanguage 1.3.30 → 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 +5 -6
- package/abl.tmLanguage.json +123 -124
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -68,13 +68,13 @@ The ABL-specific scopes produced by the ABL grammar listed in the table below. T
|
|
|
68
68
|
|
|
69
69
|
| Scope Name | Used for/by |
|
|
70
70
|
| ------------- | ------------- |
|
|
71
|
-
|comment.block.
|
|
71
|
+
|comment.block.abl | Everything between `/*` and `*/` |
|
|
72
72
|
|comment.line.double-slash.abl | Everything in a `//` comment, incl. slashes |
|
|
73
73
|
|comment.preprocessor.analyze-suspend.abl | `&analyze-suspend`, `&analyze-resume` |
|
|
74
74
|
|constant.character.escape.abl | `~` and the next char |
|
|
75
75
|
|constant.language.abl | `true`, `false`, `yes`, `no`, `?` (unknown value) |
|
|
76
|
-
|constant.language.
|
|
77
|
-
|constant.numeric.
|
|
76
|
+
|constant.language.abl | `99/99/9999` (or similar) when used as a format clause |
|
|
77
|
+
|constant.numeric.abl | `0x00`-`0xFF`, `0`-`9`, scientific notation |
|
|
78
78
|
|entity.name.function.abl | Method call, property call, method name, property name, handle attributes, handle methods, event names |
|
|
79
79
|
|entity.name.function.preprocessor.abl | Preprocessor names, including built-ins like `opsys` and `process-architecture` |
|
|
80
80
|
|entity.name.include.abl | Include file names |
|
|
@@ -87,7 +87,7 @@ The ABL-specific scopes produced by the ABL grammar listed in the table below. T
|
|
|
87
87
|
|entity.other.attribute-name.abl | Annotation attribute names |
|
|
88
88
|
|keyword.control.directive.conditional.abl | `&if` , `&else`, `&elseif`, `&end` |
|
|
89
89
|
|keyword.control.directive.define.abl | `&scoped-define`, `&global-define`, `&undefine` |
|
|
90
|
-
|keyword.operator.
|
|
90
|
+
|keyword.operator.abl | `contains`, `begins`, `matches`, `eq`, `le`, `lt`, `ge`, `gt`, `ne`, `<=`, `<>`, `>=`, `=`, `+`, `-`, `/`, `<`, `>`, `*`, `+=`, `-=`, `/=`, `*=`, `?:` |
|
|
91
91
|
|keyword.other.abl | Any ABL keyword (incl those covered by other scopes like `support.function.abl` and `entity.name.function.abl`) |
|
|
92
92
|
|punctuation.accessor.abl | `:` when used for method, property and attribute access. `::` when used to reference buffer field names or dataset buffer names|
|
|
93
93
|
|punctuation.definition.bracket.square.begin.abl | `[` used for array arguments |
|
|
@@ -123,7 +123,7 @@ There are also a number of 'meta' scopes that usually cover multiple other scope
|
|
|
123
123
|
|meta.argument.abl | Unnamed arguments like `{1}` |
|
|
124
124
|
|meta.array.literal.abl | Literal values in an array |
|
|
125
125
|
|meta.block.abl | A block statement like `do`, `repeat` and ` finally |
|
|
126
|
-
|meta.brace.round.
|
|
126
|
+
|meta.brace.round.abl | `(` and `)` |
|
|
127
127
|
|meta.declaration.annotation.abl | An annotation from the `@` to the `.` |
|
|
128
128
|
|meta.define.abl | An entire `define` statement |
|
|
129
129
|
|meta.define.class.abl | A class definition, from the `class` keyword to its closing `:` |
|
|
@@ -136,7 +136,6 @@ There are also a number of 'meta' scopes that usually cover multiple other scope
|
|
|
136
136
|
|meta.define-type.implements.abl | The type names that a type implements and/or inherits |
|
|
137
137
|
|meta.function.arguments.abl | Captures what's between ( and ) when calling a function, excluding the braces |
|
|
138
138
|
|meta.function-call.abl | The name of an ABL function, including `get-class`, `type-of` and `cast` |
|
|
139
|
-
|meta.function.parameters | Parameter definitions |
|
|
140
139
|
|meta.generic.abl | Generic type names |
|
|
141
140
|
|meta.include.abl | Include file references, from `{` to `}` |
|
|
142
141
|
|meta.include.argument.abl | Include argument references like `&arg` and `&arg=` |
|
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"
|
|
@@ -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
|
},
|
|
@@ -2739,7 +2737,7 @@
|
|
|
2739
2737
|
"name": "support.function.abl"
|
|
2740
2738
|
},
|
|
2741
2739
|
"2": {
|
|
2742
|
-
"name": "meta.brace.round.
|
|
2740
|
+
"name": "meta.brace.round.abl"
|
|
2743
2741
|
}
|
|
2744
2742
|
},
|
|
2745
2743
|
"end": "(?i)\\b(?=\\)|where|no-lock|(share(?:-lock|-loc|-lo|-l|-)?)|using|(no-prefe(?:tch|tc|t)?)|no-wait)\\s*",
|
|
@@ -2813,10 +2811,14 @@
|
|
|
2813
2811
|
"name": "keyword.other.abl"
|
|
2814
2812
|
}
|
|
2815
2813
|
},
|
|
2816
|
-
"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",
|
|
2817
2816
|
"endCaptures": {
|
|
2818
2817
|
"2": {
|
|
2819
2818
|
"name": "variable.other.abl"
|
|
2819
|
+
},
|
|
2820
|
+
"3": {
|
|
2821
|
+
"name": "keyword.operator.abl"
|
|
2820
2822
|
}
|
|
2821
2823
|
},
|
|
2822
2824
|
"patterns": [
|
|
@@ -2968,7 +2970,7 @@
|
|
|
2968
2970
|
"name": "variable.other.abl"
|
|
2969
2971
|
},
|
|
2970
2972
|
"2": {
|
|
2971
|
-
"name": "keyword.operator.
|
|
2973
|
+
"name": "keyword.operator.abl"
|
|
2972
2974
|
}
|
|
2973
2975
|
},
|
|
2974
2976
|
"end": "(?i)(?=(transact(?:ion|io|i)?)|on|:|with|while)",
|
|
@@ -3002,7 +3004,7 @@
|
|
|
3002
3004
|
"begin": "(?i)((\\?:)|(:))(unsubscribe|subscribe)\\s*(\\()",
|
|
3003
3005
|
"beginCaptures": {
|
|
3004
3006
|
"2": {
|
|
3005
|
-
"name": "keyword.operator.
|
|
3007
|
+
"name": "keyword.operator.abl"
|
|
3006
3008
|
},
|
|
3007
3009
|
"3": {
|
|
3008
3010
|
"name": "punctuation.accessor.abl"
|
|
@@ -3011,13 +3013,13 @@
|
|
|
3011
3013
|
"name": "entity.name.function.abl"
|
|
3012
3014
|
},
|
|
3013
3015
|
"5": {
|
|
3014
|
-
"name": "meta.brace.round.
|
|
3016
|
+
"name": "meta.brace.round.abl"
|
|
3015
3017
|
}
|
|
3016
3018
|
},
|
|
3017
3019
|
"end": "(\\))",
|
|
3018
3020
|
"endCaptures": {
|
|
3019
3021
|
"1": {
|
|
3020
|
-
"name": "meta.brace.round.
|
|
3022
|
+
"name": "meta.brace.round.abl"
|
|
3021
3023
|
}
|
|
3022
3024
|
},
|
|
3023
3025
|
"patterns": [
|
|
@@ -3098,7 +3100,7 @@
|
|
|
3098
3100
|
},
|
|
3099
3101
|
"for-record": {
|
|
3100
3102
|
"comment": "this regex just tries to capture a bunch (6) of tables",
|
|
3101
|
-
"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]*)?",
|
|
3102
3104
|
"captures": {
|
|
3103
3105
|
"1": {
|
|
3104
3106
|
"name": "keyword.other.abl"
|
|
@@ -3492,7 +3494,7 @@
|
|
|
3492
3494
|
"end": "(\\))",
|
|
3493
3495
|
"endCaptures": {
|
|
3494
3496
|
"1": {
|
|
3495
|
-
"name": "meta.brace.round.
|
|
3497
|
+
"name": "meta.brace.round.abl"
|
|
3496
3498
|
}
|
|
3497
3499
|
}
|
|
3498
3500
|
},
|
|
@@ -3571,18 +3573,17 @@
|
|
|
3571
3573
|
]
|
|
3572
3574
|
},
|
|
3573
3575
|
"function-arguments": {
|
|
3574
|
-
"name": "meta.function.arguments.abl",
|
|
3575
3576
|
"comment": "Captures what's between ( and ) when calling a function, excluding the braces ",
|
|
3576
3577
|
"begin": "(?=\\()",
|
|
3577
3578
|
"beginCaptures": {
|
|
3578
3579
|
"1": {
|
|
3579
|
-
"name": "meta.brace.round.
|
|
3580
|
+
"name": "meta.brace.round.abl"
|
|
3580
3581
|
}
|
|
3581
3582
|
},
|
|
3582
3583
|
"end": "(?=\\))",
|
|
3583
3584
|
"endCaptures": {
|
|
3584
3585
|
"1": {
|
|
3585
|
-
"name": "meta.brace.round.
|
|
3586
|
+
"name": "meta.brace.round.abl"
|
|
3586
3587
|
}
|
|
3587
3588
|
},
|
|
3588
3589
|
"patterns": [
|
|
@@ -3595,7 +3596,6 @@
|
|
|
3595
3596
|
]
|
|
3596
3597
|
},
|
|
3597
3598
|
"function-arguments-no-parens": {
|
|
3598
|
-
"name": "meta.function.arguments.abl",
|
|
3599
3599
|
"patterns": [
|
|
3600
3600
|
{
|
|
3601
3601
|
"match": "(?i)\\s*((input-o(?:utput|utpu|utp|u)?)|output|input|table-handle|dataset-handle|append|by-value|by-reference|bind)\\b(?![#$\\-_%&])",
|
|
@@ -3724,7 +3724,7 @@
|
|
|
3724
3724
|
"match": "((\\?:)|(:))([a-zA-Z_][a-zA-Z0-9_#$\\-%&]*)\\b",
|
|
3725
3725
|
"captures": {
|
|
3726
3726
|
"2": {
|
|
3727
|
-
"name": "keyword.operator.
|
|
3727
|
+
"name": "keyword.operator.abl"
|
|
3728
3728
|
},
|
|
3729
3729
|
"3": {
|
|
3730
3730
|
"name": "punctuation.accessor.abl"
|
|
@@ -3759,7 +3759,7 @@
|
|
|
3759
3759
|
"name": "keyword.other.abl"
|
|
3760
3760
|
},
|
|
3761
3761
|
"2": {
|
|
3762
|
-
"name": "constant.numeric.
|
|
3762
|
+
"name": "constant.numeric.abl"
|
|
3763
3763
|
}
|
|
3764
3764
|
}
|
|
3765
3765
|
},
|
|
@@ -3770,7 +3770,7 @@
|
|
|
3770
3770
|
"name": "keyword.other.abl"
|
|
3771
3771
|
},
|
|
3772
3772
|
"2": {
|
|
3773
|
-
"name": "constant.numeric.
|
|
3773
|
+
"name": "constant.numeric.abl"
|
|
3774
3774
|
}
|
|
3775
3775
|
}
|
|
3776
3776
|
},
|
|
@@ -3781,7 +3781,7 @@
|
|
|
3781
3781
|
"name": "keyword.other.abl"
|
|
3782
3782
|
},
|
|
3783
3783
|
"2": {
|
|
3784
|
-
"name": "constant.numeric.
|
|
3784
|
+
"name": "constant.numeric.abl"
|
|
3785
3785
|
}
|
|
3786
3786
|
}
|
|
3787
3787
|
},
|
|
@@ -3973,7 +3973,7 @@
|
|
|
3973
3973
|
"name": "support.other.argument.abl"
|
|
3974
3974
|
},
|
|
3975
3975
|
"2": {
|
|
3976
|
-
"name": "keyword.operator.
|
|
3976
|
+
"name": "keyword.operator.abl"
|
|
3977
3977
|
}
|
|
3978
3978
|
}
|
|
3979
3979
|
},
|
|
@@ -4040,18 +4040,17 @@
|
|
|
4040
4040
|
},
|
|
4041
4041
|
"singlelinecomment": {
|
|
4042
4042
|
"match": "//.*$",
|
|
4043
|
-
"comment": "Was comment.source.abl but should be changed, per https://macromates.com/manual/en/language_grammars",
|
|
4044
4043
|
"name": "comment.line.double-slash.abl"
|
|
4045
4044
|
},
|
|
4046
4045
|
"multilinecomment": {
|
|
4047
4046
|
"begin": "/\\*",
|
|
4048
4047
|
"end": "\\*/",
|
|
4049
4048
|
"contentName": "comment",
|
|
4050
|
-
"name": "comment.block.
|
|
4049
|
+
"name": "comment.block.abl",
|
|
4051
4050
|
"patterns": [
|
|
4052
4051
|
{
|
|
4053
4052
|
"include": "#multilinecomment",
|
|
4054
|
-
"name": "comment.block.
|
|
4053
|
+
"name": "comment.block.abl"
|
|
4055
4054
|
}
|
|
4056
4055
|
]
|
|
4057
4056
|
},
|
|
@@ -4134,7 +4133,7 @@
|
|
|
4134
4133
|
},
|
|
4135
4134
|
"numeric": {
|
|
4136
4135
|
"match": "(?<![a-zA-Z0-9_\\-#$%-])(0[xX]\\h+)|([+\\-]?\\.?(0|[1-9][0-9]*)(\\.[0-9]+)?([eE][+\\-]?[0-9]+)?)",
|
|
4137
|
-
"name": "constant.numeric.
|
|
4136
|
+
"name": "constant.numeric.abl"
|
|
4138
4137
|
},
|
|
4139
4138
|
"abl-system-handles": {
|
|
4140
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(?![#$\\-_%&\\(])",
|
|
@@ -4225,7 +4224,7 @@
|
|
|
4225
4224
|
"match": "(\\+=|-=|\\\\=|\\*=|<=|<>|>=|=|<|>)",
|
|
4226
4225
|
"captures": {
|
|
4227
4226
|
"1": {
|
|
4228
|
-
"name": "keyword.operator.
|
|
4227
|
+
"name": "keyword.operator.abl"
|
|
4229
4228
|
}
|
|
4230
4229
|
}
|
|
4231
4230
|
},
|
|
@@ -4234,7 +4233,7 @@
|
|
|
4234
4233
|
"comment": "Lookahead and -behind for the spaces",
|
|
4235
4234
|
"captures": {
|
|
4236
4235
|
"1": {
|
|
4237
|
-
"name": "keyword.operator.
|
|
4236
|
+
"name": "keyword.operator.abl"
|
|
4238
4237
|
}
|
|
4239
4238
|
}
|
|
4240
4239
|
},
|
|
@@ -4243,7 +4242,7 @@
|
|
|
4243
4242
|
"comment": "Lookahead only for the spaces, so that in particular the NOT is captured properly",
|
|
4244
4243
|
"captures": {
|
|
4245
4244
|
"1": {
|
|
4246
|
-
"name": "keyword.operator.
|
|
4245
|
+
"name": "keyword.operator.abl"
|
|
4247
4246
|
}
|
|
4248
4247
|
}
|
|
4249
4248
|
},
|
|
@@ -4254,13 +4253,13 @@
|
|
|
4254
4253
|
"name": "support.function.abl"
|
|
4255
4254
|
},
|
|
4256
4255
|
"2": {
|
|
4257
|
-
"name": "meta.brace.round.
|
|
4256
|
+
"name": "meta.brace.round.abl"
|
|
4258
4257
|
},
|
|
4259
4258
|
"3": {
|
|
4260
4259
|
"name": "storage.data.table.abl"
|
|
4261
4260
|
},
|
|
4262
4261
|
"5": {
|
|
4263
|
-
"name": "meta.brace.round.
|
|
4262
|
+
"name": "meta.brace.round.abl"
|
|
4264
4263
|
}
|
|
4265
4264
|
}
|
|
4266
4265
|
},
|
|
@@ -4275,13 +4274,13 @@
|
|
|
4275
4274
|
"name": "support.function.abl"
|
|
4276
4275
|
},
|
|
4277
4276
|
"2": {
|
|
4278
|
-
"name": "meta.brace.round.
|
|
4277
|
+
"name": "meta.brace.round.abl"
|
|
4279
4278
|
},
|
|
4280
4279
|
"3": {
|
|
4281
4280
|
"name": "storage.data.table.abl"
|
|
4282
4281
|
},
|
|
4283
4282
|
"5": {
|
|
4284
|
-
"name": "meta.brace.round.
|
|
4283
|
+
"name": "meta.brace.round.abl"
|
|
4285
4284
|
}
|
|
4286
4285
|
}
|
|
4287
4286
|
},
|
|
@@ -4310,13 +4309,13 @@
|
|
|
4310
4309
|
"name": "support.function.abl"
|
|
4311
4310
|
},
|
|
4312
4311
|
"2": {
|
|
4313
|
-
"name": "meta.brace.round.
|
|
4312
|
+
"name": "meta.brace.round.abl"
|
|
4314
4313
|
},
|
|
4315
4314
|
"3": {
|
|
4316
4315
|
"name": "storage.data.table.abl"
|
|
4317
4316
|
},
|
|
4318
4317
|
"5": {
|
|
4319
|
-
"name": "meta.brace.round.
|
|
4318
|
+
"name": "meta.brace.round.abl"
|
|
4320
4319
|
}
|
|
4321
4320
|
}
|
|
4322
4321
|
},
|
|
@@ -4907,7 +4906,7 @@
|
|
|
4907
4906
|
}
|
|
4908
4907
|
},
|
|
4909
4908
|
"handle-attributes-F": {
|
|
4910
|
-
"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(?![#$\\-_%&])",
|
|
4911
4910
|
"captures": {
|
|
4912
4911
|
"1": {
|
|
4913
4912
|
"name": "punctuation.accessor.abl"
|
|
@@ -5006,7 +5005,7 @@
|
|
|
5006
5005
|
}
|
|
5007
5006
|
},
|
|
5008
5007
|
"handle-attributes-P": {
|
|
5009
|
-
"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(?![#$\\-_%&])",
|
|
5010
5009
|
"captures": {
|
|
5011
5010
|
"1": {
|
|
5012
5011
|
"name": "punctuation.accessor.abl"
|
|
@@ -5186,7 +5185,7 @@
|
|
|
5186
5185
|
"end": "(\\))",
|
|
5187
5186
|
"endCaptures": {
|
|
5188
5187
|
"1": {
|
|
5189
|
-
"name": "meta.brace.round.
|
|
5188
|
+
"name": "meta.brace.round.abl"
|
|
5190
5189
|
}
|
|
5191
5190
|
},
|
|
5192
5191
|
"patterns": [
|
|
@@ -5208,7 +5207,7 @@
|
|
|
5208
5207
|
"end": "(\\))",
|
|
5209
5208
|
"endCaptures": {
|
|
5210
5209
|
"1": {
|
|
5211
|
-
"name": "meta.brace.round.
|
|
5210
|
+
"name": "meta.brace.round.abl"
|
|
5212
5211
|
}
|
|
5213
5212
|
},
|
|
5214
5213
|
"patterns": [
|
|
@@ -5230,7 +5229,7 @@
|
|
|
5230
5229
|
"end": "(\\))",
|
|
5231
5230
|
"endCaptures": {
|
|
5232
5231
|
"1": {
|
|
5233
|
-
"name": "meta.brace.round.
|
|
5232
|
+
"name": "meta.brace.round.abl"
|
|
5234
5233
|
}
|
|
5235
5234
|
},
|
|
5236
5235
|
"patterns": [
|
|
@@ -5252,7 +5251,7 @@
|
|
|
5252
5251
|
"end": "(\\))",
|
|
5253
5252
|
"endCaptures": {
|
|
5254
5253
|
"1": {
|
|
5255
|
-
"name": "meta.brace.round.
|
|
5254
|
+
"name": "meta.brace.round.abl"
|
|
5256
5255
|
}
|
|
5257
5256
|
},
|
|
5258
5257
|
"patterns": [
|
|
@@ -5262,7 +5261,7 @@
|
|
|
5262
5261
|
]
|
|
5263
5262
|
},
|
|
5264
5263
|
"handle-methods-E": {
|
|
5265
|
-
"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*(?=\\()",
|
|
5266
5265
|
"beginCaptures": {
|
|
5267
5266
|
"1": {
|
|
5268
5267
|
"name": "punctuation.accessor.abl"
|
|
@@ -5274,7 +5273,7 @@
|
|
|
5274
5273
|
"end": "(\\))",
|
|
5275
5274
|
"endCaptures": {
|
|
5276
5275
|
"1": {
|
|
5277
|
-
"name": "meta.brace.round.
|
|
5276
|
+
"name": "meta.brace.round.abl"
|
|
5278
5277
|
}
|
|
5279
5278
|
},
|
|
5280
5279
|
"patterns": [
|
|
@@ -5296,7 +5295,7 @@
|
|
|
5296
5295
|
"end": "(\\))",
|
|
5297
5296
|
"endCaptures": {
|
|
5298
5297
|
"1": {
|
|
5299
|
-
"name": "meta.brace.round.
|
|
5298
|
+
"name": "meta.brace.round.abl"
|
|
5300
5299
|
}
|
|
5301
5300
|
},
|
|
5302
5301
|
"patterns": [
|
|
@@ -5318,7 +5317,7 @@
|
|
|
5318
5317
|
"end": "(\\))",
|
|
5319
5318
|
"endCaptures": {
|
|
5320
5319
|
"1": {
|
|
5321
|
-
"name": "meta.brace.round.
|
|
5320
|
+
"name": "meta.brace.round.abl"
|
|
5322
5321
|
}
|
|
5323
5322
|
},
|
|
5324
5323
|
"patterns": [
|
|
@@ -5340,7 +5339,7 @@
|
|
|
5340
5339
|
"end": "(\\))",
|
|
5341
5340
|
"endCaptures": {
|
|
5342
5341
|
"1": {
|
|
5343
|
-
"name": "meta.brace.round.
|
|
5342
|
+
"name": "meta.brace.round.abl"
|
|
5344
5343
|
}
|
|
5345
5344
|
},
|
|
5346
5345
|
"patterns": [
|
|
@@ -5362,7 +5361,7 @@
|
|
|
5362
5361
|
"end": "(\\))",
|
|
5363
5362
|
"endCaptures": {
|
|
5364
5363
|
"1": {
|
|
5365
|
-
"name": "meta.brace.round.
|
|
5364
|
+
"name": "meta.brace.round.abl"
|
|
5366
5365
|
}
|
|
5367
5366
|
},
|
|
5368
5367
|
"patterns": [
|
|
@@ -5384,7 +5383,7 @@
|
|
|
5384
5383
|
"end": "(\\))",
|
|
5385
5384
|
"endCaptures": {
|
|
5386
5385
|
"1": {
|
|
5387
|
-
"name": "meta.brace.round.
|
|
5386
|
+
"name": "meta.brace.round.abl"
|
|
5388
5387
|
}
|
|
5389
5388
|
},
|
|
5390
5389
|
"patterns": [
|
|
@@ -5406,7 +5405,7 @@
|
|
|
5406
5405
|
"end": "(\\))",
|
|
5407
5406
|
"endCaptures": {
|
|
5408
5407
|
"1": {
|
|
5409
|
-
"name": "meta.brace.round.
|
|
5408
|
+
"name": "meta.brace.round.abl"
|
|
5410
5409
|
}
|
|
5411
5410
|
},
|
|
5412
5411
|
"patterns": [
|
|
@@ -5428,7 +5427,7 @@
|
|
|
5428
5427
|
"end": "(\\))",
|
|
5429
5428
|
"endCaptures": {
|
|
5430
5429
|
"1": {
|
|
5431
|
-
"name": "meta.brace.round.
|
|
5430
|
+
"name": "meta.brace.round.abl"
|
|
5432
5431
|
}
|
|
5433
5432
|
},
|
|
5434
5433
|
"patterns": [
|
|
@@ -5450,7 +5449,7 @@
|
|
|
5450
5449
|
"end": "(\\))",
|
|
5451
5450
|
"endCaptures": {
|
|
5452
5451
|
"1": {
|
|
5453
|
-
"name": "meta.brace.round.
|
|
5452
|
+
"name": "meta.brace.round.abl"
|
|
5454
5453
|
}
|
|
5455
5454
|
},
|
|
5456
5455
|
"patterns": [
|
|
@@ -5472,7 +5471,7 @@
|
|
|
5472
5471
|
"end": "(\\))",
|
|
5473
5472
|
"endCaptures": {
|
|
5474
5473
|
"1": {
|
|
5475
|
-
"name": "meta.brace.round.
|
|
5474
|
+
"name": "meta.brace.round.abl"
|
|
5476
5475
|
}
|
|
5477
5476
|
},
|
|
5478
5477
|
"patterns": [
|
|
@@ -5494,7 +5493,7 @@
|
|
|
5494
5493
|
"end": "(\\))",
|
|
5495
5494
|
"endCaptures": {
|
|
5496
5495
|
"1": {
|
|
5497
|
-
"name": "meta.brace.round.
|
|
5496
|
+
"name": "meta.brace.round.abl"
|
|
5498
5497
|
}
|
|
5499
5498
|
},
|
|
5500
5499
|
"patterns": [
|
|
@@ -5516,7 +5515,7 @@
|
|
|
5516
5515
|
"end": "(\\))",
|
|
5517
5516
|
"endCaptures": {
|
|
5518
5517
|
"1": {
|
|
5519
|
-
"name": "meta.brace.round.
|
|
5518
|
+
"name": "meta.brace.round.abl"
|
|
5520
5519
|
}
|
|
5521
5520
|
},
|
|
5522
5521
|
"patterns": [
|
|
@@ -5526,7 +5525,7 @@
|
|
|
5526
5525
|
]
|
|
5527
5526
|
},
|
|
5528
5527
|
"handle-methods-V": {
|
|
5529
|
-
"begin": "(?i)(:)(validate(?:|-domain-access-code|-seal))\\s*(?=\\()",
|
|
5528
|
+
"begin": "(?i)(:)(validate(?:|-domain-access-code|-password|-seal))\\s*(?=\\()",
|
|
5530
5529
|
"beginCaptures": {
|
|
5531
5530
|
"1": {
|
|
5532
5531
|
"name": "punctuation.accessor.abl"
|
|
@@ -5538,7 +5537,7 @@
|
|
|
5538
5537
|
"end": "(\\))",
|
|
5539
5538
|
"endCaptures": {
|
|
5540
5539
|
"1": {
|
|
5541
|
-
"name": "meta.brace.round.
|
|
5540
|
+
"name": "meta.brace.round.abl"
|
|
5542
5541
|
}
|
|
5543
5542
|
},
|
|
5544
5543
|
"patterns": [
|
|
@@ -5560,7 +5559,7 @@
|
|
|
5560
5559
|
"end": "(\\))",
|
|
5561
5560
|
"endCaptures": {
|
|
5562
5561
|
"1": {
|
|
5563
|
-
"name": "meta.brace.round.
|
|
5562
|
+
"name": "meta.brace.round.abl"
|
|
5564
5563
|
}
|
|
5565
5564
|
},
|
|
5566
5565
|
"patterns": [
|
|
@@ -5785,7 +5784,7 @@
|
|
|
5785
5784
|
"end": "(\\))",
|
|
5786
5785
|
"endCaptures": {
|
|
5787
5786
|
"1": {
|
|
5788
|
-
"name": "meta.brace.round.
|
|
5787
|
+
"name": "meta.brace.round.abl"
|
|
5789
5788
|
}
|
|
5790
5789
|
},
|
|
5791
5790
|
"patterns": [
|
|
@@ -5804,7 +5803,7 @@
|
|
|
5804
5803
|
"end": "(\\))",
|
|
5805
5804
|
"endCaptures": {
|
|
5806
5805
|
"1": {
|
|
5807
|
-
"name": "meta.brace.round.
|
|
5806
|
+
"name": "meta.brace.round.abl"
|
|
5808
5807
|
}
|
|
5809
5808
|
},
|
|
5810
5809
|
"patterns": [
|
|
@@ -5823,7 +5822,7 @@
|
|
|
5823
5822
|
"end": "(\\))",
|
|
5824
5823
|
"endCaptures": {
|
|
5825
5824
|
"1": {
|
|
5826
|
-
"name": "meta.brace.round.
|
|
5825
|
+
"name": "meta.brace.round.abl"
|
|
5827
5826
|
}
|
|
5828
5827
|
},
|
|
5829
5828
|
"patterns": [
|
|
@@ -5842,7 +5841,7 @@
|
|
|
5842
5841
|
"end": "(\\))",
|
|
5843
5842
|
"endCaptures": {
|
|
5844
5843
|
"1": {
|
|
5845
|
-
"name": "meta.brace.round.
|
|
5844
|
+
"name": "meta.brace.round.abl"
|
|
5846
5845
|
}
|
|
5847
5846
|
},
|
|
5848
5847
|
"patterns": [
|
|
@@ -5861,7 +5860,7 @@
|
|
|
5861
5860
|
"end": "(\\))",
|
|
5862
5861
|
"endCaptures": {
|
|
5863
5862
|
"1": {
|
|
5864
|
-
"name": "meta.brace.round.
|
|
5863
|
+
"name": "meta.brace.round.abl"
|
|
5865
5864
|
}
|
|
5866
5865
|
},
|
|
5867
5866
|
"patterns": [
|
|
@@ -5880,7 +5879,7 @@
|
|
|
5880
5879
|
"end": "(\\))",
|
|
5881
5880
|
"endCaptures": {
|
|
5882
5881
|
"1": {
|
|
5883
|
-
"name": "meta.brace.round.
|
|
5882
|
+
"name": "meta.brace.round.abl"
|
|
5884
5883
|
}
|
|
5885
5884
|
},
|
|
5886
5885
|
"patterns": [
|
|
@@ -5890,7 +5889,7 @@
|
|
|
5890
5889
|
]
|
|
5891
5890
|
},
|
|
5892
5891
|
"abl-functions-G": {
|
|
5893
|
-
"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*(?=\\()",
|
|
5894
5893
|
"beginCaptures": {
|
|
5895
5894
|
"1": {
|
|
5896
5895
|
"name": "support.function.abl"
|
|
@@ -5899,7 +5898,7 @@
|
|
|
5899
5898
|
"end": "(\\))",
|
|
5900
5899
|
"endCaptures": {
|
|
5901
5900
|
"1": {
|
|
5902
|
-
"name": "meta.brace.round.
|
|
5901
|
+
"name": "meta.brace.round.abl"
|
|
5903
5902
|
}
|
|
5904
5903
|
},
|
|
5905
5904
|
"patterns": [
|
|
@@ -5918,7 +5917,7 @@
|
|
|
5918
5917
|
"end": "(\\))",
|
|
5919
5918
|
"endCaptures": {
|
|
5920
5919
|
"1": {
|
|
5921
|
-
"name": "meta.brace.round.
|
|
5920
|
+
"name": "meta.brace.round.abl"
|
|
5922
5921
|
}
|
|
5923
5922
|
},
|
|
5924
5923
|
"patterns": [
|
|
@@ -5937,7 +5936,7 @@
|
|
|
5937
5936
|
"end": "(\\))",
|
|
5938
5937
|
"endCaptures": {
|
|
5939
5938
|
"1": {
|
|
5940
|
-
"name": "meta.brace.round.
|
|
5939
|
+
"name": "meta.brace.round.abl"
|
|
5941
5940
|
}
|
|
5942
5941
|
},
|
|
5943
5942
|
"patterns": [
|
|
@@ -5956,7 +5955,7 @@
|
|
|
5956
5955
|
"end": "(\\))",
|
|
5957
5956
|
"endCaptures": {
|
|
5958
5957
|
"1": {
|
|
5959
|
-
"name": "meta.brace.round.
|
|
5958
|
+
"name": "meta.brace.round.abl"
|
|
5960
5959
|
}
|
|
5961
5960
|
},
|
|
5962
5961
|
"patterns": [
|
|
@@ -5975,7 +5974,7 @@
|
|
|
5975
5974
|
"end": "(\\))",
|
|
5976
5975
|
"endCaptures": {
|
|
5977
5976
|
"1": {
|
|
5978
|
-
"name": "meta.brace.round.
|
|
5977
|
+
"name": "meta.brace.round.abl"
|
|
5979
5978
|
}
|
|
5980
5979
|
},
|
|
5981
5980
|
"patterns": [
|
|
@@ -5994,7 +5993,7 @@
|
|
|
5994
5993
|
"end": "(\\))",
|
|
5995
5994
|
"endCaptures": {
|
|
5996
5995
|
"1": {
|
|
5997
|
-
"name": "meta.brace.round.
|
|
5996
|
+
"name": "meta.brace.round.abl"
|
|
5998
5997
|
}
|
|
5999
5998
|
},
|
|
6000
5999
|
"patterns": [
|
|
@@ -6013,7 +6012,7 @@
|
|
|
6013
6012
|
"end": "(\\))",
|
|
6014
6013
|
"endCaptures": {
|
|
6015
6014
|
"1": {
|
|
6016
|
-
"name": "meta.brace.round.
|
|
6015
|
+
"name": "meta.brace.round.abl"
|
|
6017
6016
|
}
|
|
6018
6017
|
},
|
|
6019
6018
|
"patterns": [
|
|
@@ -6032,7 +6031,7 @@
|
|
|
6032
6031
|
"end": "(\\))",
|
|
6033
6032
|
"endCaptures": {
|
|
6034
6033
|
"1": {
|
|
6035
|
-
"name": "meta.brace.round.
|
|
6034
|
+
"name": "meta.brace.round.abl"
|
|
6036
6035
|
}
|
|
6037
6036
|
},
|
|
6038
6037
|
"patterns": [
|
|
@@ -6051,7 +6050,7 @@
|
|
|
6051
6050
|
"end": "(\\))",
|
|
6052
6051
|
"endCaptures": {
|
|
6053
6052
|
"1": {
|
|
6054
|
-
"name": "meta.brace.round.
|
|
6053
|
+
"name": "meta.brace.round.abl"
|
|
6055
6054
|
}
|
|
6056
6055
|
},
|
|
6057
6056
|
"patterns": [
|
|
@@ -6070,7 +6069,7 @@
|
|
|
6070
6069
|
"end": "(\\))",
|
|
6071
6070
|
"endCaptures": {
|
|
6072
6071
|
"1": {
|
|
6073
|
-
"name": "meta.brace.round.
|
|
6072
|
+
"name": "meta.brace.round.abl"
|
|
6074
6073
|
}
|
|
6075
6074
|
},
|
|
6076
6075
|
"patterns": [
|
|
@@ -6089,7 +6088,7 @@
|
|
|
6089
6088
|
"end": "(\\))",
|
|
6090
6089
|
"endCaptures": {
|
|
6091
6090
|
"1": {
|
|
6092
|
-
"name": "meta.brace.round.
|
|
6091
|
+
"name": "meta.brace.round.abl"
|
|
6093
6092
|
}
|
|
6094
6093
|
},
|
|
6095
6094
|
"patterns": [
|
|
@@ -6108,7 +6107,7 @@
|
|
|
6108
6107
|
"end": "(\\))",
|
|
6109
6108
|
"endCaptures": {
|
|
6110
6109
|
"1": {
|
|
6111
|
-
"name": "meta.brace.round.
|
|
6110
|
+
"name": "meta.brace.round.abl"
|
|
6112
6111
|
}
|
|
6113
6112
|
},
|
|
6114
6113
|
"patterns": [
|
|
@@ -6127,7 +6126,7 @@
|
|
|
6127
6126
|
"end": "(\\))",
|
|
6128
6127
|
"endCaptures": {
|
|
6129
6128
|
"1": {
|
|
6130
|
-
"name": "meta.brace.round.
|
|
6129
|
+
"name": "meta.brace.round.abl"
|
|
6131
6130
|
}
|
|
6132
6131
|
},
|
|
6133
6132
|
"patterns": [
|
|
@@ -6146,7 +6145,7 @@
|
|
|
6146
6145
|
"end": "(\\))",
|
|
6147
6146
|
"endCaptures": {
|
|
6148
6147
|
"1": {
|
|
6149
|
-
"name": "meta.brace.round.
|
|
6148
|
+
"name": "meta.brace.round.abl"
|
|
6150
6149
|
}
|
|
6151
6150
|
},
|
|
6152
6151
|
"patterns": [
|
|
@@ -6165,7 +6164,7 @@
|
|
|
6165
6164
|
"end": "(\\))",
|
|
6166
6165
|
"endCaptures": {
|
|
6167
6166
|
"1": {
|
|
6168
|
-
"name": "meta.brace.round.
|
|
6167
|
+
"name": "meta.brace.round.abl"
|
|
6169
6168
|
}
|
|
6170
6169
|
},
|
|
6171
6170
|
"patterns": [
|
|
@@ -6184,7 +6183,7 @@
|
|
|
6184
6183
|
"end": "(\\))",
|
|
6185
6184
|
"endCaptures": {
|
|
6186
6185
|
"1": {
|
|
6187
|
-
"name": "meta.brace.round.
|
|
6186
|
+
"name": "meta.brace.round.abl"
|
|
6188
6187
|
}
|
|
6189
6188
|
},
|
|
6190
6189
|
"patterns": [
|
|
@@ -6203,7 +6202,7 @@
|
|
|
6203
6202
|
"end": "(\\))",
|
|
6204
6203
|
"endCaptures": {
|
|
6205
6204
|
"1": {
|
|
6206
|
-
"name": "meta.brace.round.
|
|
6205
|
+
"name": "meta.brace.round.abl"
|
|
6207
6206
|
}
|
|
6208
6207
|
},
|
|
6209
6208
|
"patterns": [
|
|
@@ -6215,4 +6214,4 @@
|
|
|
6215
6214
|
},
|
|
6216
6215
|
"scopeName": "source.abl",
|
|
6217
6216
|
"uuid": "075bb86e-03ea-4fea-bac0-e11b9dc73e03"
|
|
6218
|
-
}
|
|
6217
|
+
}
|