abl-tmlanguage 1.3.26 → 1.3.28
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/CHANGELOG.md +14 -0
- package/README.md +2 -1
- package/abl.tmLanguage.json +291 -112
- package/index.mjs +109 -11
- package/package.json +1 -1
- package/spec/blocks/block-options.spec.js +16 -16
- package/spec/blocks/finally-blocks.spec.js +5 -5
- package/spec/comments/comment-in-block-statement.spec.js +1 -1
- package/spec/comments/comment-in-for-each.spec.js +5 -5
- package/spec/comments/vscode-abl-issue#127.spec.js +20 -20
- package/spec/db-table-and-field/buffer-copy.spec.js +22 -22
- package/spec/db-table-and-field/create-alias.spec.js +39 -38
- package/spec/db-table-and-field/double-colon-access.spec.js +154 -0
- package/spec/db-table-and-field/field-in-function.spec.js +25 -25
- package/spec/db-table-and-field/fields-except.spec.js +1 -2
- package/spec/db-table-and-field/foreach.spec.js +6 -6
- package/spec/db-table-and-field/issue#88.spec.js +5 -4
- package/spec/db-table-and-field/new-record.spec.js +9 -9
- package/spec/db-table-and-field/query-get.spec.js +137 -0
- package/spec/define-buffer/create-buffer.spec.js +57 -0
- package/spec/define-frame/issue#173.spec.js +16 -16
- package/spec/define-property/property-getter.spec.js +8 -103
- package/spec/define-variable/simple-single-line.spec.js +1 -1
- package/spec/define-variable/var-statement.spec.js +21 -21
- package/spec/do/do-blocks.spec.js +22 -22
- package/spec/do/stop-after.spec.js +1 -1
- package/spec/function-call/can-find.spec.js +12 -12
- package/spec/function-call/include-in-argument.spec.js +120 -0
- package/spec/function-call/misc-abl-functions.spec.js +9 -9
- package/spec/function-call/nested-functions.spec.js +124 -124
- package/spec/function-call/vscode-abl-issue#19.spec.js +14 -14
- package/spec/function-definition/vscode-abl-issue#166.spec.js +1 -1
- package/spec/input-output/input-from.spec.js +116 -116
- package/spec/input-output/output-to.spec.js +105 -105
- package/spec/method-attribute-property-call/get-set-method-name.spec.js +1 -2
- package/spec/method-attribute-property-call/method-call.spec.js +1 -1
- package/spec/method-attribute-property-call/nested-property-call.spec.js +8 -25
- package/spec/method-attribute-property-call/unqualified-method-call.spec.js +27 -27
- package/spec/method-definition/constructor.spec.js +5 -5
- package/spec/misc-statements/class-in-var-name.spec.js +22 -22
- package/spec/misc-statements/copy-lob.spec.js +11 -4
- package/spec/misc-statements/do-in-name.spec.js +5 -5
- package/spec/misc-statements/guid.spec.js +10 -10
- package/spec/misc-statements/if-then.spec.js +38 -38
- package/spec/misc-statements/record-buffer-functions.spec.js +5 -5
- package/spec/misc-statements/return-statement.spec.js +15 -15
- package/spec/misc-statements/skip-statement-and-fuction.spec.js +6 -6
- package/spec/misc-statements/system-handles.spec.js +17 -3
- package/spec/numbers/scientific-notation.spec.js +7 -7
- package/spec/operators/operators.spec.js +6 -6
- package/spec/preprocesors/proparse-preprocessor.spec.js +7 -7
- package/spec/run-statement/run-statement.spec.js +30 -133
- package/spec/strings/translation-attribute.spec.js +7 -7
- package/spec/strings/vscode-abl-issue#11.spec.js +0 -53
- package/spec/strings/vscode-abl-issue#28.spec.js +16 -16
- package/spec/type-name/argument.spec.js +6 -7
- package/spec/type-name/define-property.spec.js +1 -1
- package/spec/type-name/define-temp-table.spec.js +4 -4
- package/spec/type-name/define-variable-property.spec.js +1 -1
- package/spec/type-name/define-variable.spec.js +1 -1
- package/spec/type-name/new.spec.js +8 -8
- package/spec/type-name/parameter-as.spec.js +50 -1
- package/spec/type-name/type-name.spec.js +20 -20
package/abl.tmLanguage.json
CHANGED
|
@@ -114,15 +114,6 @@
|
|
|
114
114
|
}
|
|
115
115
|
}
|
|
116
116
|
},
|
|
117
|
-
"language-functions": {
|
|
118
|
-
"match": "(?i)\\b(opsys|(provers(?:ion|io|i)?)|guid|generate-uuid)\\b",
|
|
119
|
-
"comment": "These are functions that do not require parens when called.",
|
|
120
|
-
"captures": {
|
|
121
|
-
"1": {
|
|
122
|
-
"name": "support.function.abl"
|
|
123
|
-
}
|
|
124
|
-
}
|
|
125
|
-
},
|
|
126
117
|
"function-definition": {
|
|
127
118
|
"name": "meta.define.function.abl",
|
|
128
119
|
"begin": "(?i)\\b(function)\\s+([a-zA-Z0-9_][a-zA-Z0-9_#$\\-%&]+)\\b",
|
|
@@ -414,6 +405,9 @@
|
|
|
414
405
|
{
|
|
415
406
|
"include": "#property-call"
|
|
416
407
|
},
|
|
408
|
+
{
|
|
409
|
+
"include": "#abl-system-handles"
|
|
410
|
+
},
|
|
417
411
|
{
|
|
418
412
|
"include": "#abl-functions"
|
|
419
413
|
},
|
|
@@ -426,9 +420,6 @@
|
|
|
426
420
|
{
|
|
427
421
|
"include": "#constant"
|
|
428
422
|
},
|
|
429
|
-
{
|
|
430
|
-
"include": "#abl-system-handles"
|
|
431
|
-
},
|
|
432
423
|
{
|
|
433
424
|
"include": "#keywords"
|
|
434
425
|
},
|
|
@@ -488,6 +479,9 @@
|
|
|
488
479
|
{
|
|
489
480
|
"include": "#preprocessors"
|
|
490
481
|
},
|
|
482
|
+
{
|
|
483
|
+
"include": "#dynamic-buffer-field-access"
|
|
484
|
+
},
|
|
491
485
|
{
|
|
492
486
|
"include": "#argument-reference"
|
|
493
487
|
},
|
|
@@ -545,6 +539,9 @@
|
|
|
545
539
|
{
|
|
546
540
|
"include": "#undo-statement"
|
|
547
541
|
},
|
|
542
|
+
{
|
|
543
|
+
"include": "#transaction-distinct"
|
|
544
|
+
},
|
|
548
545
|
{
|
|
549
546
|
"include": "#block-statement"
|
|
550
547
|
},
|
|
@@ -572,9 +569,6 @@
|
|
|
572
569
|
{
|
|
573
570
|
"include": "#string"
|
|
574
571
|
},
|
|
575
|
-
{
|
|
576
|
-
"include": "#translation-attribute"
|
|
577
|
-
},
|
|
578
572
|
{
|
|
579
573
|
"include": "#break-group"
|
|
580
574
|
},
|
|
@@ -590,6 +584,27 @@
|
|
|
590
584
|
{
|
|
591
585
|
"include": "#handle-methods"
|
|
592
586
|
},
|
|
587
|
+
{
|
|
588
|
+
"include": "#get-query"
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
"include": "#for-each-table"
|
|
592
|
+
},
|
|
593
|
+
{
|
|
594
|
+
"include": "#for-each-join"
|
|
595
|
+
},
|
|
596
|
+
{
|
|
597
|
+
"include": "#record-buffer-functions"
|
|
598
|
+
},
|
|
599
|
+
{
|
|
600
|
+
"include": "#type-reference"
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
"include": "#branch-options"
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
"include": "#abl-system-handles"
|
|
607
|
+
},
|
|
593
608
|
{
|
|
594
609
|
"include": "#abl-functions"
|
|
595
610
|
},
|
|
@@ -628,18 +643,9 @@
|
|
|
628
643
|
{
|
|
629
644
|
"include": "#constant"
|
|
630
645
|
},
|
|
631
|
-
{
|
|
632
|
-
"include": "#timestamp-constant"
|
|
633
|
-
},
|
|
634
646
|
{
|
|
635
647
|
"include": "#break-by"
|
|
636
648
|
},
|
|
637
|
-
{
|
|
638
|
-
"include": "#new-record"
|
|
639
|
-
},
|
|
640
|
-
{
|
|
641
|
-
"include": "#type-reference"
|
|
642
|
-
},
|
|
643
649
|
{
|
|
644
650
|
"include": "#procedure-definition"
|
|
645
651
|
},
|
|
@@ -679,12 +685,6 @@
|
|
|
679
685
|
{
|
|
680
686
|
"include": "#property-accessor"
|
|
681
687
|
},
|
|
682
|
-
{
|
|
683
|
-
"include": "#for-each-table"
|
|
684
|
-
},
|
|
685
|
-
{
|
|
686
|
-
"include": "#for-each-join"
|
|
687
|
-
},
|
|
688
688
|
{
|
|
689
689
|
"include": "#of-phrase"
|
|
690
690
|
},
|
|
@@ -695,9 +695,6 @@
|
|
|
695
695
|
{
|
|
696
696
|
"include": "#code-block"
|
|
697
697
|
},
|
|
698
|
-
{
|
|
699
|
-
"include": "#language-functions"
|
|
700
|
-
},
|
|
701
698
|
{
|
|
702
699
|
"include": "#comment"
|
|
703
700
|
},
|
|
@@ -1108,6 +1105,29 @@
|
|
|
1108
1105
|
}
|
|
1109
1106
|
]
|
|
1110
1107
|
},
|
|
1108
|
+
"get-query" :{
|
|
1109
|
+
"begin": "(?i)\\b(get)\\s+(first|next|prev|last|current)\\b",
|
|
1110
|
+
"beginCaptures": {
|
|
1111
|
+
"1": {
|
|
1112
|
+
"name": "keyword.other.abl"
|
|
1113
|
+
},
|
|
1114
|
+
"2": {
|
|
1115
|
+
"name": "keyword.other.abl"
|
|
1116
|
+
}
|
|
1117
|
+
},
|
|
1118
|
+
"end": "(?i)\\s*(?=share-lock|exclusive-lock|no-lock|\\.)",
|
|
1119
|
+
"patterns": [
|
|
1120
|
+
{
|
|
1121
|
+
"include": "#variable-name"
|
|
1122
|
+
},
|
|
1123
|
+
{
|
|
1124
|
+
"include": "#preprocessors"
|
|
1125
|
+
},
|
|
1126
|
+
{
|
|
1127
|
+
"include": "#comment"
|
|
1128
|
+
}
|
|
1129
|
+
]
|
|
1130
|
+
},
|
|
1111
1131
|
"attribute-access": {
|
|
1112
1132
|
"begin": ":",
|
|
1113
1133
|
"end": "(?=:)|(?=\\s*)",
|
|
@@ -1123,7 +1143,7 @@
|
|
|
1123
1143
|
"begin": "(?i)\\b(new)\\b(?!\\-)",
|
|
1124
1144
|
"beginCaptures": {
|
|
1125
1145
|
"1": {
|
|
1126
|
-
"name": "
|
|
1146
|
+
"name": "support.function.abl"
|
|
1127
1147
|
}
|
|
1128
1148
|
},
|
|
1129
1149
|
"end": "(?=\\()",
|
|
@@ -1407,24 +1427,6 @@
|
|
|
1407
1427
|
}
|
|
1408
1428
|
]
|
|
1409
1429
|
},
|
|
1410
|
-
"record-buffer-functions": {
|
|
1411
|
-
"comment": "this capture does not include the NOT function since it is impossible to determine whether this is a new class or a new record.",
|
|
1412
|
-
"match": "(?i)\\b((?:avail(?:able|abl|ab|a)?)|locked|ambiguous)\\s*(\\()?\\s*([a-zA-Z][a-zA-Z0-9_\\-#$%]*(\\.[a-zA-Z][a-zA-Z0-9_\\-#$%]*)?)\\s*(\\))?",
|
|
1413
|
-
"captures": {
|
|
1414
|
-
"1": {
|
|
1415
|
-
"name": "support.function.abl"
|
|
1416
|
-
},
|
|
1417
|
-
"2": {
|
|
1418
|
-
"name": "meta.brace.round.js"
|
|
1419
|
-
},
|
|
1420
|
-
"3": {
|
|
1421
|
-
"name": "storage.data.table.abl"
|
|
1422
|
-
},
|
|
1423
|
-
"5": {
|
|
1424
|
-
"name": "meta.brace.round.js"
|
|
1425
|
-
}
|
|
1426
|
-
}
|
|
1427
|
-
},
|
|
1428
1430
|
"copy-lob": {
|
|
1429
1431
|
"comment": "Has its own rule because of the 'FOR length' option, which is parsed as a 'FOR EACH' type statement",
|
|
1430
1432
|
"begin": "(?i)\\b(copy-lob)\\b",
|
|
@@ -1494,6 +1496,9 @@
|
|
|
1494
1496
|
},
|
|
1495
1497
|
"code-block": {
|
|
1496
1498
|
"patterns": [
|
|
1499
|
+
{
|
|
1500
|
+
"include": "#parens"
|
|
1501
|
+
},
|
|
1497
1502
|
{
|
|
1498
1503
|
"include": "#create-statement"
|
|
1499
1504
|
},
|
|
@@ -1518,9 +1523,6 @@
|
|
|
1518
1523
|
{
|
|
1519
1524
|
"include": "#string"
|
|
1520
1525
|
},
|
|
1521
|
-
{
|
|
1522
|
-
"include": "#language-functions"
|
|
1523
|
-
},
|
|
1524
1526
|
{
|
|
1525
1527
|
"include": "#numeric"
|
|
1526
1528
|
},
|
|
@@ -1555,10 +1557,10 @@
|
|
|
1555
1557
|
"include": "#type-reference"
|
|
1556
1558
|
},
|
|
1557
1559
|
{
|
|
1558
|
-
"include": "#abl-
|
|
1560
|
+
"include": "#abl-system-handles"
|
|
1559
1561
|
},
|
|
1560
1562
|
{
|
|
1561
|
-
"include": "#abl-
|
|
1563
|
+
"include": "#abl-functions"
|
|
1562
1564
|
},
|
|
1563
1565
|
{
|
|
1564
1566
|
"include": "#handle-methods"
|
|
@@ -1659,7 +1661,7 @@
|
|
|
1659
1661
|
"end": "(?=\\s|\\)|\\.|,)",
|
|
1660
1662
|
"patterns": [
|
|
1661
1663
|
{
|
|
1662
|
-
"match": "\\
|
|
1664
|
+
"match": "\\b([Cc][Ll][Aa][Ss]{2})\\b",
|
|
1663
1665
|
"captures": {
|
|
1664
1666
|
"1": {
|
|
1665
1667
|
"name": "keyword.other.abl"
|
|
@@ -1991,9 +1993,6 @@
|
|
|
1991
1993
|
{
|
|
1992
1994
|
"include": "#handle-methods"
|
|
1993
1995
|
},
|
|
1994
|
-
{
|
|
1995
|
-
"include": "#abl-functions"
|
|
1996
|
-
},
|
|
1997
1996
|
{
|
|
1998
1997
|
"include": "#function-parameter-definition"
|
|
1999
1998
|
},
|
|
@@ -2399,6 +2398,9 @@
|
|
|
2399
2398
|
{
|
|
2400
2399
|
"include": "#handle-attributes"
|
|
2401
2400
|
},
|
|
2401
|
+
{
|
|
2402
|
+
"include": "#db-dot-table-dot-field"
|
|
2403
|
+
},
|
|
2402
2404
|
{
|
|
2403
2405
|
"include": "#variable-name"
|
|
2404
2406
|
}
|
|
@@ -2951,7 +2953,10 @@
|
|
|
2951
2953
|
"include": "#type-member-call"
|
|
2952
2954
|
},
|
|
2953
2955
|
{
|
|
2954
|
-
"include": "#
|
|
2956
|
+
"include": "#branch-options"
|
|
2957
|
+
},
|
|
2958
|
+
{
|
|
2959
|
+
"include": "#dynamic-buffer-field-access"
|
|
2955
2960
|
},
|
|
2956
2961
|
{
|
|
2957
2962
|
"include": "#abl-functions"
|
|
@@ -2961,9 +2966,6 @@
|
|
|
2961
2966
|
},
|
|
2962
2967
|
{
|
|
2963
2968
|
"include": "#punctuation-colon"
|
|
2964
|
-
},
|
|
2965
|
-
{
|
|
2966
|
-
"include": "#branch-options"
|
|
2967
2969
|
}
|
|
2968
2970
|
]
|
|
2969
2971
|
},
|
|
@@ -3354,6 +3356,7 @@
|
|
|
3354
3356
|
]
|
|
3355
3357
|
},
|
|
3356
3358
|
"branch-options": {
|
|
3359
|
+
"comment": "This should appear before any of the abl-functions due to 'transaction' and 'error' ",
|
|
3357
3360
|
"patterns": [
|
|
3358
3361
|
{
|
|
3359
3362
|
"include": "#on-error-endkey-stop"
|
|
@@ -3542,6 +3545,24 @@
|
|
|
3542
3545
|
{
|
|
3543
3546
|
"include": "#function-arguments"
|
|
3544
3547
|
},
|
|
3548
|
+
{
|
|
3549
|
+
"include": "#abl-system-handles"
|
|
3550
|
+
},
|
|
3551
|
+
{
|
|
3552
|
+
"include": "#new-record"
|
|
3553
|
+
},
|
|
3554
|
+
{
|
|
3555
|
+
"include": "#record-buffer-functions"
|
|
3556
|
+
},
|
|
3557
|
+
{
|
|
3558
|
+
"include": "#can-find"
|
|
3559
|
+
},
|
|
3560
|
+
{
|
|
3561
|
+
"include": "#type-argument-function"
|
|
3562
|
+
},
|
|
3563
|
+
{
|
|
3564
|
+
"include": "#abl-functions"
|
|
3565
|
+
},
|
|
3545
3566
|
{
|
|
3546
3567
|
"include": "#type-member-call"
|
|
3547
3568
|
},
|
|
@@ -3563,15 +3584,6 @@
|
|
|
3563
3584
|
{
|
|
3564
3585
|
"include": "#preprocessors"
|
|
3565
3586
|
},
|
|
3566
|
-
{
|
|
3567
|
-
"include": "#language-functions"
|
|
3568
|
-
},
|
|
3569
|
-
{
|
|
3570
|
-
"include": "#abl-functions"
|
|
3571
|
-
},
|
|
3572
|
-
{
|
|
3573
|
-
"include": "#abl-system-handles"
|
|
3574
|
-
},
|
|
3575
3587
|
{
|
|
3576
3588
|
"include": "#keywords"
|
|
3577
3589
|
}
|
|
@@ -3637,6 +3649,9 @@
|
|
|
3637
3649
|
{
|
|
3638
3650
|
"include": "#function-arguments"
|
|
3639
3651
|
},
|
|
3652
|
+
{
|
|
3653
|
+
"include": "#include-file"
|
|
3654
|
+
},
|
|
3640
3655
|
{
|
|
3641
3656
|
"include": "#comment"
|
|
3642
3657
|
},
|
|
@@ -3649,9 +3664,6 @@
|
|
|
3649
3664
|
{
|
|
3650
3665
|
"include": "#constant"
|
|
3651
3666
|
},
|
|
3652
|
-
{
|
|
3653
|
-
"include": "#timestamp-constant"
|
|
3654
|
-
},
|
|
3655
3667
|
{
|
|
3656
3668
|
"include": "#type-reference"
|
|
3657
3669
|
},
|
|
@@ -3661,9 +3673,6 @@
|
|
|
3661
3673
|
{
|
|
3662
3674
|
"include": "#can-find"
|
|
3663
3675
|
},
|
|
3664
|
-
{
|
|
3665
|
-
"include": "#language-functions"
|
|
3666
|
-
},
|
|
3667
3676
|
{
|
|
3668
3677
|
"include": "#abl-functions"
|
|
3669
3678
|
},
|
|
@@ -3696,6 +3705,17 @@
|
|
|
3696
3705
|
}
|
|
3697
3706
|
]
|
|
3698
3707
|
},
|
|
3708
|
+
"dynamic-buffer-field-access" : {
|
|
3709
|
+
"match": "(::)([a-zA-Z_][a-zA-Z0-9#$\\-_%&]*)",
|
|
3710
|
+
"captures": {
|
|
3711
|
+
"1": {
|
|
3712
|
+
"name": "punctuation.accessor.abl"
|
|
3713
|
+
},
|
|
3714
|
+
"2": {
|
|
3715
|
+
"name":"storage.data.table.abl"
|
|
3716
|
+
}
|
|
3717
|
+
}
|
|
3718
|
+
},
|
|
3699
3719
|
"static-object-property-call": {
|
|
3700
3720
|
"comment": "This rule only captures dotted type name and not single class names. Type names are files, so support unicode.",
|
|
3701
3721
|
"match": "(?i)\\s*(([\\w#$%\\-]+|progress)(\\.[\\w#$%\\-]+)+)\\s*((\\?:)|(:))([\\w\\-]+)\\s*",
|
|
@@ -3871,6 +3891,17 @@
|
|
|
3871
3891
|
"match": "(?<=^|\\s)(a-zA-Z0-9_\\-#$%|-)+(?=\\s)",
|
|
3872
3892
|
"name": "variable.parameter.abl"
|
|
3873
3893
|
},
|
|
3894
|
+
"transaction-distinct": {
|
|
3895
|
+
"match": "(?i)\\b(transaction)\\s+(distinct)\\b",
|
|
3896
|
+
"captures": {
|
|
3897
|
+
"1": {
|
|
3898
|
+
"name": "keyword.other.abl"
|
|
3899
|
+
},
|
|
3900
|
+
"2": {
|
|
3901
|
+
"name": "keyword.other.abl"
|
|
3902
|
+
}
|
|
3903
|
+
}
|
|
3904
|
+
},
|
|
3874
3905
|
"run-statement": {
|
|
3875
3906
|
"begin": "\\b([Rr][Uu][Nn])\\b",
|
|
3876
3907
|
"beginCaptures": {
|
|
@@ -4125,7 +4156,7 @@
|
|
|
4125
4156
|
"name": "constant.numeric.source.abl"
|
|
4126
4157
|
},
|
|
4127
4158
|
"abl-system-handles": {
|
|
4128
|
-
"match": "(?i)\\b(active-window|audit-control|audit-policy|clipboard|codebase-locator|color-table|compiler|current-window|debugger|default-window|dslog-manager|(error-stat(?:us|u)?)|(file-info(?:rmation|rmatio|rmati|rmat|rma|rm|r)?)|font-table|
|
|
4159
|
+
"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(?![#$\\-_%&\\(])",
|
|
4129
4160
|
"captures": {
|
|
4130
4161
|
"1": {
|
|
4131
4162
|
"name": "variable.language.abl"
|
|
@@ -4138,7 +4169,7 @@
|
|
|
4138
4169
|
"timestamp-constant": {
|
|
4139
4170
|
"match": "(?i)(?<=^|\\s|\\b)(today|now)(?!a-zA-Z0-9_\\-#$%|-)",
|
|
4140
4171
|
"comment": "These are constants that can be used in initial values. This excludes MTIME and ETIME",
|
|
4141
|
-
"name": "
|
|
4172
|
+
"name": "support.function.abl"
|
|
4142
4173
|
},
|
|
4143
4174
|
"constant": {
|
|
4144
4175
|
"match": "(?i)(?<=^|\\b|\\s|\\()(true|false|yes|no|\\?)(?![a-zA-Z0-9_\\-#$%:])",
|
|
@@ -4257,7 +4288,7 @@
|
|
|
4257
4288
|
"patterns": [
|
|
4258
4289
|
{
|
|
4259
4290
|
"comment": " NEW\\s+( <buffer> )",
|
|
4260
|
-
"match": "
|
|
4291
|
+
"match": "\\s*([Nn][Ee][Ww])\\s+(\\()\\s*([a-zA-Z_][a-zA-Z0-9_\\-#$%]*(\\.[a-zA-Z][a-zA-Z0-9_\\-#$%]*)?)\\s*(\\))",
|
|
4261
4292
|
"captures": {
|
|
4262
4293
|
"1": {
|
|
4263
4294
|
"name": "support.function.abl"
|
|
@@ -4275,7 +4306,42 @@
|
|
|
4275
4306
|
},
|
|
4276
4307
|
{
|
|
4277
4308
|
"comment": " NEW <buffer>. The position of the negative lookahead (?!...) is very important",
|
|
4278
|
-
"match": "
|
|
4309
|
+
"match": "\\s*(([Nn][Ee][Ww])\\s+(?!.*\\()([a-zA-Z_{][a-zA-Z0-9_\\-#$%\\.{&}]*))",
|
|
4310
|
+
"captures": {
|
|
4311
|
+
"2": {
|
|
4312
|
+
"name": "support.function.abl"
|
|
4313
|
+
},
|
|
4314
|
+
"3": {
|
|
4315
|
+
"name": "storage.data.table.abl"
|
|
4316
|
+
}
|
|
4317
|
+
}
|
|
4318
|
+
}
|
|
4319
|
+
]
|
|
4320
|
+
},
|
|
4321
|
+
"record-buffer-functions": {
|
|
4322
|
+
"comment": "This scope MUST be called after before type-reference (especially new-class) to avoid types being captured as tables. NEW, AVAILABLE, AMBIGUOUS, LOCKED are all in this category.",
|
|
4323
|
+
"patterns": [
|
|
4324
|
+
{
|
|
4325
|
+
"comment": " NEW\\s+( <buffer> )",
|
|
4326
|
+
"match": "\\s*([Aa][Vv][Aa][Ii][Ll][Aa][Bb][Ll][Ee]|[Aa][Mm][Bb][Ii][Gg][Uu][Oo][Uu][Ss]|[Ll][Oo][Cc][Kk][Ee][Dd])\\s+(\\()?\\s*([a-zA-Z_][a-zA-Z0-9_\\-#$%]*(\\.[a-zA-Z][a-zA-Z0-9_\\-#$%]+)?)\\s*(\\))?",
|
|
4327
|
+
"captures": {
|
|
4328
|
+
"1": {
|
|
4329
|
+
"name": "support.function.abl"
|
|
4330
|
+
},
|
|
4331
|
+
"2": {
|
|
4332
|
+
"name": "meta.brace.round.js"
|
|
4333
|
+
},
|
|
4334
|
+
"3": {
|
|
4335
|
+
"name": "storage.data.table.abl"
|
|
4336
|
+
},
|
|
4337
|
+
"5": {
|
|
4338
|
+
"name": "meta.brace.round.js"
|
|
4339
|
+
}
|
|
4340
|
+
}
|
|
4341
|
+
},
|
|
4342
|
+
{
|
|
4343
|
+
"comment": " NEW <buffer>. The position of the negative lookahead (?!...) is very important",
|
|
4344
|
+
"match": "\\s*([Aa][Vv][Aa][Ii][Ll][Aa][Bb][Ll][Ee]|[Aa][Mm][Bb][Ii][Gg][Uu][Oo][Uu][Ss]|[Ll][Oo][Cc][Kk][Ee][Dd])\\s+([a-zA-Z_][a-zA-Z0-9_\\-#$%]*(\\.[a-zA-Z][a-zA-Z0-9_\\-#$%]*)?)\\s*(\\))?",
|
|
4279
4345
|
"captures": {
|
|
4280
4346
|
"2": {
|
|
4281
4347
|
"name": "support.function.abl"
|
|
@@ -4290,10 +4356,13 @@
|
|
|
4290
4356
|
"assign-statment": {
|
|
4291
4357
|
"patterns": [
|
|
4292
4358
|
{
|
|
4293
|
-
"include": "#
|
|
4359
|
+
"include": "#record-buffer-functions"
|
|
4294
4360
|
},
|
|
4295
4361
|
{
|
|
4296
|
-
"include": "#
|
|
4362
|
+
"include": "#new-class"
|
|
4363
|
+
},
|
|
4364
|
+
{
|
|
4365
|
+
"include": "#abl-functions"
|
|
4297
4366
|
},
|
|
4298
4367
|
{
|
|
4299
4368
|
"include": "#string"
|
|
@@ -4619,7 +4688,7 @@
|
|
|
4619
4688
|
},
|
|
4620
4689
|
"keywords-N": {
|
|
4621
4690
|
"comment": "The keyword must not have a trailing variable character (one of #$-_%&)",
|
|
4622
|
-
"match": "(?i)\\b(n(?:amespace-prefix|amespace-uri|ative|e|ested|ew|ew-instance|ew-line|ext|ext-error|ext-frame|ext-prompt|ext-word|o|o-apply|o-array-message?|o-array-messa?|o-array-mes?|o-array-m|o-assign|o-attr|o-attr-list?|o-attr-li?|o-attr-space?|o-attr-spa?|o-attr-s|o-auto-trim?|o-auto-validate|o-bind-where|o-box|o-column-scrolling?|o-column-scrolli?|o-column-scrol?|o-column-scr?|o-console|o-convert|o-convert-3d-colors?|o-convert-3d-colo?|o-convert-3d-co?|o-convert-3d-?|o-debug|o-drag|o-echo|o-error|o-fill?|o-fi?|o-firehose-cursor|o-focus|o-help|o-hide|o-index-hint|o-inherit-bgcolor?|o-inherit-bgcol?|o-inherit-bgc|o-inherit-fgcolor?|o-inherit-fgcol?|o-inherit-fgc|o-join-by-sqldb|o-keycache-join|o-labels?|o-lobs|o-lock|o-lookahead|o-map|o-message?|o-messa?|o-mes|o-pause|o-prefetch?|o-prefet?|o-query-order-added?|o-query-order-add?|o-query-order-a?|o-query-order?|o-query-ord?|o-query-o|o-query-unique-added?|o-query-unique-add?|o-query-unique-a?|o-query-unique?|o-query-uniq?|o-query-un?|o-return-value?|o-return-val|o-row-markers|o-schema-marshall?|o-scrollbar-vertical?|o-scrollbar-vertic?|o-scrollbar-vert?|o-scrollbar-ve?|o-scrolling|o-separate-connection|o-separators|o-tab-stop?|o-tab-st?|o-tab-?|o-underline?|o-underli?|o-under?|o-undo??|o-wait|o-word-wrap|ode-type|on-serializable|one|ot-active|ull|um-copies|um-selected|umeric))\\b(?![#$\\-_%&])",
|
|
4691
|
+
"match": "(?i)\\b(n(?:amespace-prefix|amespace-uri|ative|e|ested|ew|ew-instance|ew-line|ext|ext-error|ext-frame|ext-prompt|ext-word|o|o-apply|o-array-message?|o-array-messa?|o-array-mes?|o-array-m|o-assign|o-attr|o-attr-list?|o-attr-li?|o-attr-space?|o-attr-spa?|o-attr-s|o-auto-trim?|o-auto-validate|o-bind-where|o-box|o-column-scrolling?|o-column-scrolli?|o-column-scrol?|o-column-scr?|o-console|o-convert|o-convert-3d-colors?|o-convert-3d-colo?|o-convert-3d-co?|o-convert-3d-?|o-debug|o-drag|o-echo|o-error|o-fill?|o-fi?|o-firehose-cursor|o-focus|o-help|o-hide|o-index-hint|o-inherit-bgcolor?|o-inherit-bgcol?|o-inherit-bgc|o-inherit-fgcolor?|o-inherit-fgcol?|o-inherit-fgc|o-join-by-sqldb|o-keycache-join|o-labels?|o-lobs|o-lock|o-lookahead|o-map|o-message?|o-messa?|o-mes|o-pause|o-prefetch?|o-prefet?|o-query-order-added?|o-query-order-add?|o-query-order-a?|o-query-order?|o-query-ord?|o-query-o|o-query-unique-added?|o-query-unique-add?|o-query-unique-a?|o-query-unique?|o-query-uniq?|o-query-un?|o-return-value?|o-return-val|o-row-markers|o-schema-marshall?|o-scrollbar-vertical?|o-scrollbar-vertic?|o-scrollbar-vert?|o-scrollbar-ve?|o-scrolling|o-separate-connection|o-separators|o-tab-stop?|o-tab-st?|o-tab-?|o-underline?|o-underli?|o-under?|o-undo??|o-wait|o-word-wrap|ode-type|on-serializable|one|ot|ot-active|ull|um-copies|um-selected|umeric))\\b(?![#$\\-_%&])",
|
|
4623
4692
|
"captures": {
|
|
4624
4693
|
"1": {
|
|
4625
4694
|
"name": "keyword.other.abl"
|
|
@@ -5589,11 +5658,143 @@
|
|
|
5589
5658
|
},
|
|
5590
5659
|
{
|
|
5591
5660
|
"include": "#abl-functions-Y"
|
|
5661
|
+
},
|
|
5662
|
+
{
|
|
5663
|
+
"comment": "ABL functions that can be called without parentheses. Some functions have optional arguments, some are never called with parens",
|
|
5664
|
+
"patterns": [
|
|
5665
|
+
{
|
|
5666
|
+
"match": "(?i)\\b(a(?:ccumulate?|ccumula?|ccumu?|mbiguous?|mbiguo?|mbig|vailable?|vailab?|vail))(?!(\\.\\w+))(?=\\)|\\s|,|]|:|\\.)",
|
|
5667
|
+
"captures": {
|
|
5668
|
+
"1": {
|
|
5669
|
+
"name": "support.function.abl"
|
|
5670
|
+
}
|
|
5671
|
+
}
|
|
5672
|
+
},
|
|
5673
|
+
{
|
|
5674
|
+
"match": "(?i)\\b(current-(?:changed|language?|langua?|lang))(?!(\\.\\w+))(?=\\)|\\s|,|]|:|\\.)",
|
|
5675
|
+
"captures": {
|
|
5676
|
+
"1": {
|
|
5677
|
+
"name": "support.function.abl"
|
|
5678
|
+
}
|
|
5679
|
+
}
|
|
5680
|
+
},
|
|
5681
|
+
{
|
|
5682
|
+
"match": "(?i)\\b(d(?:ataservers|bname))(?!(\\.\\w+))(?=\\)|\\s|,|]|:|\\.)",
|
|
5683
|
+
"captures": {
|
|
5684
|
+
"1": {
|
|
5685
|
+
"name": "support.function.abl"
|
|
5686
|
+
}
|
|
5687
|
+
}
|
|
5688
|
+
},
|
|
5689
|
+
{
|
|
5690
|
+
"match": "(?i)\\b(e(?:ntered|time))(?!(\\.\\w+))(?=\\)|\\s|,|]|:|\\.)",
|
|
5691
|
+
"captures": {
|
|
5692
|
+
"1": {
|
|
5693
|
+
"name": "support.function.abl"
|
|
5694
|
+
}
|
|
5695
|
+
}
|
|
5696
|
+
},
|
|
5697
|
+
{
|
|
5698
|
+
"match": "(?i)\\b(frame-(?:col|db|down|field|file|index?|line|name|row|value?|val))(?!(\\.\\w+))(?=\\)|\\s|,|]|:|\\.)",
|
|
5699
|
+
"captures": {
|
|
5700
|
+
"1": {
|
|
5701
|
+
"name": "support.function.abl"
|
|
5702
|
+
}
|
|
5703
|
+
}
|
|
5704
|
+
},
|
|
5705
|
+
{
|
|
5706
|
+
"match": "(?i)\\b(g(?:ateways?|enerate-pbe-salt|enerate-random-key|enerate-uuid|et-codepages?|o-pending?|o-pendi?|uid))(?!(\\.\\w+))(?=\\)|\\s|,|]|:|\\.)",
|
|
5707
|
+
"captures": {
|
|
5708
|
+
"1": {
|
|
5709
|
+
"name": "support.function.abl"
|
|
5710
|
+
}
|
|
5711
|
+
}
|
|
5712
|
+
},
|
|
5713
|
+
{
|
|
5714
|
+
"match": "(?i)\\b(i(?:nput|s-attr-space?|s-attr-spa?|s-attr-s?|s-attr))(?!(\\.\\w+))(?=\\)|\\s|,|]|:|\\.)",
|
|
5715
|
+
"captures": {
|
|
5716
|
+
"1": {
|
|
5717
|
+
"name": "support.function.abl"
|
|
5718
|
+
}
|
|
5719
|
+
}
|
|
5720
|
+
},
|
|
5721
|
+
{
|
|
5722
|
+
"match": "(?i)\\b(l(?:astkey|ine-counter?|ine-count|ocked))(?!(\\.\\w+))(?=\\)|\\s|,|]|:|\\.)",
|
|
5723
|
+
"captures": {
|
|
5724
|
+
"1": {
|
|
5725
|
+
"name": "support.function.abl"
|
|
5726
|
+
}
|
|
5727
|
+
}
|
|
5728
|
+
},
|
|
5729
|
+
{
|
|
5730
|
+
"match": "(?i)\\b(message-lines)(?!(\\.\\w+))(?=\\)|\\s|,|]|:|\\.)",
|
|
5731
|
+
"captures": {
|
|
5732
|
+
"1": {
|
|
5733
|
+
"name": "support.function.abl"
|
|
5734
|
+
}
|
|
5735
|
+
}
|
|
5736
|
+
},
|
|
5737
|
+
{
|
|
5738
|
+
"match": "(?i)\\b(n(?:ow|um-aliases?|um-alias?|um-ali|um-dbs))(?!(\\.\\w+))(?=\\)|\\s|,|]|:|\\.)",
|
|
5739
|
+
"captures": {
|
|
5740
|
+
"1": {
|
|
5741
|
+
"name": "support.function.abl"
|
|
5742
|
+
}
|
|
5743
|
+
}
|
|
5744
|
+
},
|
|
5745
|
+
{
|
|
5746
|
+
"match": "(?i)\\b(o(?:psys|s-drives?|s-error))(?!(\\.\\w+))(?=\\)|\\s|,|]|:|\\.)",
|
|
5747
|
+
"captures": {
|
|
5748
|
+
"1": {
|
|
5749
|
+
"name": "support.function.abl"
|
|
5750
|
+
}
|
|
5751
|
+
}
|
|
5752
|
+
},
|
|
5753
|
+
{
|
|
5754
|
+
"match": "(?i)\\b(p(?:age-number?|age-numb?|age-size|roc-handle?|roc-hand?|roc-ha|roc-status?|roc-stat?|roc-st|rocess-architecture|rogress|romsgs|ropath|roversion?|roversi?))(?!(\\.\\w+))(?=\\)|\\s|,|]|:|\\.)",
|
|
5755
|
+
"captures": {
|
|
5756
|
+
"1": {
|
|
5757
|
+
"name": "support.function.abl"
|
|
5758
|
+
}
|
|
5759
|
+
}
|
|
5760
|
+
},
|
|
5761
|
+
{
|
|
5762
|
+
"match": "(?i)\\b(ret(?:ry|urn|urn-value?|urn-val))(?!(\\.\\w+))(?=\\)|\\s|,|]|:|\\.)",
|
|
5763
|
+
"captures": {
|
|
5764
|
+
"1": {
|
|
5765
|
+
"name": "support.function.abl"
|
|
5766
|
+
}
|
|
5767
|
+
}
|
|
5768
|
+
},
|
|
5769
|
+
{
|
|
5770
|
+
"match": "(?i)\\b(s(?:creen-lines|kip|uper))(?!(\\.\\w+))(?=\\)|\\s|,|]|:|\\.)",
|
|
5771
|
+
"captures": {
|
|
5772
|
+
"1": {
|
|
5773
|
+
"name": "support.function.abl"
|
|
5774
|
+
}
|
|
5775
|
+
}
|
|
5776
|
+
},
|
|
5777
|
+
{
|
|
5778
|
+
"match": "(?i)\\b(t(?:erminal|ime|oday|ransaction?|ransacti?))(?!(\\.\\w+))(?=\\)|\\s|,|]|:|\\.)",
|
|
5779
|
+
"captures": {
|
|
5780
|
+
"1": {
|
|
5781
|
+
"name": "support.function.abl"
|
|
5782
|
+
}
|
|
5783
|
+
}
|
|
5784
|
+
},
|
|
5785
|
+
{
|
|
5786
|
+
"match": "(?i)\\b(userid)(?!(\\.\\w+))(?=\\)|\\s|,|]|:|\\.)",
|
|
5787
|
+
"captures": {
|
|
5788
|
+
"1": {
|
|
5789
|
+
"name": "support.function.abl"
|
|
5790
|
+
}
|
|
5791
|
+
}
|
|
5792
|
+
}
|
|
5793
|
+
]
|
|
5592
5794
|
}
|
|
5593
5795
|
]
|
|
5594
5796
|
},
|
|
5595
5797
|
"abl-functions-A": {
|
|
5596
|
-
"name": "meta.function-call.abl",
|
|
5597
5798
|
"begin": "(?i)\\s*(a(?:bsolute?|bsolu?|bso?|ccumulate?|ccumula?|ccumu?|dd-interval|lias|mbiguous?|mbiguo?|mbig|scending?|scendi?|scen?|sc|udit-enabled|vailable?|vailab?|vail))\\s*(?=\\()",
|
|
5598
5799
|
"beginCaptures": {
|
|
5599
5800
|
"1": {
|
|
@@ -5613,7 +5814,6 @@
|
|
|
5613
5814
|
]
|
|
5614
5815
|
},
|
|
5615
5816
|
"abl-functions-B": {
|
|
5616
|
-
"name": "meta.function-call.abl",
|
|
5617
5817
|
"begin": "(?i)\\s*(b(?:ase64-decode|ase64-encode|ox|uffer-group-id|uffer-group-name|uffer-partition-id|uffer-tenant-id|uffer-tenant-name))\\s*(?=\\()",
|
|
5618
5818
|
"beginCaptures": {
|
|
5619
5819
|
"1": {
|
|
@@ -5633,7 +5833,6 @@
|
|
|
5633
5833
|
]
|
|
5634
5834
|
},
|
|
5635
5835
|
"abl-functions-C": {
|
|
5636
|
-
"name": "meta.function-call.abl",
|
|
5637
5836
|
"begin": "(?i)\\s*(c(?:an-do|an-find|an-query|an-set|aps|ast|hr|odepage-convert|ompares?|onnected|ount-of|urrent-changed|urrent-language?|urrent-langua?|urrent-lang|urrent-result-row|urrent-value))\\s*(?=\\()",
|
|
5638
5837
|
"beginCaptures": {
|
|
5639
5838
|
"1": {
|
|
@@ -5653,7 +5852,6 @@
|
|
|
5653
5852
|
]
|
|
5654
5853
|
},
|
|
5655
5854
|
"abl-functions-D": {
|
|
5656
|
-
"name": "meta.function-call.abl",
|
|
5657
5855
|
"begin": "(?i)\\s*(d(?:ata-source-modified|ataservers|ate|atetime|atetime-tz|ay|b-remote-host|bcodepage|bcollation|bname|bparam|brestrictions?|brestrictio?|brestrict?|brestri?|brest|btaskid|btype|bversion?|bversi?|ecimal?|ecim?|ec|ecrypt|efined|ynamic-cast|ynamic-current-value|ynamic-enum|ynamic-function?|ynamic-functi?|ynamic-func|ynamic-invoke|ynamic-next-value|ynamic-property))\\s*(?=\\()",
|
|
5658
5856
|
"beginCaptures": {
|
|
5659
5857
|
"1": {
|
|
@@ -5673,7 +5871,6 @@
|
|
|
5673
5871
|
]
|
|
5674
5872
|
},
|
|
5675
5873
|
"abl-functions-E": {
|
|
5676
|
-
"name": "meta.function-call.abl",
|
|
5677
5874
|
"begin": "(?i)\\s*(e(?:ncode|ncrypt|ntered|ntry|rror|time|xp|xtent))\\s*(?=\\()",
|
|
5678
5875
|
"beginCaptures": {
|
|
5679
5876
|
"1": {
|
|
@@ -5693,7 +5890,6 @@
|
|
|
5693
5890
|
]
|
|
5694
5891
|
},
|
|
5695
5892
|
"abl-functions-F": {
|
|
5696
|
-
"name": "meta.function-call.abl",
|
|
5697
5893
|
"begin": "(?i)\\s*(f(?:ill|irst|irst-of|rame-col|rame-db|rame-down|rame-field|rame-file|rame-index?|rame-line|rame-name|rame-row|rame-value?|rame-val))\\s*(?=\\()",
|
|
5698
5894
|
"beginCaptures": {
|
|
5699
5895
|
"1": {
|
|
@@ -5713,7 +5909,6 @@
|
|
|
5713
5909
|
]
|
|
5714
5910
|
},
|
|
5715
5911
|
"abl-functions-G": {
|
|
5716
|
-
"name": "meta.function-call.abl",
|
|
5717
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*(?=\\()",
|
|
5718
5913
|
"beginCaptures": {
|
|
5719
5914
|
"1": {
|
|
@@ -5733,7 +5928,6 @@
|
|
|
5733
5928
|
]
|
|
5734
5929
|
},
|
|
5735
5930
|
"abl-functions-H": {
|
|
5736
|
-
"name": "meta.function-call.abl",
|
|
5737
5931
|
"begin": "(?i)\\s*(h(?:andle|ash-code|ex-decode|ex-encode))\\s*(?=\\()",
|
|
5738
5932
|
"beginCaptures": {
|
|
5739
5933
|
"1": {
|
|
@@ -5753,7 +5947,6 @@
|
|
|
5753
5947
|
]
|
|
5754
5948
|
},
|
|
5755
5949
|
"abl-functions-I": {
|
|
5756
|
-
"name": "meta.function-call.abl",
|
|
5757
5950
|
"begin": "(?i)\\s*(i(?:ndex|nput|nt64|nteger?|nteg?|nt|nterval|s-attr-space?|s-attr-spa?|s-attr-s?|s-attr|s-codepage-fixed|s-column-codepage|s-db-multi-tenant|s-lead-byte|so-date))\\s*(?=\\()",
|
|
5758
5951
|
"beginCaptures": {
|
|
5759
5952
|
"1": {
|
|
@@ -5773,7 +5966,6 @@
|
|
|
5773
5966
|
]
|
|
5774
5967
|
},
|
|
5775
5968
|
"abl-functions-K": {
|
|
5776
|
-
"name": "meta.function-call.abl",
|
|
5777
5969
|
"begin": "(?i)\\s*(k(?:blabel|eycode|eyfunction?|eyfuncti?|eyfunc|eylabel|eyword|eyword-all))\\s*(?=\\()",
|
|
5778
5970
|
"beginCaptures": {
|
|
5779
5971
|
"1": {
|
|
@@ -5793,7 +5985,6 @@
|
|
|
5793
5985
|
]
|
|
5794
5986
|
},
|
|
5795
5987
|
"abl-functions-L": {
|
|
5796
|
-
"name": "meta.function-call.abl",
|
|
5797
5988
|
"begin": "(?i)\\s*(l(?:ast|ast-of|astkey|c|dbname|eft-trim|ength|ibrary|ine-counter?|ine-count|ist-events|ist-query-attrs|ist-set-attrs|ist-widgets|ocked|og|ogical?|ogic?|og?|ookup|ower))\\s*(?=\\()",
|
|
5798
5989
|
"beginCaptures": {
|
|
5799
5990
|
"1": {
|
|
@@ -5813,7 +6004,6 @@
|
|
|
5813
6004
|
]
|
|
5814
6005
|
},
|
|
5815
6006
|
"abl-functions-M": {
|
|
5816
|
-
"name": "meta.function-call.abl",
|
|
5817
6007
|
"begin": "(?i)\\s*(m(?:aximum|d5-digest|ember|essage-digest|essage-lines|inimum?|inim?|in|onth|time))\\s*(?=\\()",
|
|
5818
6008
|
"beginCaptures": {
|
|
5819
6009
|
"1": {
|
|
@@ -5833,8 +6023,7 @@
|
|
|
5833
6023
|
]
|
|
5834
6024
|
},
|
|
5835
6025
|
"abl-functions-N": {
|
|
5836
|
-
"
|
|
5837
|
-
"begin": "(?i)\\s*(n(?:ew|ext-value|ormalize|ot|ow|um-aliases?|um-alias?|um-ali|um-dbs|um-entries|um-results))\\s*(?=\\()",
|
|
6026
|
+
"begin": "(?i)\\s*(n(?:ew|ext-value|ormalize|ow|um-aliases?|um-alias?|um-ali|um-dbs|um-entries|um-results))\\s*(?=\\()",
|
|
5838
6027
|
"beginCaptures": {
|
|
5839
6028
|
"1": {
|
|
5840
6029
|
"name": "support.function.abl"
|
|
@@ -5853,7 +6042,6 @@
|
|
|
5853
6042
|
]
|
|
5854
6043
|
},
|
|
5855
6044
|
"abl-functions-O": {
|
|
5856
|
-
"name": "meta.function-call.abl",
|
|
5857
6045
|
"begin": "(?i)\\s*(o(?:psys|s-dir|s-drives?|s-error|s-getenv))\\s*(?=\\()",
|
|
5858
6046
|
"beginCaptures": {
|
|
5859
6047
|
"1": {
|
|
@@ -5873,7 +6061,6 @@
|
|
|
5873
6061
|
]
|
|
5874
6062
|
},
|
|
5875
6063
|
"abl-functions-P": {
|
|
5876
|
-
"name": "meta.function-call.abl",
|
|
5877
6064
|
"begin": "(?i)\\s*(p(?:age-number?|age-numb?|age-size|dbname|roc-handle?|roc-hand?|roc-ha|roc-status?|roc-stat?|roc-st|rocess-architecture|rogram-name|rogress|romsgs|ropath|roversion?|roversi?))\\s*(?=\\()",
|
|
5878
6065
|
"beginCaptures": {
|
|
5879
6066
|
"1": {
|
|
@@ -5893,7 +6080,6 @@
|
|
|
5893
6080
|
]
|
|
5894
6081
|
},
|
|
5895
6082
|
"abl-functions-Q": {
|
|
5896
|
-
"name": "meta.function-call.abl",
|
|
5897
6083
|
"begin": "(?i)\\s*(qu(?:ery-off-end|oter))\\s*(?=\\()",
|
|
5898
6084
|
"beginCaptures": {
|
|
5899
6085
|
"1": {
|
|
@@ -5913,7 +6099,6 @@
|
|
|
5913
6099
|
]
|
|
5914
6100
|
},
|
|
5915
6101
|
"abl-functions-R": {
|
|
5916
|
-
"name": "meta.function-call.abl",
|
|
5917
6102
|
"begin": "(?i)\\s*(r(?:-index|andom|aw|ecid|ecord-length?|ecord-leng?|ejected|elation-fields?|elation-fiel?|elation-fi|eplace|etry|eturn|eturn-value?|eturn-val|gb-value?|gb-val?|gb-v|ight-trim|ound|ow-state|owid))\\s*(?=\\()",
|
|
5918
6103
|
"beginCaptures": {
|
|
5919
6104
|
"1": {
|
|
@@ -5933,7 +6118,6 @@
|
|
|
5933
6118
|
]
|
|
5934
6119
|
},
|
|
5935
6120
|
"abl-functions-S": {
|
|
5936
|
-
"name": "meta.function-call.abl",
|
|
5937
6121
|
"begin": "(?i)\\s*(s(?:creen-lines|dbname|earch|eek|et-db-client|et-effective-tenant|et-size|etuserid?|etuser|ha1-digest|kip|pace|qrt|sl-server-name|tring|ubstitute?|ubstitu?|ubsti?|ubstring?|ubstri?|uper))\\s*(?=\\()",
|
|
5938
6122
|
"beginCaptures": {
|
|
5939
6123
|
"1": {
|
|
@@ -5953,7 +6137,6 @@
|
|
|
5953
6137
|
]
|
|
5954
6138
|
},
|
|
5955
6139
|
"abl-functions-T": {
|
|
5956
|
-
"name": "meta.function-call.abl",
|
|
5957
6140
|
"begin": "(?i)\\s*(t(?:enant-id|enant-name|enant-name-to-id|erminal|his-object|ime|imezone|o-rowid|oday|ransaction?|ransacti?|rim|runcate?|runca?|ype-of))\\s*(?=\\()",
|
|
5958
6141
|
"beginCaptures": {
|
|
5959
6142
|
"1": {
|
|
@@ -5973,7 +6156,6 @@
|
|
|
5973
6156
|
]
|
|
5974
6157
|
},
|
|
5975
6158
|
"abl-functions-U": {
|
|
5976
|
-
"name": "meta.function-call.abl",
|
|
5977
6159
|
"begin": "(?i)\\s*(u(?:nbox|serid))\\s*(?=\\()",
|
|
5978
6160
|
"beginCaptures": {
|
|
5979
6161
|
"1": {
|
|
@@ -5993,7 +6175,6 @@
|
|
|
5993
6175
|
]
|
|
5994
6176
|
},
|
|
5995
6177
|
"abl-functions-V": {
|
|
5996
|
-
"name": "meta.function-call.abl",
|
|
5997
6178
|
"begin": "(?i)\\s*(val(?:id-event|id-handle|id-object|ue))\\s*(?=\\()",
|
|
5998
6179
|
"beginCaptures": {
|
|
5999
6180
|
"1": {
|
|
@@ -6013,7 +6194,6 @@
|
|
|
6013
6194
|
]
|
|
6014
6195
|
},
|
|
6015
6196
|
"abl-functions-W": {
|
|
6016
|
-
"name": "meta.function-call.abl",
|
|
6017
6197
|
"begin": "(?i)\\s*(w(?:eekday|idget-handle?|idget-hand?|idget-ha?))\\s*(?=\\()",
|
|
6018
6198
|
"beginCaptures": {
|
|
6019
6199
|
"1": {
|
|
@@ -6033,7 +6213,6 @@
|
|
|
6033
6213
|
]
|
|
6034
6214
|
},
|
|
6035
6215
|
"abl-functions-Y": {
|
|
6036
|
-
"name": "meta.function-call.abl",
|
|
6037
6216
|
"begin": "(?i)\\s*(year)\\s*(?=\\()",
|
|
6038
6217
|
"beginCaptures": {
|
|
6039
6218
|
"1": {
|
|
@@ -6055,4 +6234,4 @@
|
|
|
6055
6234
|
},
|
|
6056
6235
|
"scopeName": "source.abl",
|
|
6057
6236
|
"uuid": "075bb86e-03ea-4fea-bac0-e11b9dc73e03"
|
|
6058
|
-
}
|
|
6237
|
+
}
|