monaco-yql-languages 1.19.0 → 1.20.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.
@@ -144,6 +144,7 @@ export const language = {
144
144
  [/./, 'comment'],
145
145
  ],
146
146
  cppComment: [
147
+ [/\/\*/, { token: 'comment.quote', next: '@cppComment' }],
147
148
  [/[^*/]+/, 'comment'],
148
149
  [/\*\//, { token: 'comment.quote', next: '@pop' }],
149
150
  [/./, 'comment'],
@@ -3,24 +3,37 @@
3
3
  "tokenizer": {
4
4
  "root": [
5
5
  {
6
- "include": "@whitespace"
6
+ "include": "@beforable"
7
7
  },
8
8
  ["(#.*)", "comment"],
9
+ [
10
+ "\\b(set_package_version|override_library|package|library|declare|return|lambda|import|export|quote|block|let)\\b",
11
+ "keyword"
12
+ ],
9
13
  ["\\b(world)\\b", "variable"],
14
+ ["([A-Z][A-Za-z_\\-0-9]*!)", "string.tablepath"],
15
+ ["\\b(([a-zA-Z_])([a-zA-Z_0-9])*)(?=\\\u003C)\\b", "keyword.type"],
16
+ ["\\b(DECIMAL)\\b", "keyword.type"],
17
+ [
18
+ "\\b(pgpg_brin_minmax_multi_summary|pganycompatiblemultirange|pgpg_brin_bloom_summary|pganycompatiblenonarray|pganycompatiblerange|pganycompatiblearray|pgtable_am_handler|pglanguage_handler|pgindex_am_handler|pgpg_dependencies|_pgtstzmultirange|_pgint8multirange|_pgint4multirange|_pgdatemultirange|pgtstzmultirange|pgpg_ddl_command|pgint8multirange|pgint4multirange|pgdatemultirange|_pgtxid_snapshot|_pgregdictionary|_pgnummultirange|pgtxid_snapshot|pgregdictionary|pgnummultirange|pgevent_trigger|pganymultirange|pganycompatible|_pgtsmultirange|_pgregprocedure|_pgregnamespace|_pgregcollation|_pgpg_attribute|pgtsmultirange|pgregprocedure|pgregnamespace|pgregcollation|pgpg_node_tree|pgpg_ndistinct|pgpg_attribute|_pgtimestamptz|_pgregoperator|_pgpg_snapshot|pgtsm_handler|pgtimestamptz|pgregoperator|pgpg_snapshot|pgpg_mcv_list|pgfdw_handler|pganynonarray|_pgint2vector|TzTimestamp64|pgint2vector|pganyelement|_pgtstzrange|_pgtimestamp|_pgregconfig|_pgrefcursor|_pgoidvector|_pgint8range|_pgint4range|_pggtsvector|_pgdaterange|TzDatetime64|JsonDocument|pgtstzrange|pgtimestamp|pgregconfig|pgrefcursor|pgoidvector|pgint8range|pgint4range|pggtsvector|pgdaterange|_pgtsvector|_pgregclass|_pgpg_class|_pgnumrange|_pgmacaddr8|_pgjsonpath|_pginterval|TzTimestamp|Timestamp64|pgtsvector|pgregclass|pgpg_class|pgnumrange|pgmacaddr8|pgjsonpath|pginterval|pginternal|pganyrange|pganyarray|_pgvarchar|_pgtsrange|_pgtsquery|_pgregtype|_pgregrole|_pgregproc|_pgregoper|_pgpolygon|_pgpg_type|_pgpg_proc|_pgnumeric|_pgmacaddr|_pgcstring|_pgaclitem|TzDatetime|Interval64|Datetime64|pgvarchar|pgunknown|pgtsrange|pgtsquery|pgtrigger|pgregtype|pgregrole|pgregproc|pgregoper|pgpolygon|pgpg_type|pgpg_proc|pgnumeric|pgmacaddr|pgcstring|pganyenum|pgaclitem|_pgvarbit|_pgtimetz|_pgrecord|_pgpg_lsn|_pgfloat8|_pgfloat4|_pgcircle|_pgbpchar|Timestamp|EmptyList|EmptyDict|pgvarbit|pgtimetz|pgrecord|pgpg_lsn|pgfloat8|pgfloat4|pgcircle|pgbpchar|_pgpoint|_pgmoney|_pgjsonb|_pgbytea|TzDate32|Interval|DyNumber|Datetime|pgpoint|pgmoney|pgjsonb|pgbytea|_pgxid8|_pguuid|_pgtime|_pgtext|_pgpath|_pgname|_pglseg|_pgline|_pgjson|_pgint8|_pgint4|_pgint2|_pginet|_pgdate|_pgcidr|_pgchar|_pgbool|Generic|pgxid8|pgvoid|pguuid|pgtime|pgtext|pgpath|pgname|pglseg|pgline|pgjson|pgint8|pgint4|pgint2|pginet|pgdate|pgcidr|pgchar|pgbool|_pgxml|_pgxid|_pgtid|_pgoid|_pgcid|_pgbox|_pgbit|Uint64|Uint32|Uint16|TzDate|String|Double|Date32|pgxml|pgxid|pgtid|pgoid|pgcid|pgbox|pgbit|pgany|Uint8|Int64|Int32|Int16|Float|Yson|Void|Uuid|Utf8|Unit|Json|Int8|Date|Bool)\\b",
19
+ "keyword.type"
20
+ ],
21
+ ["([A-Z][A-Za-z_\\-0-9]*)", "support.function"],
10
22
  ["(\u0027[A-Za-z_\\-0-9]+\\.[A-Za-z_\\-0-9]+)", "support.function"],
23
+ ["(\u0027\"[A-Za-z_\\-0-9]+\\.[A-Za-z_\\-0-9]+\")", "support.function"],
11
24
  ["(\u0027[A-Za-z_\\-0-9]+)", "number"],
12
25
  ["\\b([a-z_0-9][A-Za-z_\\-0-9]*)\\b", "identifier"],
13
- ["(\\\"[^\\\"\\n]*\\\")", "string"],
14
- ["(\\@\\@(.|\\n)*\\@\\@)", "string"]
26
+ {
27
+ "include": "@whitespace"
28
+ }
15
29
  ],
16
30
  "whitespace": [
17
31
  ["(\\s+)", "white"],
18
- ["\\@\\@", "string", "@stringLiteral"],
19
- ["\\(", "keyword", "@keyword1"],
20
- ["\\(", "keyword", "@quotedIdentifier1"],
21
- ["\\(", "keyword", "@functionIdentifier1"]
32
+ ["\\\"", "string", "@stringLiteral\""],
33
+ ["\\@\\@", "string", "@stringLiteral@@"]
22
34
  ],
23
- "stringLiteral": [
35
+ "beforable": [],
36
+ "stringLiteral\"": [
24
37
  [
25
38
  "#py",
26
39
  {
@@ -42,12 +55,46 @@
42
55
  [
43
56
  "{",
44
57
  {
45
- "nextEmbedded": "json",
58
+ "nextEmbedded": "javascript",
46
59
  "goBack": 1,
47
60
  "next": "@embedded",
48
- "token": "string.json"
61
+ "token": "string.js"
49
62
  }
50
63
  ],
64
+ ["\\\\.", "string.escape"],
65
+ ["[^\\\"]", "string"],
66
+ ["\\\"", "string", "@pop"],
67
+ ["\\\"", "string"]
68
+ ],
69
+ "stringLiteral@@": [
70
+ [
71
+ "#py",
72
+ {
73
+ "nextEmbedded": "python",
74
+ "goBack": 3,
75
+ "next": "@embedded",
76
+ "token": "string.python"
77
+ }
78
+ ],
79
+ [
80
+ "\\\/\\\/js",
81
+ {
82
+ "nextEmbedded": "javascript",
83
+ "goBack": 4,
84
+ "next": "@embedded",
85
+ "token": "string.js"
86
+ }
87
+ ],
88
+ [
89
+ "{",
90
+ {
91
+ "nextEmbedded": "javascript",
92
+ "goBack": 1,
93
+ "next": "@embedded",
94
+ "token": "string.js"
95
+ }
96
+ ],
97
+ ["\\@\\@\\@\\@", "string.escape"],
51
98
  ["[^\\@\\@]", "string"],
52
99
  ["\\@\\@", "string", "@pop"],
53
100
  ["\\@\\@", "string"]
@@ -61,15 +108,6 @@
61
108
  "token": "@rematch"
62
109
  }
63
110
  ]
64
- ],
65
- "keyword1": [
66
- [
67
- "(set_package_version|override_library|package|library|declare|return|lambda|import|export|quote|block|let)",
68
- "keyword",
69
- "@pop"
70
- ]
71
- ],
72
- "quotedIdentifier1": [["([A-Za-z_\\-0-9]+!)", "string.tablepath", "@pop"]],
73
- "functionIdentifier1": [["([A-Z][A-Za-z_\\-0-9]*)", "support.function", "@pop"]]
111
+ ]
74
112
  }
75
113
  }
@@ -3,20 +3,17 @@
3
3
  "tokenizer": {
4
4
  "root": [
5
5
  {
6
- "include": "@whitespace"
6
+ "include": "@beforable"
7
7
  },
8
8
  ["(((\\\/\\*(.|\\n)*?\\*\\\/)|(\\-\\-[^\\n\\r]*(\\r\\n?|\\n|$))))", "comment"],
9
- [
10
- "\\b(replication_factor|force_infer_schema|replicationfactor|compression_codec|forceinferschema|compressioncodec|primary_medium|monotonic_keys|ignore_type_v3|security_tags|primarymedium|monotonickeys|erasure_codec|column_groups|securitytags|infer_scheme|infer_schema|ignoretypev3|erasurecodec|columngroups|inferscheme|inferschema|user_attrs|non_unique|expiration|userattrs|unordered|nonUnique|keep_meta|truncate|keepmeta|inline|xlock|media)\\b",
11
- "constant"
12
- ],
13
- ["\\b(([a-zA-Z_])([a-zA-Z_0-9])*\\:\\:([a-zA-Z_])([a-zA-Z_0-9])*)\\b", "support.function"],
14
- ["\\b(([a-zA-Z_])([a-zA-Z_0-9])*)(?=\\()\\b", "support.function"],
15
9
  ["\\b(([a-zA-Z_])([a-zA-Z_0-9])*)(?=\\\u003C)\\b", "keyword.type"],
10
+ ["\\b(DECIMAL)\\b", "keyword.type"],
16
11
  [
17
12
  "\\b(pgpg_brin_minmax_multi_summary|pganycompatiblemultirange|pgpg_brin_bloom_summary|pganycompatiblenonarray|pganycompatiblerange|pganycompatiblearray|pgtable_am_handler|pglanguage_handler|pgindex_am_handler|pgpg_dependencies|_pgtstzmultirange|_pgint8multirange|_pgint4multirange|_pgdatemultirange|pgtstzmultirange|pgpg_ddl_command|pgint8multirange|pgint4multirange|pgdatemultirange|_pgtxid_snapshot|_pgregdictionary|_pgnummultirange|pgtxid_snapshot|pgregdictionary|pgnummultirange|pgevent_trigger|pganymultirange|pganycompatible|_pgtsmultirange|_pgregprocedure|_pgregnamespace|_pgregcollation|_pgpg_attribute|pgtsmultirange|pgregprocedure|pgregnamespace|pgregcollation|pgpg_node_tree|pgpg_ndistinct|pgpg_attribute|_pgtimestamptz|_pgregoperator|_pgpg_snapshot|pgtsm_handler|pgtimestamptz|pgregoperator|pgpg_snapshot|pgpg_mcv_list|pgfdw_handler|pganynonarray|_pgint2vector|TzTimestamp64|pgint2vector|pganyelement|_pgtstzrange|_pgtimestamp|_pgregconfig|_pgrefcursor|_pgoidvector|_pgint8range|_pgint4range|_pggtsvector|_pgdaterange|TzDatetime64|JsonDocument|pgtstzrange|pgtimestamp|pgregconfig|pgrefcursor|pgoidvector|pgint8range|pgint4range|pggtsvector|pgdaterange|_pgtsvector|_pgregclass|_pgpg_class|_pgnumrange|_pgmacaddr8|_pgjsonpath|_pginterval|TzTimestamp|Timestamp64|pgtsvector|pgregclass|pgpg_class|pgnumrange|pgmacaddr8|pgjsonpath|pginterval|pginternal|pganyrange|pganyarray|_pgvarchar|_pgtsrange|_pgtsquery|_pgregtype|_pgregrole|_pgregproc|_pgregoper|_pgpolygon|_pgpg_type|_pgpg_proc|_pgnumeric|_pgmacaddr|_pgcstring|_pgaclitem|TzDatetime|Interval64|Datetime64|pgvarchar|pgunknown|pgtsrange|pgtsquery|pgtrigger|pgregtype|pgregrole|pgregproc|pgregoper|pgpolygon|pgpg_type|pgpg_proc|pgnumeric|pgmacaddr|pgcstring|pganyenum|pgaclitem|_pgvarbit|_pgtimetz|_pgrecord|_pgpg_lsn|_pgfloat8|_pgfloat4|_pgcircle|_pgbpchar|Timestamp|EmptyList|EmptyDict|pgvarbit|pgtimetz|pgrecord|pgpg_lsn|pgfloat8|pgfloat4|pgcircle|pgbpchar|_pgpoint|_pgmoney|_pgjsonb|_pgbytea|TzDate32|Interval|DyNumber|Datetime|pgpoint|pgmoney|pgjsonb|pgbytea|_pgxid8|_pguuid|_pgtime|_pgtext|_pgpath|_pgname|_pglseg|_pgline|_pgjson|_pgint8|_pgint4|_pgint2|_pginet|_pgdate|_pgcidr|_pgchar|_pgbool|Generic|pgxid8|pgvoid|pguuid|pgtime|pgtext|pgpath|pgname|pglseg|pgline|pgjson|pgint8|pgint4|pgint2|pginet|pgdate|pgcidr|pgchar|pgbool|_pgxml|_pgxid|_pgtid|_pgoid|_pgcid|_pgbox|_pgbit|Uint64|Uint32|Uint16|TzDate|String|Double|Date32|pgxml|pgxid|pgtid|pgoid|pgcid|pgbox|pgbit|pgany|Uint8|Int64|Int32|Int16|Float|Yson|Void|Uuid|Utf8|Unit|Json|Int8|Date|Bool)\\b",
18
13
  "keyword.type"
19
14
  ],
15
+ ["\\b(([a-zA-Z_])([a-zA-Z_0-9])*\\:\\:([a-zA-Z_])([a-zA-Z_0-9])*)\\b", "support.function"],
16
+ ["\\b(([a-zA-Z_])([a-zA-Z_0-9])*)(?=\\()\\b", "support.function"],
20
17
  [
21
18
  "\\b((([0-9]+)\\.[0-9]*([eE](\\+|\\-)?([0-9]+))?|([0-9]+)([eE](\\+|\\-)?([0-9]+)))([fF]|[pP]([fF](4|8)|[nN])?)?)\\b",
22
19
  "number"
@@ -29,7 +26,7 @@
29
26
  ["\\b(TRUE)\\b", "number"],
30
27
  ["\\b(FALSE)\\b", "number"],
31
28
  [
32
- "\\b(CURRENT_TIMESTAMP|MATCH_RECOGNIZE|UNCONDITIONAL|DYNAMICLINEAR|AUTOINCREMENT|MILLISECONDS|MICROSECONDS|EMPTY_ACTION|CURRENT_TIME|CURRENT_DATE|TRANSACTION|TABLESAMPLE|REPLICATION|NANOSECONDS|JSON_EXISTS|INCREMENTAL|CONDITIONAL|TABLESTORE|REPEATABLE|REFERENCES|PRIVILEGES|JSON_VALUE|JSON_QUERY|DEFERRABLE|CONSTRAINT|COLLECTION|CLASSIFIER|CHANGEFEED|ATTRIBUTES|ASYMMETRIC|WATERMARK|UNMATCHED|UNBOUNDED|TEMPORARY|SYMMETRIC|STREAMING|SAVEPOINT|RETURNING|PRECEDING|PARTITION|INTERSECT|INITIALLY|INCREMENT|IMMEDIATE|FOLLOWING|EXCLUSIVE|EXCLUSION|ENCRYPTED|DIRECTORY|BERNOULLI|TRANSFER|SUBQUERY|SEQUENCE|ROLLBACK|RESTRICT|RESOURCE|PASSWORD|PARALLEL|OPTIONAL|MEASURES|INHERITS|GROUPING|FUNCTION|EXTERNAL|EVALUATE|DISTINCT|DESCRIBE|DEFERRED|DATABASE|CONSUMER|CONFLICT|CALLABLE|WRAPPER|WITHOUT|VIRTUAL|VARIANT|UNKNOWN|TRIGGER|SYMBOLS|SECONDS|RESTORE|RESTART|RESPECT|REPLACE|RELEASE|REINDEX|PROCESS|PRIMARY|PRESORT|PERMUTE|PATTERN|PASSING|NOTNULL|NOLOGIN|NATURAL|MATCHES|INSTEAD|INITIAL|INDEXED|FOREIGN|FLATTEN|EXPLAIN|EXCLUDE|DISCARD|DISABLE|DEFAULT|DECLARE|DECIMAL|CURRENT|CONNECT|COMPACT|COLUMNS|COLLATE|CASCADE|BITCAST|BETWEEN|AUTOMAP|ANALYZE|WINDOW|VALUES|VACUUM|UPSERT|UPDATE|UNIQUE|TAGGED|TABLES|SYSTEM|SUBSET|STRUCT|STREAM|SOURCE|SELECT|SECRET|SCHEMA|SAMPLE|ROLLUP|REVOKE|REVERT|RETURN|RESULT|RENAME|REMOVE|REGEXP|REDUCE|PRAGMA|OTHERS|OPTION|OFFSET|OBJECT|MODIFY|MANAGE|LINEAR|LEGACY|ISNULL|INSERT|IMPORT|IGNORE|HAVING|GROUPS|GLOBAL|FILTER|FAMILY|EXPORT|EXISTS|EXCEPT|ESCAPE|DETACH|DELETE|DEFINE|CREATE|COMMIT|COLUMN|BEFORE|BACKUP|ATTACH|ASSUME|ACTION|WHERE|USING|UNION|TUPLE|TOPIC|TABLE|START|RLIKE|RIGHT|RESET|RANGE|RAISE|QUEUE|QUERY|OWNER|OUTER|ORDER|NULLS|MATCH|LOGIN|LOCAL|LIMIT|INNER|INDEX|ILIKE|GROUP|GRANT|FIRST|FALSE|ERROR|ERASE|EMPTY|CROSS|COVER|CHECK|BEGIN|BATCH|ASYNC|ARRAY|ALTER|AFTER|ABORT|WITH|WHEN|VIEW|USER|TYPE|TRUE|TIES|THEN|TEMP|SYNC|SKIP|SHOW|SETS|SEMI|SEEK|ROWS|POOL|PLAN|PAST|OVER|ONLY|OMIT|NULL|NEXT|LIST|LIKE|LEFT|LAST|JOIN|INTO|HASH|GLOB|FULL|FROM|FLOW|FAIL|ENUM|ELSE|EACH|DROP|DICT|DESC|DATA|CUBE|CAST|CASE|ANSI|XOR|USE|SET|ROW|PER|ONE|NOT|KEY|HOP|FOR|END|ASC|ANY|AND|ALL|ADD|TO|OR|ON|OF|NO|IS|IN|IF|DO|BY|AT|AS)\\b",
29
+ "\\b(replication_factor|force_infer_schema|replicationfactor|compression_codec|CURRENT_TIMESTAMP|forceinferschema|compressioncodec|MATCH_RECOGNIZE|primary_medium|monotonic_keys|ignore_type_v3|security_tags|primarymedium|monotonickeys|erasure_codec|column_groups|UNCONDITIONAL|DYNAMICLINEAR|AUTOINCREMENT|securitytags|infer_scheme|infer_schema|ignoretypev3|erasurecodec|columngroups|MILLISECONDS|MICROSECONDS|EMPTY_ACTION|CURRENT_TIME|CURRENT_DATE|inferscheme|inferschema|TRANSACTION|TABLESAMPLE|REPLICATION|NANOSECONDS|JSON_EXISTS|INCREMENTAL|CONDITIONAL|user_attrs|non_unique|expiration|TABLESTORE|REPEATABLE|REFERENCES|PRIVILEGES|JSON_VALUE|JSON_QUERY|DEFERRABLE|CONSTRAINT|COLLECTION|CLASSIFIER|CHANGEFEED|ATTRIBUTES|ASYMMETRIC|userattrs|unordered|nonUnique|keep_meta|WATERMARK|UNMATCHED|UNBOUNDED|TEMPORARY|SYMMETRIC|STREAMING|SAVEPOINT|RETURNING|PRECEDING|PARTITION|INTERSECT|INITIALLY|INCREMENT|IMMEDIATE|FOLLOWING|EXCLUSIVE|EXCLUSION|ENCRYPTED|DIRECTORY|BERNOULLI|truncate|keepmeta|TRANSFER|SUBQUERY|SEQUENCE|ROLLBACK|RESTRICT|RESOURCE|PASSWORD|PARALLEL|OPTIONAL|MEASURES|INHERITS|GROUPING|FUNCTION|EXTERNAL|EVALUATE|DISTINCT|DESCRIBE|DEFERRED|DATABASE|CONSUMER|CONFLICT|CALLABLE|WRAPPER|WITHOUT|VIRTUAL|VARIANT|UNKNOWN|TRIGGER|SYMBOLS|SECONDS|RESTORE|RESTART|RESPECT|REPLACE|RELEASE|REINDEX|PROCESS|PRIMARY|PRESORT|PERMUTE|PATTERN|PASSING|NOTNULL|NOLOGIN|NATURAL|MATCHES|INSTEAD|INITIAL|INDEXED|FOREIGN|FLATTEN|EXPLAIN|EXCLUDE|DISCARD|DISABLE|DEFAULT|DECLARE|DECIMAL|CURRENT|CONNECT|COMPACT|COLUMNS|COLLATE|CASCADE|BITCAST|BETWEEN|AUTOMAP|ANALYZE|inline|WINDOW|VALUES|VACUUM|UPSERT|UPDATE|UNIQUE|TAGGED|TABLES|SYSTEM|SUBSET|STRUCT|STREAM|SOURCE|SELECT|SECRET|SCHEMA|SAMPLE|ROLLUP|REVOKE|REVERT|RETURN|RESULT|RENAME|REMOVE|REGEXP|REDUCE|PRAGMA|OTHERS|OPTION|OFFSET|OBJECT|MODIFY|MANAGE|LINEAR|LEGACY|ISNULL|INSERT|IMPORT|IGNORE|HAVING|GROUPS|GLOBAL|FILTER|FAMILY|EXPORT|EXISTS|EXCEPT|ESCAPE|DETACH|DELETE|DEFINE|CREATE|COMMIT|COLUMN|BEFORE|BACKUP|ATTACH|ASSUME|ACTION|xlock|media|WHERE|USING|UNION|TUPLE|TOPIC|TABLE|START|RLIKE|RIGHT|RESET|RANGE|RAISE|QUEUE|QUERY|OWNER|OUTER|ORDER|NULLS|MATCH|LOGIN|LOCAL|LIMIT|INNER|INDEX|ILIKE|GROUP|GRANT|FIRST|FALSE|ERROR|ERASE|EMPTY|CROSS|COVER|CHECK|BEGIN|BATCH|ASYNC|ARRAY|ALTER|AFTER|ABORT|WITH|WHEN|VIEW|USER|TYPE|TRUE|TIES|THEN|TEMP|SYNC|SKIP|SHOW|SETS|SEMI|SEEK|ROWS|POOL|PLAN|PAST|OVER|ONLY|OMIT|NULL|NEXT|LIST|LIKE|LEFT|LAST|JOIN|INTO|HASH|GLOB|FULL|FROM|FLOW|FAIL|ENUM|ELSE|EACH|DROP|DICT|DESC|DATA|CUBE|CAST|CASE|ANSI|XOR|USE|SET|ROW|PER|ONE|NOT|KEY|HOP|FOR|END|ASC|ANY|AND|ALL|ADD|TO|OR|ON|OF|NO|IS|IN|IF|DO|BY|AT|AS)\\b",
33
30
  "keyword"
34
31
  ],
35
32
  ["(\\`(\\\\(.|\\n)|\\`\\`|[^`\\\\])*\\`)", "string.tablepath"],
@@ -39,20 +36,25 @@
39
36
  [
40
37
  "(((((\\\u0027([^\u0027\\\\]|(\\\\(.|\\n)))*\\\u0027))|((\\\"([^\"\\\\]|(\\\\(.|\\n)))*\\\"))|((\\@\\@(.|\\n)*?\\@\\@)+\\@?))([sSuUyYjJ]|[pP]([tTbBvV])?)?))",
41
38
  "string"
42
- ]
39
+ ],
40
+ {
41
+ "include": "@whitespace"
42
+ }
43
43
  ],
44
44
  "whitespace": [
45
45
  ["(( |\\r|\\t|\\f|\\n))", "white"],
46
- ["\\\/\\*", "comment", "@comment"],
47
- ["\\@\\@", "string", "@stringLiteral"],
48
- ["PRAGMA( |\\r|\\t|\\f|\\n)", "keyword", "@optionIdentifier1"]
46
+ ["\\\/\\*", "comment", "@comment\/*"],
47
+ ["\\\u0027", "string", "@stringLiteral\u0027"],
48
+ ["\\\"", "string", "@stringLiteral\""],
49
+ ["\\@\\@", "string", "@stringLiteral@@"]
49
50
  ],
50
- "comment": [
51
+ "beforable": [["PRAGMA( |\\r|\\t|\\f|\\n)", "keyword", "@optionIdentifier1"]],
52
+ "comment\/*": [
51
53
  ["[^\\\/\\*]", "comment"],
52
54
  ["\\*\\\/", "comment", "@pop"],
53
55
  ["\\\/\\*", "comment"]
54
56
  ],
55
- "stringLiteral": [
57
+ "stringLiteral\u0027": [
56
58
  [
57
59
  "#py",
58
60
  {
@@ -74,12 +76,79 @@
74
76
  [
75
77
  "{",
76
78
  {
77
- "nextEmbedded": "json",
79
+ "nextEmbedded": "javascript",
78
80
  "goBack": 1,
79
81
  "next": "@embedded",
80
- "token": "string.json"
82
+ "token": "string.js"
83
+ }
84
+ ],
85
+ ["\\\\.", "string.escape"],
86
+ ["[^\\\u0027]", "string"],
87
+ ["\\\u0027", "string", "@pop"],
88
+ ["\\\u0027", "string"]
89
+ ],
90
+ "stringLiteral\"": [
91
+ [
92
+ "#py",
93
+ {
94
+ "nextEmbedded": "python",
95
+ "goBack": 3,
96
+ "next": "@embedded",
97
+ "token": "string.python"
98
+ }
99
+ ],
100
+ [
101
+ "\\\/\\\/js",
102
+ {
103
+ "nextEmbedded": "javascript",
104
+ "goBack": 4,
105
+ "next": "@embedded",
106
+ "token": "string.js"
107
+ }
108
+ ],
109
+ [
110
+ "{",
111
+ {
112
+ "nextEmbedded": "javascript",
113
+ "goBack": 1,
114
+ "next": "@embedded",
115
+ "token": "string.js"
116
+ }
117
+ ],
118
+ ["\\\\.", "string.escape"],
119
+ ["[^\\\"]", "string"],
120
+ ["\\\"", "string", "@pop"],
121
+ ["\\\"", "string"]
122
+ ],
123
+ "stringLiteral@@": [
124
+ [
125
+ "#py",
126
+ {
127
+ "nextEmbedded": "python",
128
+ "goBack": 3,
129
+ "next": "@embedded",
130
+ "token": "string.python"
131
+ }
132
+ ],
133
+ [
134
+ "\\\/\\\/js",
135
+ {
136
+ "nextEmbedded": "javascript",
137
+ "goBack": 4,
138
+ "next": "@embedded",
139
+ "token": "string.js"
140
+ }
141
+ ],
142
+ [
143
+ "{",
144
+ {
145
+ "nextEmbedded": "javascript",
146
+ "goBack": 1,
147
+ "next": "@embedded",
148
+ "token": "string.js"
81
149
  }
82
150
  ],
151
+ ["\\@\\@\\@\\@", "string.escape"],
83
152
  ["[^\\@\\@]", "string"],
84
153
  ["\\@\\@", "string", "@pop"],
85
154
  ["\\@\\@", "string"]
@@ -95,7 +164,7 @@
95
164
  ]
96
165
  ],
97
166
  "optionIdentifier1": [
98
- ["(([a-zA-Z_])([a-zA-Z_0-9])*(\\.([a-zA-Z_])([a-zA-Z_0-9])*)?)", "constant", "@pop"]
167
+ ["(([a-zA-Z_])([a-zA-Z_0-9])*(\\.([a-zA-Z_])([a-zA-Z_0-9])*)?)", "identifier", "@pop"]
99
168
  ]
100
169
  }
101
170
  }
@@ -3,20 +3,17 @@
3
3
  "tokenizer": {
4
4
  "root": [
5
5
  {
6
- "include": "@whitespace"
6
+ "include": "@beforable"
7
7
  },
8
8
  ["(((\\\/\\*(.|\\n)*?\\*\\\/)|(\\-\\-[^\\n\\r]*(\\r\\n?|\\n|$))))", "comment"],
9
- [
10
- "\\b(replication_factor|force_infer_schema|replicationfactor|compression_codec|forceinferschema|compressioncodec|primary_medium|monotonic_keys|ignore_type_v3|security_tags|primarymedium|monotonickeys|erasure_codec|column_groups|securitytags|infer_scheme|infer_schema|ignoretypev3|erasurecodec|columngroups|inferscheme|inferschema|user_attrs|non_unique|expiration|userattrs|unordered|nonUnique|keep_meta|truncate|keepmeta|inline|xlock|media)\\b",
11
- "constant"
12
- ],
13
- ["\\b(([a-zA-Z_])([a-zA-Z_0-9])*\\:\\:([a-zA-Z_])([a-zA-Z_0-9])*)\\b", "support.function"],
14
- ["\\b(([a-zA-Z_])([a-zA-Z_0-9])*)(?=\\()\\b", "support.function"],
15
9
  ["\\b(([a-zA-Z_])([a-zA-Z_0-9])*)(?=\\\u003C)\\b", "keyword.type"],
10
+ ["\\b(DECIMAL)\\b", "keyword.type"],
16
11
  [
17
12
  "\\b(pgpg_brin_minmax_multi_summary|pganycompatiblemultirange|pgpg_brin_bloom_summary|pganycompatiblenonarray|pganycompatiblerange|pganycompatiblearray|pgtable_am_handler|pglanguage_handler|pgindex_am_handler|pgpg_dependencies|_pgtstzmultirange|_pgint8multirange|_pgint4multirange|_pgdatemultirange|pgtstzmultirange|pgpg_ddl_command|pgint8multirange|pgint4multirange|pgdatemultirange|_pgtxid_snapshot|_pgregdictionary|_pgnummultirange|pgtxid_snapshot|pgregdictionary|pgnummultirange|pgevent_trigger|pganymultirange|pganycompatible|_pgtsmultirange|_pgregprocedure|_pgregnamespace|_pgregcollation|_pgpg_attribute|pgtsmultirange|pgregprocedure|pgregnamespace|pgregcollation|pgpg_node_tree|pgpg_ndistinct|pgpg_attribute|_pgtimestamptz|_pgregoperator|_pgpg_snapshot|pgtsm_handler|pgtimestamptz|pgregoperator|pgpg_snapshot|pgpg_mcv_list|pgfdw_handler|pganynonarray|_pgint2vector|TzTimestamp64|pgint2vector|pganyelement|_pgtstzrange|_pgtimestamp|_pgregconfig|_pgrefcursor|_pgoidvector|_pgint8range|_pgint4range|_pggtsvector|_pgdaterange|TzDatetime64|JsonDocument|pgtstzrange|pgtimestamp|pgregconfig|pgrefcursor|pgoidvector|pgint8range|pgint4range|pggtsvector|pgdaterange|_pgtsvector|_pgregclass|_pgpg_class|_pgnumrange|_pgmacaddr8|_pgjsonpath|_pginterval|TzTimestamp|Timestamp64|pgtsvector|pgregclass|pgpg_class|pgnumrange|pgmacaddr8|pgjsonpath|pginterval|pginternal|pganyrange|pganyarray|_pgvarchar|_pgtsrange|_pgtsquery|_pgregtype|_pgregrole|_pgregproc|_pgregoper|_pgpolygon|_pgpg_type|_pgpg_proc|_pgnumeric|_pgmacaddr|_pgcstring|_pgaclitem|TzDatetime|Interval64|Datetime64|pgvarchar|pgunknown|pgtsrange|pgtsquery|pgtrigger|pgregtype|pgregrole|pgregproc|pgregoper|pgpolygon|pgpg_type|pgpg_proc|pgnumeric|pgmacaddr|pgcstring|pganyenum|pgaclitem|_pgvarbit|_pgtimetz|_pgrecord|_pgpg_lsn|_pgfloat8|_pgfloat4|_pgcircle|_pgbpchar|Timestamp|EmptyList|EmptyDict|pgvarbit|pgtimetz|pgrecord|pgpg_lsn|pgfloat8|pgfloat4|pgcircle|pgbpchar|_pgpoint|_pgmoney|_pgjsonb|_pgbytea|TzDate32|Interval|DyNumber|Datetime|pgpoint|pgmoney|pgjsonb|pgbytea|_pgxid8|_pguuid|_pgtime|_pgtext|_pgpath|_pgname|_pglseg|_pgline|_pgjson|_pgint8|_pgint4|_pgint2|_pginet|_pgdate|_pgcidr|_pgchar|_pgbool|Generic|pgxid8|pgvoid|pguuid|pgtime|pgtext|pgpath|pgname|pglseg|pgline|pgjson|pgint8|pgint4|pgint2|pginet|pgdate|pgcidr|pgchar|pgbool|_pgxml|_pgxid|_pgtid|_pgoid|_pgcid|_pgbox|_pgbit|Uint64|Uint32|Uint16|TzDate|String|Double|Date32|pgxml|pgxid|pgtid|pgoid|pgcid|pgbox|pgbit|pgany|Uint8|Int64|Int32|Int16|Float|Yson|Void|Uuid|Utf8|Unit|Json|Int8|Date|Bool)\\b",
18
13
  "keyword.type"
19
14
  ],
15
+ ["\\b(([a-zA-Z_])([a-zA-Z_0-9])*\\:\\:([a-zA-Z_])([a-zA-Z_0-9])*)\\b", "support.function"],
16
+ ["\\b(([a-zA-Z_])([a-zA-Z_0-9])*)(?=\\()\\b", "support.function"],
20
17
  [
21
18
  "\\b((([0-9]+)\\.[0-9]*([eE](\\+|\\-)?([0-9]+))?|([0-9]+)([eE](\\+|\\-)?([0-9]+)))([fF]|[pP]([fF](4|8)|[nN])?)?)\\b",
22
19
  "number"
@@ -29,7 +26,7 @@
29
26
  ["\\b(TRUE)\\b", "number"],
30
27
  ["\\b(FALSE)\\b", "number"],
31
28
  [
32
- "\\b(CURRENT_TIMESTAMP|MATCH_RECOGNIZE|UNCONDITIONAL|DYNAMICLINEAR|AUTOINCREMENT|MILLISECONDS|MICROSECONDS|EMPTY_ACTION|CURRENT_TIME|CURRENT_DATE|TRANSACTION|TABLESAMPLE|REPLICATION|NANOSECONDS|JSON_EXISTS|INCREMENTAL|CONDITIONAL|TABLESTORE|REPEATABLE|REFERENCES|PRIVILEGES|JSON_VALUE|JSON_QUERY|DEFERRABLE|CONSTRAINT|COLLECTION|CLASSIFIER|CHANGEFEED|ATTRIBUTES|ASYMMETRIC|WATERMARK|UNMATCHED|UNBOUNDED|TEMPORARY|SYMMETRIC|STREAMING|SAVEPOINT|RETURNING|PRECEDING|PARTITION|INTERSECT|INITIALLY|INCREMENT|IMMEDIATE|FOLLOWING|EXCLUSIVE|EXCLUSION|ENCRYPTED|DIRECTORY|BERNOULLI|TRANSFER|SUBQUERY|SEQUENCE|ROLLBACK|RESTRICT|RESOURCE|PASSWORD|PARALLEL|OPTIONAL|MEASURES|INHERITS|GROUPING|FUNCTION|EXTERNAL|EVALUATE|DISTINCT|DESCRIBE|DEFERRED|DATABASE|CONSUMER|CONFLICT|CALLABLE|WRAPPER|WITHOUT|VIRTUAL|VARIANT|UNKNOWN|TRIGGER|SYMBOLS|SECONDS|RESTORE|RESTART|RESPECT|REPLACE|RELEASE|REINDEX|PROCESS|PRIMARY|PRESORT|PERMUTE|PATTERN|PASSING|NOTNULL|NOLOGIN|NATURAL|MATCHES|INSTEAD|INITIAL|INDEXED|FOREIGN|FLATTEN|EXPLAIN|EXCLUDE|DISCARD|DISABLE|DEFAULT|DECLARE|DECIMAL|CURRENT|CONNECT|COMPACT|COLUMNS|COLLATE|CASCADE|BITCAST|BETWEEN|AUTOMAP|ANALYZE|WINDOW|VALUES|VACUUM|UPSERT|UPDATE|UNIQUE|TAGGED|TABLES|SYSTEM|SUBSET|STRUCT|STREAM|SOURCE|SELECT|SECRET|SCHEMA|SAMPLE|ROLLUP|REVOKE|REVERT|RETURN|RESULT|RENAME|REMOVE|REGEXP|REDUCE|PRAGMA|OTHERS|OPTION|OFFSET|OBJECT|MODIFY|MANAGE|LINEAR|LEGACY|ISNULL|INSERT|IMPORT|IGNORE|HAVING|GROUPS|GLOBAL|FILTER|FAMILY|EXPORT|EXISTS|EXCEPT|ESCAPE|DETACH|DELETE|DEFINE|CREATE|COMMIT|COLUMN|BEFORE|BACKUP|ATTACH|ASSUME|ACTION|WHERE|USING|UNION|TUPLE|TOPIC|TABLE|START|RLIKE|RIGHT|RESET|RANGE|RAISE|QUEUE|QUERY|OWNER|OUTER|ORDER|NULLS|MATCH|LOGIN|LOCAL|LIMIT|INNER|INDEX|ILIKE|GROUP|GRANT|FIRST|FALSE|ERROR|ERASE|EMPTY|CROSS|COVER|CHECK|BEGIN|BATCH|ASYNC|ARRAY|ALTER|AFTER|ABORT|WITH|WHEN|VIEW|USER|TYPE|TRUE|TIES|THEN|TEMP|SYNC|SKIP|SHOW|SETS|SEMI|SEEK|ROWS|POOL|PLAN|PAST|OVER|ONLY|OMIT|NULL|NEXT|LIST|LIKE|LEFT|LAST|JOIN|INTO|HASH|GLOB|FULL|FROM|FLOW|FAIL|ENUM|ELSE|EACH|DROP|DICT|DESC|DATA|CUBE|CAST|CASE|ANSI|XOR|USE|SET|ROW|PER|ONE|NOT|KEY|HOP|FOR|END|ASC|ANY|AND|ALL|ADD|TO|OR|ON|OF|NO|IS|IN|IF|DO|BY|AT|AS)\\b",
29
+ "\\b(replication_factor|force_infer_schema|replicationfactor|compression_codec|CURRENT_TIMESTAMP|forceinferschema|compressioncodec|MATCH_RECOGNIZE|primary_medium|monotonic_keys|ignore_type_v3|security_tags|primarymedium|monotonickeys|erasure_codec|column_groups|UNCONDITIONAL|DYNAMICLINEAR|AUTOINCREMENT|securitytags|infer_scheme|infer_schema|ignoretypev3|erasurecodec|columngroups|MILLISECONDS|MICROSECONDS|EMPTY_ACTION|CURRENT_TIME|CURRENT_DATE|inferscheme|inferschema|TRANSACTION|TABLESAMPLE|REPLICATION|NANOSECONDS|JSON_EXISTS|INCREMENTAL|CONDITIONAL|user_attrs|non_unique|expiration|TABLESTORE|REPEATABLE|REFERENCES|PRIVILEGES|JSON_VALUE|JSON_QUERY|DEFERRABLE|CONSTRAINT|COLLECTION|CLASSIFIER|CHANGEFEED|ATTRIBUTES|ASYMMETRIC|userattrs|unordered|nonUnique|keep_meta|WATERMARK|UNMATCHED|UNBOUNDED|TEMPORARY|SYMMETRIC|STREAMING|SAVEPOINT|RETURNING|PRECEDING|PARTITION|INTERSECT|INITIALLY|INCREMENT|IMMEDIATE|FOLLOWING|EXCLUSIVE|EXCLUSION|ENCRYPTED|DIRECTORY|BERNOULLI|truncate|keepmeta|TRANSFER|SUBQUERY|SEQUENCE|ROLLBACK|RESTRICT|RESOURCE|PASSWORD|PARALLEL|OPTIONAL|MEASURES|INHERITS|GROUPING|FUNCTION|EXTERNAL|EVALUATE|DISTINCT|DESCRIBE|DEFERRED|DATABASE|CONSUMER|CONFLICT|CALLABLE|WRAPPER|WITHOUT|VIRTUAL|VARIANT|UNKNOWN|TRIGGER|SYMBOLS|SECONDS|RESTORE|RESTART|RESPECT|REPLACE|RELEASE|REINDEX|PROCESS|PRIMARY|PRESORT|PERMUTE|PATTERN|PASSING|NOTNULL|NOLOGIN|NATURAL|MATCHES|INSTEAD|INITIAL|INDEXED|FOREIGN|FLATTEN|EXPLAIN|EXCLUDE|DISCARD|DISABLE|DEFAULT|DECLARE|DECIMAL|CURRENT|CONNECT|COMPACT|COLUMNS|COLLATE|CASCADE|BITCAST|BETWEEN|AUTOMAP|ANALYZE|inline|WINDOW|VALUES|VACUUM|UPSERT|UPDATE|UNIQUE|TAGGED|TABLES|SYSTEM|SUBSET|STRUCT|STREAM|SOURCE|SELECT|SECRET|SCHEMA|SAMPLE|ROLLUP|REVOKE|REVERT|RETURN|RESULT|RENAME|REMOVE|REGEXP|REDUCE|PRAGMA|OTHERS|OPTION|OFFSET|OBJECT|MODIFY|MANAGE|LINEAR|LEGACY|ISNULL|INSERT|IMPORT|IGNORE|HAVING|GROUPS|GLOBAL|FILTER|FAMILY|EXPORT|EXISTS|EXCEPT|ESCAPE|DETACH|DELETE|DEFINE|CREATE|COMMIT|COLUMN|BEFORE|BACKUP|ATTACH|ASSUME|ACTION|xlock|media|WHERE|USING|UNION|TUPLE|TOPIC|TABLE|START|RLIKE|RIGHT|RESET|RANGE|RAISE|QUEUE|QUERY|OWNER|OUTER|ORDER|NULLS|MATCH|LOGIN|LOCAL|LIMIT|INNER|INDEX|ILIKE|GROUP|GRANT|FIRST|FALSE|ERROR|ERASE|EMPTY|CROSS|COVER|CHECK|BEGIN|BATCH|ASYNC|ARRAY|ALTER|AFTER|ABORT|WITH|WHEN|VIEW|USER|TYPE|TRUE|TIES|THEN|TEMP|SYNC|SKIP|SHOW|SETS|SEMI|SEEK|ROWS|POOL|PLAN|PAST|OVER|ONLY|OMIT|NULL|NEXT|LIST|LIKE|LEFT|LAST|JOIN|INTO|HASH|GLOB|FULL|FROM|FLOW|FAIL|ENUM|ELSE|EACH|DROP|DICT|DESC|DATA|CUBE|CAST|CASE|ANSI|XOR|USE|SET|ROW|PER|ONE|NOT|KEY|HOP|FOR|END|ASC|ANY|AND|ALL|ADD|TO|OR|ON|OF|NO|IS|IN|IF|DO|BY|AT|AS)\\b",
33
30
  "keyword"
34
31
  ],
35
32
  ["(\\`(\\\\(.|\\n)|\\`\\`|[^`\\\\])*\\`)", "string.tablepath"],
@@ -39,21 +36,59 @@
39
36
  [
40
37
  "(((((\\\u0027([^\u0027]|(\\\u0027\\\u0027))*\\\u0027))|((\\\"([^\"]|(\\\"\\\"))*\\\"))|((\\@\\@(.|\\n)*?\\@\\@)+\\@?))([sSuUyYjJ]|[pP]([tTbBvV])?)?))",
41
38
  "string"
42
- ]
39
+ ],
40
+ {
41
+ "include": "@whitespace"
42
+ }
43
43
  ],
44
44
  "whitespace": [
45
45
  ["(( |\\r|\\t|\\f|\\n))", "white"],
46
- ["\\\/\\*", "comment", "@comment"],
47
- ["\\@\\@", "string", "@stringLiteral"],
48
- ["PRAGMA( |\\r|\\t|\\f|\\n)", "keyword", "@optionIdentifier1"]
46
+ ["\\\/\\*", "comment", "@comment\/*"],
47
+ ["\\\u0027", "string", "@stringLiteral\u0027"],
48
+ ["\\\"", "string", "@stringLiteral\""],
49
+ ["\\@\\@", "string", "@stringLiteral@@"]
49
50
  ],
50
- "comment": [
51
+ "beforable": [["PRAGMA( |\\r|\\t|\\f|\\n)", "keyword", "@optionIdentifier1"]],
52
+ "comment\/*": [
51
53
  ["\\\/\\*", "comment", "@comment"],
52
54
  ["[^\\\/\\*]", "comment"],
53
55
  ["\\*\\\/", "comment", "@pop"],
54
56
  ["\\\/\\*", "comment"]
55
57
  ],
56
- "stringLiteral": [
58
+ "stringLiteral\u0027": [
59
+ [
60
+ "#py",
61
+ {
62
+ "nextEmbedded": "python",
63
+ "goBack": 3,
64
+ "next": "@embedded",
65
+ "token": "string.python"
66
+ }
67
+ ],
68
+ [
69
+ "\\\/\\\/js",
70
+ {
71
+ "nextEmbedded": "javascript",
72
+ "goBack": 4,
73
+ "next": "@embedded",
74
+ "token": "string.js"
75
+ }
76
+ ],
77
+ [
78
+ "{",
79
+ {
80
+ "nextEmbedded": "javascript",
81
+ "goBack": 1,
82
+ "next": "@embedded",
83
+ "token": "string.js"
84
+ }
85
+ ],
86
+ ["\\\\.", "string.escape"],
87
+ ["[^\\\u0027]", "string"],
88
+ ["\\\u0027", "string", "@pop"],
89
+ ["\\\u0027", "string"]
90
+ ],
91
+ "stringLiteral\"": [
57
92
  [
58
93
  "#py",
59
94
  {
@@ -75,12 +110,46 @@
75
110
  [
76
111
  "{",
77
112
  {
78
- "nextEmbedded": "json",
113
+ "nextEmbedded": "javascript",
79
114
  "goBack": 1,
80
115
  "next": "@embedded",
81
- "token": "string.json"
116
+ "token": "string.js"
117
+ }
118
+ ],
119
+ ["\\\\.", "string.escape"],
120
+ ["[^\\\"]", "string"],
121
+ ["\\\"", "string", "@pop"],
122
+ ["\\\"", "string"]
123
+ ],
124
+ "stringLiteral@@": [
125
+ [
126
+ "#py",
127
+ {
128
+ "nextEmbedded": "python",
129
+ "goBack": 3,
130
+ "next": "@embedded",
131
+ "token": "string.python"
132
+ }
133
+ ],
134
+ [
135
+ "\\\/\\\/js",
136
+ {
137
+ "nextEmbedded": "javascript",
138
+ "goBack": 4,
139
+ "next": "@embedded",
140
+ "token": "string.js"
141
+ }
142
+ ],
143
+ [
144
+ "{",
145
+ {
146
+ "nextEmbedded": "javascript",
147
+ "goBack": 1,
148
+ "next": "@embedded",
149
+ "token": "string.js"
82
150
  }
83
151
  ],
152
+ ["\\@\\@\\@\\@", "string.escape"],
84
153
  ["[^\\@\\@]", "string"],
85
154
  ["\\@\\@", "string", "@pop"],
86
155
  ["\\@\\@", "string"]
@@ -96,7 +165,7 @@
96
165
  ]
97
166
  ],
98
167
  "optionIdentifier1": [
99
- ["(([a-zA-Z_])([a-zA-Z_0-9])*(\\.([a-zA-Z_])([a-zA-Z_0-9])*)?)", "constant", "@pop"]
168
+ ["(([a-zA-Z_])([a-zA-Z_0-9])*(\\.([a-zA-Z_])([a-zA-Z_0-9])*)?)", "identifier", "@pop"]
100
169
  ]
101
170
  }
102
171
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "monaco-yql-languages",
3
- "version": "1.19.0",
3
+ "version": "1.20.0",
4
4
  "description": "YQL languages for the Monaco Editor, based on monaco-languages.",
5
5
  "author": "YDB",
6
6
  "license": "MIT",