@malloydata/syntax-highlight 0.0.222-dev241212204326 → 0.0.222

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.
@@ -181,6 +181,10 @@ export const monarch: Monaco.IMonarchLanguage = {
181
181
  [/\bwhen\b/, 'keyword.other.when'],
182
182
  [/\bpick\b/, 'keyword.other.pick'],
183
183
  [/\bimport\b/, 'keyword.control.import'],
184
+ [/\binternal\b/, 'keyword.control.internal'],
185
+ [/\bpublic\b/, 'keyword.control.public'],
186
+ [/\bprivate\b/, 'keyword.control.private'],
187
+ [/\binclude\b/, 'keyword.control.include'],
184
188
  ],
185
189
  properties: [
186
190
  [/\baccept\b/, 'keyword.control.accept'],
@@ -521,6 +521,22 @@
521
521
  {
522
522
  "match": "(?i)\\bimport\\b",
523
523
  "name": "keyword.control.import"
524
+ },
525
+ {
526
+ "match": "(?i)\\binternal\\b",
527
+ "name": "keyword.control.internal"
528
+ },
529
+ {
530
+ "match": "(?i)\\bpublic\\b",
531
+ "name": "keyword.control.public"
532
+ },
533
+ {
534
+ "match": "(?i)\\bprivate\\b",
535
+ "name": "keyword.control.private"
536
+ },
537
+ {
538
+ "match": "(?i)\\binclude\\b",
539
+ "name": "keyword.control.include"
524
540
  }
525
541
  ]
526
542
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/syntax-highlight",
3
- "version": "0.0.222-dev241212204326",
3
+ "version": "0.0.222",
4
4
  "description": "A package to simplify the process of developing, testing, and syncnig Malloy syntax highlighting grammars",
5
5
  "files": [
6
6
  "grammars/**/*.tmGrammar.json",