abl-tmlanguage 1.4.0 → 1.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/abl.tmLanguage.json +152 -167
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -72,8 +72,8 @@ The ABL-specific scopes produced by the ABL grammar listed in the table below. T
|
|
|
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
|
-
|constant.language.abl | `true`, `false`, `yes`, `no`, `?` (unknown value) |
|
|
76
75
|
|constant.language.abl | `99/99/9999` (or similar) when used as a format clause |
|
|
76
|
+
|constant.language.abl | `true`, `false`, `yes`, `no`, `?` (unknown value) |
|
|
77
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` |
|
package/abl.tmLanguage.json
CHANGED
|
@@ -260,9 +260,6 @@
|
|
|
260
260
|
}
|
|
261
261
|
]
|
|
262
262
|
},
|
|
263
|
-
{
|
|
264
|
-
"include": "#parameter-as"
|
|
265
|
-
},
|
|
266
263
|
{
|
|
267
264
|
"include": "#string",
|
|
268
265
|
"comment": "For the return type"
|
|
@@ -309,134 +306,135 @@
|
|
|
309
306
|
}
|
|
310
307
|
}
|
|
311
308
|
},
|
|
309
|
+
"like-field": {
|
|
310
|
+
"match": "\\s*([Ll][Ii][Kk][Ee])\\s+(([a-zA-Z][a-zA-Z0-9#$\\-_%&]*\\.)?([a-zA-Z_][a-zA-Z0-9#$\\-_%&]*\\.)([a-zA-Z_][a-zA-Z0-9#$\\-_%&]*))",
|
|
311
|
+
"captures": {
|
|
312
|
+
"1": {
|
|
313
|
+
"name": "keyword.other.abl"
|
|
314
|
+
},
|
|
315
|
+
"2":{
|
|
316
|
+
"name": "storage.data.table.abl"
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
},
|
|
312
320
|
"as-type": {
|
|
313
|
-
"begin": "\\s*([Aa][Ss])\\s
|
|
321
|
+
"begin": "\\s*([Aa][Ss])(\\s+([Cc][Ll][Aa][Ss]{2})\\s)?\\s*",
|
|
314
322
|
"beginCaptures": {
|
|
315
323
|
"1": {
|
|
316
324
|
"name": "keyword.other.abl"
|
|
317
325
|
},
|
|
318
|
-
"
|
|
326
|
+
"3": {
|
|
319
327
|
"name": "keyword.other.abl"
|
|
320
328
|
}
|
|
321
329
|
},
|
|
322
|
-
"end": "
|
|
330
|
+
"end": "(?=\\.|\\,|\\)|\\s)",
|
|
323
331
|
"patterns": [
|
|
324
332
|
{
|
|
325
333
|
"include": "#primitive-type"
|
|
326
334
|
},
|
|
335
|
+
{
|
|
336
|
+
"include": "#dll-type"
|
|
337
|
+
},
|
|
327
338
|
{
|
|
328
339
|
"include": "#type-names"
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
"comment": "To capture .NET generic type names that need to be quoted in certain OE versions",
|
|
343
|
+
"include": "#string"
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"include": "#comment"
|
|
329
347
|
}
|
|
330
348
|
]
|
|
331
349
|
},
|
|
332
|
-
"parameter-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
"
|
|
339
|
-
"
|
|
340
|
-
"name": "keyword.other.abl"
|
|
341
|
-
}
|
|
350
|
+
"parameter-table-dataset-handle": {
|
|
351
|
+
"match": "(?i)\\s*(dataset-handle|table-handle)\\s+([a-zA-Z][a-zA-Z0-9_\\-]*)",
|
|
352
|
+
"captures": {
|
|
353
|
+
"1": {
|
|
354
|
+
"name": "keyword.other.abl"
|
|
355
|
+
},
|
|
356
|
+
"2": {
|
|
357
|
+
"name": "variable.parameter.abl"
|
|
342
358
|
}
|
|
343
|
-
}
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
359
|
+
}
|
|
360
|
+
},
|
|
361
|
+
"parameter-table": {
|
|
362
|
+
"match": "(?i)\\s*(table)\\s+((for)\\s+)?([a-zA-Z][a-zA-Z_\\-#$%]*(\\.[a-zA-Z][a-zA-Z_\\-#$%]*)?)\\b",
|
|
363
|
+
"captures": {
|
|
364
|
+
"1": {
|
|
365
|
+
"name": "keyword.other.abl"
|
|
366
|
+
},
|
|
367
|
+
"3": {
|
|
368
|
+
"name": "keyword.other.abl"
|
|
369
|
+
},
|
|
370
|
+
"4": {
|
|
371
|
+
"name": "storage.data.table.abl"
|
|
372
|
+
}
|
|
373
|
+
}
|
|
374
|
+
},
|
|
375
|
+
"parameter-dataset": {
|
|
376
|
+
"match": "(?i)\\s*(dataset)\\s+((for)\\s+)?([a-zA-Z_\\-#$%]+(\\.[a-zA-Z_\\-#$%]+)?)\\s*",
|
|
377
|
+
"x-match": "(?i)\\s*(dataset)\\s+((for)\\s+)?([a-zA-Z][a-zA-Z0-9_\\-]*)\\s*",
|
|
378
|
+
"captures": {
|
|
347
379
|
"1": {
|
|
348
380
|
"name": "keyword.other.abl"
|
|
349
381
|
},
|
|
350
|
-
"
|
|
351
|
-
"name": "variable.parameter.abl"
|
|
352
|
-
}
|
|
353
|
-
}
|
|
354
|
-
},
|
|
355
|
-
{
|
|
356
|
-
"match": "(?i)\\s*(dataset)\\s+([a-zA-Z][a-zA-Z0-9_\\-]*)\\s*",
|
|
357
|
-
"captures": {
|
|
358
|
-
"1": {
|
|
382
|
+
"3": {
|
|
359
383
|
"name": "keyword.other.abl"
|
|
360
384
|
},
|
|
361
|
-
"
|
|
385
|
+
"4": {
|
|
362
386
|
"name": "storage.data.dataset.abl"
|
|
363
387
|
}
|
|
364
|
-
|
|
365
|
-
|
|
388
|
+
}
|
|
389
|
+
},
|
|
390
|
+
"parameter-definition": {
|
|
391
|
+
"name": "meta.define.parameter.abl",
|
|
392
|
+
"patterns": [
|
|
366
393
|
{
|
|
367
|
-
"match": "(?i)\\s*(
|
|
394
|
+
"match": "(?i)\\s*((input-o(?:utput|utpu|utp|u)?)|input|output|append|bind|by-value|(presel(?:ect|ec|e)?)|buffer|(param(?:eter|ete|et|e)?)|no-undo)\\s*",
|
|
395
|
+
"comment": "Certain keywords like NO-UNDO are 'gathered' by a DEFINE INPUT PARAMETER statement. ",
|
|
368
396
|
"captures": {
|
|
369
397
|
"1": {
|
|
370
398
|
"name": "keyword.other.abl"
|
|
371
|
-
},
|
|
372
|
-
"2": {
|
|
373
|
-
"name": "storage.data.table.abl"
|
|
374
|
-
}
|
|
375
|
-
}
|
|
376
|
-
},
|
|
377
|
-
{
|
|
378
|
-
"include": "#parameter-as"
|
|
379
|
-
},
|
|
380
|
-
{
|
|
381
|
-
"match": "(?i)\\s*((char(?:acter|acte|act|ac|a)?)|com-handle|date|datetime-tz|datetime|(dec(?:imal|ima|im|i)?)|handle|int64|(int(?:eger|ege|eg|e)?)|(log(?:ical|ica|ic|i)?)|(longch(?:ar|a)?)|memptr|raw|recid|rowid|(widget-h(?:andle|andl|and|an|a)?))(?![=a-zA-Z0-9_\\-])\\s*(,*)",
|
|
382
|
-
"captures": {
|
|
383
|
-
"1": {
|
|
384
|
-
"name": "storage.type.abl"
|
|
385
|
-
},
|
|
386
|
-
"2": {
|
|
387
|
-
"name": "punctuation.separator.comma.abl"
|
|
388
399
|
}
|
|
389
400
|
}
|
|
390
401
|
},
|
|
391
402
|
{
|
|
392
|
-
"
|
|
393
|
-
"captures": {
|
|
394
|
-
"1": {
|
|
395
|
-
"name": "punctuation.separator.comma.abl"
|
|
396
|
-
}
|
|
397
|
-
}
|
|
403
|
+
"include": "#parameter-table-dataset-handle"
|
|
398
404
|
},
|
|
399
405
|
{
|
|
400
|
-
"include": "#
|
|
406
|
+
"include": "#parameter-dataset"
|
|
401
407
|
},
|
|
402
408
|
{
|
|
403
|
-
"include": "#
|
|
409
|
+
"include": "#parameter-table"
|
|
404
410
|
},
|
|
405
411
|
{
|
|
406
|
-
"include": "#
|
|
412
|
+
"include": "#as-type"
|
|
407
413
|
},
|
|
408
414
|
{
|
|
409
|
-
"include": "#
|
|
410
|
-
},
|
|
411
|
-
{
|
|
412
|
-
"include": "#abl-functions"
|
|
415
|
+
"include": "#like-field"
|
|
413
416
|
},
|
|
414
417
|
{
|
|
415
|
-
"include": "#
|
|
416
|
-
},
|
|
417
|
-
{
|
|
418
|
-
"include": "#decimals"
|
|
419
|
-
},
|
|
420
|
-
{
|
|
421
|
-
"include": "#constant"
|
|
418
|
+
"include": "#extent"
|
|
422
419
|
},
|
|
423
420
|
{
|
|
424
|
-
"include": "#
|
|
421
|
+
"include": "#buffer-for-table"
|
|
425
422
|
},
|
|
426
423
|
{
|
|
427
|
-
"include": "#
|
|
424
|
+
"include": "#string"
|
|
428
425
|
},
|
|
429
426
|
{
|
|
430
|
-
"
|
|
427
|
+
"comment": "To capture .NET generic type names that need to be quoted in certain OE versions",
|
|
428
|
+
"include": "#comment"
|
|
431
429
|
},
|
|
432
430
|
{
|
|
433
|
-
"include": "#
|
|
431
|
+
"include": "#preprocessors"
|
|
434
432
|
},
|
|
435
433
|
{
|
|
436
|
-
"include": "#
|
|
434
|
+
"include": "#parameter-name"
|
|
437
435
|
},
|
|
438
436
|
{
|
|
439
|
-
"include": "#
|
|
437
|
+
"include": "#punctuation-comma"
|
|
440
438
|
}
|
|
441
439
|
]
|
|
442
440
|
},
|
|
@@ -538,6 +536,9 @@
|
|
|
538
536
|
{
|
|
539
537
|
"include": "#transaction-distinct"
|
|
540
538
|
},
|
|
539
|
+
{
|
|
540
|
+
"include": "#catch-block"
|
|
541
|
+
},
|
|
541
542
|
{
|
|
542
543
|
"include": "#block-statement"
|
|
543
544
|
},
|
|
@@ -747,6 +748,9 @@
|
|
|
747
748
|
{
|
|
748
749
|
"match": "(?i)((&)(elseif|endif|else|then|if))\\s*",
|
|
749
750
|
"captures": {
|
|
751
|
+
"1": {
|
|
752
|
+
"name": "meta.preprocessor.abl"
|
|
753
|
+
},
|
|
750
754
|
"2": {
|
|
751
755
|
"name": "punctuation.definition.preprocessor.abl"
|
|
752
756
|
},
|
|
@@ -758,6 +762,9 @@
|
|
|
758
762
|
{
|
|
759
763
|
"match": "(?i)((&)(message))\\s*",
|
|
760
764
|
"captures": {
|
|
765
|
+
"1": {
|
|
766
|
+
"name": "meta.preprocessor.abl"
|
|
767
|
+
},
|
|
761
768
|
"2": {
|
|
762
769
|
"name": "punctuation.definition.preprocessor.abl"
|
|
763
770
|
},
|
|
@@ -1318,6 +1325,9 @@
|
|
|
1318
1325
|
{
|
|
1319
1326
|
"include": "#fields-except-list"
|
|
1320
1327
|
},
|
|
1328
|
+
{
|
|
1329
|
+
"include": "#comment"
|
|
1330
|
+
},
|
|
1321
1331
|
{
|
|
1322
1332
|
"include": "#of-phrase"
|
|
1323
1333
|
},
|
|
@@ -1639,49 +1649,6 @@
|
|
|
1639
1649
|
}
|
|
1640
1650
|
]
|
|
1641
1651
|
},
|
|
1642
|
-
"parameter-as": {
|
|
1643
|
-
"begin": "\\s*([a-zA-Z0-9_\\-#$%]+)\\s+([Aa][Ss])\\s+",
|
|
1644
|
-
"beginCaptures": {
|
|
1645
|
-
"1": {
|
|
1646
|
-
"name": "variable.parameter.abl"
|
|
1647
|
-
},
|
|
1648
|
-
"2": {
|
|
1649
|
-
"name": "keyword.other.abl"
|
|
1650
|
-
}
|
|
1651
|
-
},
|
|
1652
|
-
"end": "(?=\\s|\\)|\\.|,)",
|
|
1653
|
-
"patterns": [
|
|
1654
|
-
{
|
|
1655
|
-
"match": "\\b([Cc][Ll][Aa][Ss]{2})\\b",
|
|
1656
|
-
"captures": {
|
|
1657
|
-
"1": {
|
|
1658
|
-
"name": "keyword.other.abl"
|
|
1659
|
-
}
|
|
1660
|
-
}
|
|
1661
|
-
},
|
|
1662
|
-
{
|
|
1663
|
-
"include": "#primitive-type"
|
|
1664
|
-
},
|
|
1665
|
-
{
|
|
1666
|
-
"include": "#dll-type"
|
|
1667
|
-
},
|
|
1668
|
-
{
|
|
1669
|
-
"include": "#type-names"
|
|
1670
|
-
},
|
|
1671
|
-
{
|
|
1672
|
-
"include": "#parens"
|
|
1673
|
-
},
|
|
1674
|
-
{
|
|
1675
|
-
"include": "#string"
|
|
1676
|
-
},
|
|
1677
|
-
{
|
|
1678
|
-
"include": "#punctuation-period"
|
|
1679
|
-
},
|
|
1680
|
-
{
|
|
1681
|
-
"include": "#punctuation-comma"
|
|
1682
|
-
}
|
|
1683
|
-
]
|
|
1684
|
-
},
|
|
1685
1652
|
"input-output-from-to": {
|
|
1686
1653
|
"begin": "(?i)\\b(input|output)\\s+((stream|stream-handle)\\s+([a-zA-Z_][a-zA-Z0-9_#$\\-%&]*)\\s+)?(from|to)",
|
|
1687
1654
|
"beginCaptures": {
|
|
@@ -1912,9 +1879,6 @@
|
|
|
1912
1879
|
{
|
|
1913
1880
|
"include": "#define-field"
|
|
1914
1881
|
},
|
|
1915
|
-
{
|
|
1916
|
-
"include": "#parameter-as"
|
|
1917
|
-
},
|
|
1918
1882
|
{
|
|
1919
1883
|
"include": "#define-stream"
|
|
1920
1884
|
},
|
|
@@ -2094,6 +2058,12 @@
|
|
|
2094
2058
|
{
|
|
2095
2059
|
"include": "#comment"
|
|
2096
2060
|
},
|
|
2061
|
+
{
|
|
2062
|
+
"include":"#preprocessors"
|
|
2063
|
+
},
|
|
2064
|
+
{
|
|
2065
|
+
"include": "#abl-functions"
|
|
2066
|
+
},
|
|
2097
2067
|
{
|
|
2098
2068
|
"include": "#db-dot-table-dot-field"
|
|
2099
2069
|
},
|
|
@@ -2112,56 +2082,26 @@
|
|
|
2112
2082
|
"name": "keyword.other.abl"
|
|
2113
2083
|
}
|
|
2114
2084
|
},
|
|
2115
|
-
"end": "(?i)(?=\\.)|\\
|
|
2085
|
+
"end": "(?i)(?=\\.)|\\s(?=decimals|extent|(form(?:at|a)?)|initial|label|no-undo|not|(case-sen(?:sitive|sitiv|siti|sit|si|s)?)|(column-lab(?:el|e)?)|append|bind|by-value)\\b",
|
|
2116
2086
|
"comment": "The end capture does a lookahead on . so that the 'define' capture can end ",
|
|
2117
2087
|
"patterns": [
|
|
2118
2088
|
{
|
|
2119
|
-
"
|
|
2120
|
-
"captures": {
|
|
2121
|
-
"1": {
|
|
2122
|
-
"name": "keyword.other.abl"
|
|
2123
|
-
},
|
|
2124
|
-
"2": {
|
|
2125
|
-
"name": "keyword.other.abl"
|
|
2126
|
-
},
|
|
2127
|
-
"3": {
|
|
2128
|
-
"name": "storage.data.table.abl"
|
|
2129
|
-
}
|
|
2130
|
-
}
|
|
2089
|
+
"include": "#parameter-table"
|
|
2131
2090
|
},
|
|
2132
2091
|
{
|
|
2133
|
-
"
|
|
2134
|
-
"captures": {
|
|
2135
|
-
"1": {
|
|
2136
|
-
"name": "keyword.other.abl"
|
|
2137
|
-
},
|
|
2138
|
-
"2": {
|
|
2139
|
-
"name": "variable.other.abl"
|
|
2140
|
-
}
|
|
2141
|
-
}
|
|
2092
|
+
"include": "#parameter-table-dataset-handle"
|
|
2142
2093
|
},
|
|
2143
2094
|
{
|
|
2144
|
-
"
|
|
2145
|
-
"captures": {
|
|
2146
|
-
"1": {
|
|
2147
|
-
"name": "keyword.other.abl"
|
|
2148
|
-
},
|
|
2149
|
-
"2": {
|
|
2150
|
-
"name": "keyword.other.abl"
|
|
2151
|
-
},
|
|
2152
|
-
"3": {
|
|
2153
|
-
"name": "storage.data.dataset.abl"
|
|
2154
|
-
}
|
|
2155
|
-
}
|
|
2095
|
+
"include": "#parameter-dataset"
|
|
2156
2096
|
},
|
|
2157
2097
|
{
|
|
2158
|
-
"include": "#
|
|
2098
|
+
"include": "#as-type"
|
|
2159
2099
|
},
|
|
2160
2100
|
{
|
|
2161
|
-
"include": "#
|
|
2101
|
+
"include": "#like-field"
|
|
2162
2102
|
},
|
|
2163
2103
|
{
|
|
2164
|
-
"include": "#
|
|
2104
|
+
"include": "#parameter-name"
|
|
2165
2105
|
}
|
|
2166
2106
|
]
|
|
2167
2107
|
},
|
|
@@ -2355,7 +2295,7 @@
|
|
|
2355
2295
|
},
|
|
2356
2296
|
"patterns": [
|
|
2357
2297
|
{
|
|
2358
|
-
"match": "(?i)\\s*(for|table|no-error)\\
|
|
2298
|
+
"match": "(?i)\\s*(for|table|no-error)\\b",
|
|
2359
2299
|
"captures": {
|
|
2360
2300
|
"1": {
|
|
2361
2301
|
"name": "keyword.other.abl"
|
|
@@ -2365,6 +2305,12 @@
|
|
|
2365
2305
|
{
|
|
2366
2306
|
"include": "#define-table"
|
|
2367
2307
|
},
|
|
2308
|
+
{
|
|
2309
|
+
"include": "#handle-attributes-and-methods"
|
|
2310
|
+
},
|
|
2311
|
+
{
|
|
2312
|
+
"include": "#type-member-call"
|
|
2313
|
+
},
|
|
2368
2314
|
{
|
|
2369
2315
|
"include": "#buffer-name"
|
|
2370
2316
|
},
|
|
@@ -2963,6 +2909,29 @@
|
|
|
2963
2909
|
}
|
|
2964
2910
|
]
|
|
2965
2911
|
},
|
|
2912
|
+
"catch-block": {
|
|
2913
|
+
"begin": "\\s*([Cc][Aa][Tt][Cc][Hh])\\s+",
|
|
2914
|
+
"beginCaptures": {
|
|
2915
|
+
"1": {
|
|
2916
|
+
"name": "keyword.other.abl"
|
|
2917
|
+
}
|
|
2918
|
+
},
|
|
2919
|
+
"end": "(?=:)",
|
|
2920
|
+
"patterns": [
|
|
2921
|
+
{
|
|
2922
|
+
"include": "#as-type"
|
|
2923
|
+
},
|
|
2924
|
+
{
|
|
2925
|
+
"include": "#variable-name"
|
|
2926
|
+
},
|
|
2927
|
+
{
|
|
2928
|
+
"include": "#comment"
|
|
2929
|
+
},
|
|
2930
|
+
{
|
|
2931
|
+
"include": "#preprocessors"
|
|
2932
|
+
}
|
|
2933
|
+
]
|
|
2934
|
+
},
|
|
2966
2935
|
"from-to-by": {
|
|
2967
2936
|
"begin": "\\s*([a-zA-Z0-9_\\-#$%$\\-_%&]+)\\s+(=)\\s*",
|
|
2968
2937
|
"beginCaptures": {
|
|
@@ -3389,9 +3358,12 @@
|
|
|
3389
3358
|
"global-scoped-define": {
|
|
3390
3359
|
"patterns": [
|
|
3391
3360
|
{
|
|
3392
|
-
"begin": "(?i)
|
|
3361
|
+
"begin": "(?i)\\s*((&)(scop(?:ed-define|ed-defin|ed-defi|ed-def|ed-de|ed-d|ed-|ed|e)?))\\s*",
|
|
3393
3362
|
"name": "meta.preprocessor.abl",
|
|
3394
3363
|
"beginCaptures": {
|
|
3364
|
+
"1": {
|
|
3365
|
+
"name": "meta.preprocessor.abl"
|
|
3366
|
+
},
|
|
3395
3367
|
"2": {
|
|
3396
3368
|
"name": "punctuation.definition.preprocessor.abl"
|
|
3397
3369
|
},
|
|
@@ -3415,7 +3387,7 @@
|
|
|
3415
3387
|
]
|
|
3416
3388
|
},
|
|
3417
3389
|
{
|
|
3418
|
-
"begin": "(?i)
|
|
3390
|
+
"begin": "(?i)\\s*((&)(glob(?:al-define|al-defin|al-defi|al-def|al-de|al-d|al-|al|a)?))\\s*",
|
|
3419
3391
|
"name": "meta.preprocessor.abl",
|
|
3420
3392
|
"beginCaptures": {
|
|
3421
3393
|
"2": {
|
|
@@ -3531,6 +3503,9 @@
|
|
|
3531
3503
|
{
|
|
3532
3504
|
"include": "#abl-system-handles"
|
|
3533
3505
|
},
|
|
3506
|
+
{
|
|
3507
|
+
"include": "#dynamic-buffer-field-access"
|
|
3508
|
+
},
|
|
3534
3509
|
{
|
|
3535
3510
|
"include": "#new-record"
|
|
3536
3511
|
},
|
|
@@ -3546,6 +3521,12 @@
|
|
|
3546
3521
|
{
|
|
3547
3522
|
"include": "#abl-functions"
|
|
3548
3523
|
},
|
|
3524
|
+
{
|
|
3525
|
+
"include": "#handle-methods"
|
|
3526
|
+
},
|
|
3527
|
+
{
|
|
3528
|
+
"include": "#handle-attributes"
|
|
3529
|
+
},
|
|
3549
3530
|
{
|
|
3550
3531
|
"include": "#type-member-call"
|
|
3551
3532
|
},
|
|
@@ -3561,9 +3542,6 @@
|
|
|
3561
3542
|
{
|
|
3562
3543
|
"include": "#code-block"
|
|
3563
3544
|
},
|
|
3564
|
-
{
|
|
3565
|
-
"include": "#handle-attributes"
|
|
3566
|
-
},
|
|
3567
3545
|
{
|
|
3568
3546
|
"include": "#preprocessors"
|
|
3569
3547
|
},
|
|
@@ -3657,6 +3635,9 @@
|
|
|
3657
3635
|
{
|
|
3658
3636
|
"include": "#abl-functions"
|
|
3659
3637
|
},
|
|
3638
|
+
{
|
|
3639
|
+
"include": "#handle-attributes-and-methods"
|
|
3640
|
+
},
|
|
3660
3641
|
{
|
|
3661
3642
|
"include": "#type-member-call"
|
|
3662
3643
|
},
|
|
@@ -3869,8 +3850,12 @@
|
|
|
3869
3850
|
]
|
|
3870
3851
|
},
|
|
3871
3852
|
"parameter-name": {
|
|
3872
|
-
|
|
3873
|
-
|
|
3853
|
+
"match": "\\s*([a-zA-Z0-9_\\-#$%]+)\\s*",
|
|
3854
|
+
"captures": {
|
|
3855
|
+
"1": {
|
|
3856
|
+
"name": "variable.parameter.abl"
|
|
3857
|
+
}
|
|
3858
|
+
}
|
|
3874
3859
|
},
|
|
3875
3860
|
"transaction-distinct": {
|
|
3876
3861
|
"match": "(?i)\\b(transaction)\\s+(distinct)\\b",
|