-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
1816 lines (1816 loc) · 53.3 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "language-server",
"displayName": "InterSystems Language Server",
"description": "A language server for InterSystems ObjectScript.",
"author": "InterSystems Corporation",
"license": "SEE LICENSE IN LICENSE.txt",
"version": "2.6.6-SNAPSHOT",
"publisher": "intersystems",
"repository": {
"type": "github",
"url": "https://github.com/intersystems/language-server"
},
"bugs": {
"url": "https://github.com/intersystems/language-server/issues"
},
"homepage": "https://docs.intersystems.com/components/csp/docbook/DocBook.UI.Page.cls?KEY=GVSCO",
"icon": "images/logo.png",
"categories": [
"Programming Languages",
"Formatters",
"Linters"
],
"keywords": [
"IntelliSense",
"intersystems",
"objectscript",
"multi-root ready"
],
"engines": {
"vscode": "^1.82.0"
},
"activationEvents": [
"workspaceContains:**/*.cls",
"workspaceContains:**/*.mac",
"workspaceContains:**/*.int",
"workspaceContains:**/*.inc",
"workspaceContains:**/*.csp",
"workspaceContains:**/*.csr",
"onLanguage:objectscript",
"onLanguage:objectscript-int",
"onLanguage:objectscript-class",
"onLanguage:objectscript-macros",
"onLanguage:objectscript-csp",
"onFileSystem:isfs",
"onFileSystem:isfs-readonly",
"onFileSystem:objectscript"
],
"main": "./client/out/extension",
"capabilities": {
"untrustedWorkspaces": {
"supported": true
}
},
"contributes": {
"commands": [
{
"command": "intersystems.language-server.overrideClassMembers",
"title": "Override Class Members...",
"category": "InterSystems Language Server"
}
],
"menus": {
"commandPalette": [
{
"command": "intersystems.language-server.overrideClassMembers",
"when": "false"
}
],
"editor/context": [
{
"command": "intersystems.language-server.overrideClassMembers",
"when": "vscode-objectscript.connectActive && editorLangId == objectscript-class",
"group": "1_modification"
}
]
},
"configuration": {
"type": "object",
"title": "InterSystems Language Server",
"properties": {
"intersystems.language-server.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
},
"intersystems.language-server.formatting.commands.case": {
"scope": "resource",
"type": "string",
"enum": [
"upper",
"lower",
"word"
],
"default": "word",
"description": "Controls the case that ObjectScript commands will be changed to during a document formatting request."
},
"intersystems.language-server.formatting.commands.length": {
"scope": "resource",
"type": "string",
"enum": [
"short",
"long"
],
"default": "long",
"description": "Controls the length that ObjectScript commands will be changed to during a document formatting request."
},
"intersystems.language-server.formatting.system.case": {
"scope": "resource",
"type": "string",
"enum": [
"upper",
"lower",
"word"
],
"default": "upper",
"description": "Controls the case that ObjectScript system functions and variables will be changed to during a document formatting request."
},
"intersystems.language-server.formatting.system.length": {
"scope": "resource",
"type": "string",
"enum": [
"short",
"long"
],
"default": "long",
"description": "Controls the length that ObjectScript system functions and variables will be changed to during a document formatting request."
},
"intersystems.language-server.hover.commands": {
"scope": "window",
"type": "boolean",
"default": true,
"description": "Controls whether hover information is provided for ObjectScript commands."
},
"intersystems.language-server.hover.system": {
"scope": "window",
"type": "boolean",
"default": true,
"description": "Controls whether hover information is provided for ObjectScript system functions and variables."
},
"intersystems.language-server.hover.preprocessor": {
"scope": "window",
"type": "boolean",
"default": true,
"description": "Controls whether hover information is provided for ObjectScript preprocessor directives."
},
"intersystems.language-server.diagnostics.routines": {
"scope": "resource",
"type": "boolean",
"default": true,
"description": "Controls whether error diagnostics are provided when a routine or include file that is being referred to doesn't exist in the database."
},
"intersystems.language-server.diagnostics.parameters": {
"scope": "resource",
"type": "boolean",
"default": true,
"description": "Controls whether warning diagnostics are provided when a class Parameter has an invalid type or the assigned value of the Parameter doesn't match the declared type."
},
"intersystems.language-server.diagnostics.classes": {
"scope": "resource",
"type": "boolean",
"default": true,
"description": "Controls whether error diagnostics are provided when a class that is being referred to doesn't exist in the database."
},
"intersystems.language-server.diagnostics.deprecation": {
"scope": "resource",
"type": "boolean",
"default": true,
"description": "Controls whether strikethrough warning diagnostics are provided when a class or class member that is being referred to is deprecated."
},
"intersystems.language-server.signaturehelp.documentation": {
"scope": "window",
"type": "boolean",
"default": true,
"description": "Controls whether documentation for a method is shown when a SignatureHelp is active. NOTE: This setting does not affect documentation for macro SignatureHelp views, which is always shown."
},
"intersystems.language-server.suggestTheme": {
"scope": "window",
"type": "boolean",
"default": true,
"description": "Controls whether the extension will suggest that one of the InterSystems default themes be used if neither one is active upon extension activation."
},
"intersystems.language-server.refactor.exceptionVariable": {
"scope": "resource",
"type": "string",
"default": "ex",
"description": "The name of the exception variable inserted in a 'Wrap in Try/Catch' refactor."
},
"intersystems.language-server.formatting.expandClassNames": {
"scope": "resource",
"type": "boolean",
"default": false,
"description": "Controls whether short class names will be expanded to include a package during a document formatting request."
},
"intersystems.language-server.diagnostics.zutil": {
"scope": "resource",
"type": "boolean",
"default": true,
"markdownDescription": "Controls whether diagnostics are provided when a deprecated or superseded `$ZUTIL` function is being called."
},
"intersystems.language-server.diagnostics.suppressSyntaxErrors": {
"scope": "resource",
"type": "array",
"maxItems": 9,
"default": [],
"uniqueItems": true,
"items": {
"type": "string",
"enum": [
"COS",
"SQL",
"CLS",
"HTML",
"PYTHON",
"XML",
"JAVA",
"JAVASCRIPT",
"CSS"
]
},
"description": "Controls the languages that syntax error diagnosics will be suppressed for."
},
"intersystems.language-server.diagnostics.sqlReserved": {
"scope": "resource",
"type": "boolean",
"default": true,
"markdownDescription": "Controls whether diagnostics are provided when a [SQL reserved word](https://docs.intersystems.com/irislatest/csp/docbook/DocBook.UI.Page.cls?KEY=RSQL_reservedwords) is used in a class or property name of a persistent class."
},
"intersystems.language-server.diagnostics.undefinedVariables": {
"scope": "resource",
"type": "boolean",
"default": true,
"description": "Controls whether diagnostics are provided when a local variable may be undefined."
},
"intersystems.language-server.completion.showInternal": {
"scope": "window",
"type": "boolean",
"default": false,
"markdownDescription": "Controls whether class members with the `Internal` keyword are shown in completion lists."
},
"intersystems.language-server.completion.showGenerated": {
"scope": "window",
"type": "boolean",
"default": false,
"description": "Controls whether generated classes and class members are shown in completion lists."
},
"intersystems.language-server.completion.showDeprecated": {
"scope": "window",
"type": "boolean",
"default": false,
"description": "Controls whether deprecated classes and class members are shown in completion lists."
}
}
},
"semanticTokenTypes": [
{
"id": "ISC_Error",
"description": "InterSystems-wide error token."
},
{
"id": "ISC_Comment",
"description": "InterSystems-wide comment token."
},
{
"id": "ISC_StringLiteral",
"description": "InterSystems-wide string literal token."
},
{
"id": "ISC_NumericLiteral",
"description": "InterSystems-wide numeric literal token."
},
{
"id": "ISC_ClassName",
"description": "InterSystems-wide class and routine name token."
},
{
"id": "ISC_DocComment",
"description": "InterSystems-wide documentation comment token."
},
{
"id": "ISC_Parameter",
"description": "InterSystems-wide parameter token."
},
{
"id": "ISC_System",
"description": "InterSystems-wide system function and variable token."
},
{
"id": "ISC_Command",
"description": "InterSystems-wide command token."
},
{
"id": "ISC_Keyword",
"description": "InterSystems-wide keyword token."
},
{
"id": "ISC_ClassMember",
"description": "InterSystems-wide class member token."
},
{
"id": "ISC_LocalVariable",
"description": "InterSystems-wide local variable token."
},
{
"id": "ISC_LocalVariableUnset",
"description": "InterSystems-wide unset local variable token."
},
{
"id": "ISC_PublicVariable",
"description": "InterSystems-wide public variable and global token."
},
{
"id": "ISC_SQLKeyword",
"description": "InterSystems-wide SQL keyword and datatype token."
},
{
"id": "ISC_SQLFunction",
"description": "InterSystems-wide SQL function token."
},
{
"id": "ISC_Neutral",
"description": "InterSystems-wide neutral token."
},
{
"id": "ISC_Operator",
"description": "InterSystems-wide operator token."
},
{
"id": "ISC_Delimiter",
"description": "InterSystems-wide delimiter token."
},
{
"id": "XML_Grayout",
"description": "XML grayout token."
},
{
"id": "COS_VB",
"description": "ObjectScript VB token."
},
{
"id": "ISC_MarkupText",
"description": "InterSystems-wide markup text token."
},
{
"id": "CLS_Error",
"superType": "ISC_Error",
"description": "Class error token."
},
{
"id": "COS_Error",
"superType": "ISC_Error",
"description": "ObjectScript error token."
},
{
"id": "XML_Error",
"superType": "ISC_Error",
"description": "XML error token."
},
{
"id": "BAS_Error",
"superType": "ISC_Error",
"description": "Basic error token."
},
{
"id": "CSS_Error",
"superType": "ISC_Error",
"description": "CSS error token."
},
{
"id": "HTML_Error",
"superType": "ISC_Error",
"description": "HTML error token."
},
{
"id": "JAVA_Error",
"superType": "ISC_Error",
"description": "Java error token."
},
{
"id": "JAVASCRIPT_Error",
"superType": "ISC_Error",
"description": "Javascript error token."
},
{
"id": "MVBASIC_Error",
"superType": "ISC_Error",
"description": "MVBasic error token."
},
{
"id": "TSQL_Error",
"superType": "ISC_Error",
"description": "TSQL error token."
},
{
"id": "SQL_Error",
"superType": "ISC_Error",
"description": "SQL error token."
},
{
"id": "CLS_Comment",
"superType": "ISC_Comment",
"description": "Class comment token."
},
{
"id": "COS_Comment",
"superType": "ISC_Comment",
"description": "ObjectScript comment token."
},
{
"id": "XML_Comment",
"superType": "ISC_Comment",
"description": "XML comment token."
},
{
"id": "BAS_Comment",
"superType": "ISC_Comment",
"description": "Basic comment token."
},
{
"id": "HTML_Comment",
"superType": "ISC_Comment",
"description": "HTML comment token."
},
{
"id": "JAVA_Comment",
"superType": "ISC_Comment",
"description": "Java comment token."
},
{
"id": "JAVASCRIPT_Comment",
"superType": "ISC_Comment",
"description": "Javascript comment token."
},
{
"id": "MVBASIC_Comment",
"superType": "ISC_Comment",
"description": "MVBasic comment token."
},
{
"id": "TSQL_Comment",
"superType": "ISC_Comment",
"description": "TSQL comment token."
},
{
"id": "SQL_Comment",
"superType": "ISC_Comment",
"description": "SQL comment token."
},
{
"id": "CSS_CstyleCommentxxx",
"superType": "ISC_Comment",
"description": "CSS comment token."
},
{
"id": "CLS_StringLiteral",
"superType": "ISC_StringLiteral",
"description": "Class string literal token."
},
{
"id": "COS_String",
"superType": "ISC_StringLiteral",
"description": "ObjectScript string literal token."
},
{
"id": "XML_String",
"superType": "ISC_StringLiteral",
"description": "XML string literal token."
},
{
"id": "BAS_String",
"superType": "ISC_StringLiteral",
"description": "Basic string literal token."
},
{
"id": "CSS_String",
"superType": "ISC_StringLiteral",
"description": "CSS string literal token."
},
{
"id": "HTML_String",
"superType": "ISC_StringLiteral",
"description": "HTML string literal token."
},
{
"id": "JAVA_String",
"superType": "ISC_StringLiteral",
"description": "Java string literal token."
},
{
"id": "JAVASCRIPT_String",
"superType": "ISC_StringLiteral",
"description": "Javascript string literal token."
},
{
"id": "MVBASIC_String",
"superType": "ISC_StringLiteral",
"description": "MVBasic string literal token."
},
{
"id": "TSQL_String",
"superType": "ISC_StringLiteral",
"description": "TSQL string literal token."
},
{
"id": "SQL_String",
"superType": "ISC_StringLiteral",
"description": "SQL string literal token."
},
{
"id": "CLS_NumericLiteral",
"superType": "ISC_NumericLiteral",
"description": "Class numeric literal token."
},
{
"id": "COS_Number",
"superType": "ISC_NumericLiteral",
"description": "ObjectScript numeric literal token."
},
{
"id": "CSS_Number",
"superType": "ISC_NumericLiteral",
"description": "CSS numeric literal token."
},
{
"id": "HTML_Number",
"superType": "ISC_NumericLiteral",
"description": "HTML numeric literal token."
},
{
"id": "JAVASCRIPT_Floatingpointnumber",
"superType": "ISC_NumericLiteral",
"description": "Javascript floating point numeric literal token."
},
{
"id": "JAVA_Floatingpointnumber",
"superType": "ISC_NumericLiteral",
"description": "Java floating point numeric literal token."
},
{
"id": "TSQL_Integernumber",
"superType": "ISC_NumericLiteral",
"description": "TSQL integer numeric literal token."
},
{
"id": "TSQL_Hexadecimalnumber",
"superType": "ISC_NumericLiteral",
"description": "TSQL hexadecimal numeric literal token."
},
{
"id": "TSQL_Floatingpointnumber",
"superType": "ISC_NumericLiteral",
"description": "TSQL floating point numeric literal token."
},
{
"id": "SQL_Integernumber",
"superType": "ISC_NumericLiteral",
"description": "SQL integer numeric literal token."
},
{
"id": "SQL_Floatingpointnumber",
"superType": "ISC_NumericLiteral",
"description": "SQL floating point numeric literal token."
},
{
"id": "TSQL_Money",
"superType": "ISC_NumericLiteral",
"description": "TSQL currency literal token."
},
{
"id": "BAS_Hexadecimalinteger",
"superType": "ISC_NumericLiteral",
"description": "Basic hexadecimal numeric literal token."
},
{
"id": "BAS_Integer",
"superType": "ISC_NumericLiteral",
"description": "Basic numeric literal token."
},
{
"id": "JAVASCRIPT_Decimalinteger",
"superType": "ISC_NumericLiteral",
"description": "Javascript decimal numeric literal token."
},
{
"id": "JAVASCRIPT_Hexadecimalinteger",
"superType": "ISC_NumericLiteral",
"description": "Javascript hexadecimal numeric literal token."
},
{
"id": "JAVA_Decimalinteger",
"superType": "ISC_NumericLiteral",
"description": "Java decimal numeric literal token."
},
{
"id": "JAVA_Hexadecimalinteger",
"superType": "ISC_NumericLiteral",
"description": "Java hexidecimal numeric literal token."
},
{
"id": "JAVA_Octalinteger",
"superType": "ISC_NumericLiteral",
"description": "Java octal numeric literal token."
},
{
"id": "MVBASIC_Hexadecimalinteger",
"superType": "ISC_NumericLiteral",
"description": "MVBasic hexadecimal numeric literal token."
},
{
"id": "MVBASIC_Integer",
"superType": "ISC_NumericLiteral",
"description": "MVBasic numeric literal token."
},
{
"id": "CLS_Description",
"superType": "ISC_DocComment",
"description": "Class documentation comment token."
},
{
"id": "COS_Documentationcomment",
"superType": "ISC_DocComment",
"description": "ObjectScript documentation comment token."
},
{
"id": "CLS_ClassName",
"superType": "ISC_ClassName",
"description": "Class class name token."
},
{
"id": "CLS_RoutineName",
"superType": "ISC_ClassName",
"description": "Class routine name token."
},
{
"id": "COS_Objectname",
"superType": "ISC_ClassName",
"description": "ObjectScript class name token."
},
{
"id": "COS_PreProcessorFunction",
"superType": "COS_PreProcessor",
"description": "ObjectScript preprocessor function token."
},
{
"id": "COS_PreProcessorCommand",
"superType": "COS_PreProcessor",
"description": "ObjectScript preprocessor command token."
},
{
"id": "CLS_ClassParameter",
"superType": "ISC_Parameter",
"description": "Class class parameter token."
},
{
"id": "CLS_Parameter",
"superType": "ISC_Parameter",
"description": "Class parameter token."
},
{
"id": "COS_Parameter",
"superType": "ISC_Parameter",
"description": "ObjectScript parameter token."
},
{
"id": "COS_Function",
"superType": "ISC_System",
"description": "ObjectScript function token."
},
{
"id": "COS_Systemvariable",
"superType": "ISC_System",
"description": "ObjectScript system variable token."
},
{
"id": "CLS_Keyword",
"superType": "ISC_Keyword",
"description": "Class keyword token."
},
{
"id": "COS_ObjectClass",
"superType": "ISC_Keyword",
"description": "ObjectScript ##class token."
},
{
"id": "COS_ObjectSuper",
"superType": "ISC_Keyword",
"description": "ObjectScript ##super token."
},
{
"id": "COS_ObjectThis",
"superType": "ISC_Keyword",
"description": "ObjectScript this token."
},
{
"id": "COS_SQL",
"superType": "ISC_Keyword",
"description": "ObjectScript SQL token."
},
{
"id": "CLS_ClassMember",
"superType": "ISC_ClassMember",
"description": "Class class member token."
},
{
"id": "CLS_Identifier",
"superType": "ISC_ClassMember",
"description": "Class identifier token."
},
{
"id": "CLS_SqlIdentifier",
"superType": "ISC_ClassMember",
"description": "Class SQL identifier token."
},
{
"id": "COS_Objectproperty",
"superType": "ISC_ClassMember",
"description": "ObjectScript object property token."
},
{
"id": "COS_Objectmethod",
"superType": "ISC_ClassMember",
"description": "ObjectScript object method token."
},
{
"id": "COS_Objectattribute",
"superType": "ISC_ClassMember",
"description": "ObjectScript object attribute token."
},
{
"id": "COS_Objectmember",
"superType": "ISC_ClassMember",
"description": "ObjectScript object member token."
},
{
"id": "COS_Label",
"superType": "ISC_ClassMember",
"description": "ObjectScript label token."
},
{
"id": "COS_Routine",
"superType": "ISC_ClassName",
"description": "ObjectScript routine token."
},
{
"id": "COS_Localvariableprivate",
"superType": "ISC_LocalVariable",
"description": "ObjectScript local variable token."
},
{
"id": "COS_Localundeclared",
"superType": "ISC_LocalVariable",
"description": "ObjectScript undeclared local variable token."
},
{
"id": "COS_Globalvariable",
"superType": "ISC_PublicVariable",
"description": "ObjectScript global token."
},
{
"id": "COS_Localvariable",
"superType": "ISC_PublicVariable",
"description": "ObjectScript public variable token."
},
{
"id": "COS_Structuredvariable",
"superType": "ISC_System",
"description": "ObjectScript structured variable token."
},
{
"id": "TSQL_Identifier",
"superType": "ISC_ClassMember",
"description": "TSQL class member token."
},
{
"id": "SQL_Identifier",
"superType": "ISC_ClassMember",
"description": "SQL class member token."
},
{
"id": "SQL_Hostvariablename",
"superType": "ISC_PublicVariable",
"description": "SQL host variable token."
},
{
"id": "SQL_Hostreferencevariablename",
"superType": "ISC_PublicVariable",
"description": "SQL host reference variable token."
},
{
"id": "SQL_Statementkeyword",
"superType": "ISC_SQLKeyword",
"description": "SQL statement keyword token."
},
{
"id": "SQL_Qualifierkeyword",
"superType": "ISC_SQLKeyword",
"description": "SQL qualifier keyword token."
},
{
"id": "SQL_Expressionkeyword",
"superType": "ISC_SQLKeyword",
"description": "SQL expression keyword token."
},
{
"id": "TSQL_Statementkeyword",
"superType": "ISC_SQLKeyword",
"description": "TSQL statement keyword token."
},
{
"id": "TSQL_Qualifierkeyword",
"superType": "ISC_SQLKeyword",
"description": "TSQL qualifier keyword token."
},
{
"id": "TSQL_Expressionkeyword",
"superType": "ISC_SQLKeyword",
"description": "TSQL expression keyword token."
},
{
"id": "TSQL_Controlkeyword",
"superType": "ISC_SQLKeyword",
"description": "TSQL control keyword token."
},
{
"id": "SQL_Hostextrinsicfunction",
"superType": "ISC_SQLFunction",
"description": "SQL host extrinsic function token."
},
{
"id": "SQL_Scalarfunctionname",
"superType": "ISC_SQLFunction",
"description": "SQL scalar function token."
},
{
"id": "SQL_ODBCfunctionname",
"superType": "ISC_SQLFunction",
"description": "SQL ODBC function token."
},
{
"id": "SQL_Aggregatefunctionname",
"superType": "ISC_SQLFunction",
"description": "SQL aggregate function token."
},
{
"id": "TSQL_Scalarfunctionname",
"superType": "ISC_SQLFunction",
"description": "TSQL scalar function token."
},
{
"id": "TSQL_ODBCfunctionname",
"superType": "ISC_SQLFunction",
"description": "TSQL ODBC function token."
},
{
"id": "TSQL_Aggregatefunctionname",
"superType": "ISC_SQLFunction",
"description": "TSQL aggregate function token."
},
{
"id": "TSQL_Userdefinedfunctionname",
"superType": "ISC_SQLFunction",
"description": "TSQL user defined function token."
},
{
"id": "TSQL_Unknownfunctionname",
"superType": "ISC_SQLFunction",
"description": "TSQL unknown function token."
},
{
"id": "SQL_Datatype",
"superType": "ISC_SQLKeyword",
"description": "SQL datatype token."
},
{
"id": "TSQL_Datatype",
"superType": "ISC_SQLKeyword",
"description": "TSQL datatype token."
},
{
"id": "SQL_Hostinstancename",
"superType": "ISC_PublicVariable",
"description": "SQL host instance variable token."
},
{
"id": "COS_Objectinstancevar",
"superType": "ISC_PublicVariable",
"description": "ObjectScript instance variable token."
},
{
"id": "COS_Extrinsicfunction",
"superType": "ISC_ClassMember",
"description": "ObjectScript extrinsic function token."
},
{
"id": "COS_Macro",
"superType": "ISC_ClassMember",
"description": "ObjectScript macro token."
},
{
"id": "COS_PreProcessor",
"superType": "ISC_Keyword",
"description": "ObjectScript preprocessor token."
},
{
"id": "SQL_CSPPPextension",
"superType": "ISC_SQLFunction",
"description": "SQL CSP/preprocessor token."
},
{
"id": "COS_HTML",
"superType": "ISC_Keyword",
"description": "ObjectScript HTML token."
},
{
"id": "COS_Javascript",
"superType": "ISC_Keyword",
"description": "ObjectScript Javascript token."
},
{
"id": "COS_Neutral",
"superType": "ISC_Neutral",
"description": "ObjectScript neutral token."
},
{
"id": "COS_UnknownZcommand",
"superType": "ISC_Command",
"description": "ObjectScript unknown Z command token."
},
{
"id": "COS_UnknownZfunction",
"superType": "ISC_System",
"description": "ObjectScript unknown Z function token."
},
{
"id": "COS_UnknownZvariable",
"superType": "ISC_System",
"description": "ObjectScript unknown Z variable token."
},
{
"id": "COS_JSONkeyword",
"superType": "ISC_Keyword",
"description": "ObjectScript JSON keyword token."
},
{
"id": "COS_Objectdotoperator",
"superType": "ISC_Operator",
"description": "ObjectScript dot operator token."
},
{
"id": "COS_Indirection",
"superType": "ISC_Operator",
"description": "ObjectScript indirection token."
},
{
"id": "COS_Operator",
"superType": "ISC_Operator",
"description": "ObjectScript operator token."
},
{
"id": "BAS_Assignmentoperator",
"superType": "ISC_Operator",
"description": "Basic assignment operator token."
},
{
"id": "BAS_Binaryoperator",
"superType": "ISC_Operator",
"description": "Basic binary operator token."
},
{
"id": "BAS_Objectoperator",
"superType": "ISC_Operator",
"description": "Basic object operator token."
},
{
"id": "BAS_Relationaloperator",
"superType": "ISC_Operator",
"description": "Basic relational operator token."
},
{
"id": "BAS_Unaryoperator",
"superType": "ISC_Operator",
"description": "Basic unary operator token."
},
{
"id": "CSS_Operator",
"superType": "ISC_Operator",
"description": "CSS operator token."
},
{
"id": "JAVA_Operator",
"superType": "ISC_Operator",
"description": "Java operator token."
},
{
"id": "JAVASCRIPT_Operator",