Source file tm_grammar_scheme.ml

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
let lang_id = "scheme"
let json = {json|{
  "displayName": "Scheme",
  "fileTypes": [
    "scm",
    "ss",
    "sch",
    "rkt"
  ],
  "name": "scheme",
  "patterns": [
    {
      "include": "#comment"
    },
    {
      "include": "#block-comment"
    },
    {
      "include": "#sexp"
    },
    {
      "include": "#string"
    },
    {
      "include": "#language-functions"
    },
    {
      "include": "#quote"
    },
    {
      "include": "#illegal"
    }
  ],
  "repository": {
    "block-comment": {
      "begin": "#\\|",
      "contentName": "comment",
      "end": "\\|#",
      "name": "comment",
      "patterns": [
        {
          "include": "#block-comment",
          "name": "comment"
        }
      ]
    },
    "comment": {
      "begin": "(^[\\t ]+)?(?=;)",
      "beginCaptures": {
        "1": {
          "name": "punctuation.whitespace.comment.leading.scheme"
        }
      },
      "end": "(?!\\G)",
      "patterns": [
        {
          "begin": ";",
          "beginCaptures": {
            "0": {
              "name": "punctuation.definition.comment.scheme"
            }
          },
          "end": "\\n",
          "name": "comment.line.semicolon.scheme"
        }
      ]
    },
    "constants": {
      "patterns": [
        {
          "match": "#[ft|]",
          "name": "constant.language.boolean.scheme"
        },
        {
          "match": "(?<=[(\\s])((#[ei])?[0-9]+(\\.[0-9]+)?|(#x)\\h+|(#o)[0-7]+|(#b)[01]+)(?=[]\"'(),;\\[\\s])",
          "name": "constant.numeric.scheme"
        }
      ]
    },
    "illegal": {
      "match": "[]()\\[]",
      "name": "invalid.illegal.parenthesis.scheme"
    },
    "language-functions": {
      "patterns": [
        {
          "match": "(?<=([(\\[\\s]))(do|or|and|else|quasiquote|begin|if|case|set!|cond|let|unquote|define|let\\*|unquote-splicing|delay|letrec)(?=([(\\s]))",
          "name": "keyword.control.scheme"
        },
        {
          "match": "(?<=([(\\s]))(char-alphabetic|char-lower-case|char-numeric|char-ready|char-upper-case|char-whitespace|(?:char|string)(?:-ci)?(?:=|<=?|>=?)|atom|boolean|bound-identifier=|char|complex|identifier|integer|symbol|free-identifier=|inexact|eof-object|exact|list|(?:in|out)put-port|pair|real|rational|zero|vector|negative|odd|null|string|eq|equal|eqv|even|number|positive|procedure)(\\?)(?=([(\\s]))",
          "name": "support.function.boolean-test.scheme"
        },
        {
          "match": "(?<=([(\\s]))(char->integer|exact->inexact|inexact->exact|integer->char|symbol->string|list->vector|list->string|identifier->symbol|vector->list|string->list|string->number|string->symbol|number->string)(?=([(\\s]))",
          "name": "support.function.convert-type.scheme"
        },
        {
          "match": "(?<=([(\\s]))(set-c[ad]r|(?:vector|string)-(?:fill|set))(!)(?=([(\\s]))",
          "name": "support.function.with-side-effects.scheme"
        },
        {
          "match": "(?<=([(\\s]))(>=?|<=?|[-*+/=])(?=([(\\s]))",
          "name": "keyword.operator.arithmetic.scheme"
        },
        {
          "match": "(?<=([(\\s]))(append|apply|approximate|call-with-current-continuation|call/cc|catch|construct-identifier|define-syntax|display|foo|for-each|force|format|cd|gen-counter|gen-loser|generate-identifier|last-pair|length|let-syntax|letrec-syntax|list|list-ref|list-tail|load|log|macro|magnitude|map|map-streams|max|member|memq|memv|min|newline|nil|not|peek-char|rationalize|read|read-char|return|reverse|sequence|substring|syntax|syntax-rules|transcript-off|transcript-on|truncate|unwrap-syntax|values-list|write|write-char|cons|c([ad]){1,4}r|abs|acos|angle|asin|assoc|assq|assv|atan|ceiling|cos|floor|round|sin|sqrt|tan|(?:real|imag)-part|numerator|denominatormodulo|expt??|remainder|quotient|lcm|call-with-(?:in|out)put-file|c(?:lose|urrent)-(?:in|out)put-port|with-(?:in|out)put-from-file|open-(?:in|out)put-file|char-(?:downcase|upcase|ready)|make-(?:polar|promise|rectangular|string|vector)string(?:-(?:append|copy|length|ref))?|vector-(?:length|ref))(?=([(\\s]))",
          "name": "support.function.general.scheme"
        }
      ]
    },
    "quote": {
      "patterns": [
        {
          "captures": {
            "1": {
              "name": "punctuation.section.quoted.symbol.scheme"
            }
          },
          "match": "(')\\s*(\\p{alnum}[!$%\\&*-/:<-@^_~[:alnum:]]*)",
          "name": "constant.other.symbol.scheme"
        },
        {
          "captures": {
            "1": {
              "name": "punctuation.section.quoted.empty-list.scheme"
            },
            "2": {
              "name": "meta.expression.scheme"
            },
            "3": {
              "name": "punctuation.section.expression.begin.scheme"
            },
            "4": {
              "name": "punctuation.section.expression.end.scheme"
            }
          },
          "match": "(')\\s*((\\()\\s*(\\)))",
          "name": "constant.other.empty-list.schem"
        },
        {
          "begin": "(')\\s*",
          "beginCaptures": {
            "1": {
              "name": "punctuation.section.quoted.scheme"
            }
          },
          "end": "(?=[()\\s])|(?<=\\n)",
          "name": "string.other.quoted-object.scheme",
          "patterns": [
            {
              "include": "#quoted"
            }
          ]
        }
      ]
    },
    "quote-sexp": {
      "begin": "(?<=\\()\\s*(quote)\\s+",
      "beginCaptures": {
        "1": {
          "name": "keyword.control.quote.scheme"
        }
      },
      "contentName": "string.other.quote.scheme",
      "end": "(?=[)\\s])|(?<=\\n)",
      "patterns": [
        {
          "include": "#quoted"
        }
      ]
    },
    "quoted": {
      "patterns": [
        {
          "include": "#string"
        },
        {
          "begin": "(\\()",
          "beginCaptures": {
            "1": {
              "name": "punctuation.section.expression.begin.scheme"
            }
          },
          "end": "(\\))",
          "endCaptures": {
            "1": {
              "name": "punctuation.section.expression.end.scheme"
            }
          },
          "name": "meta.expression.scheme",
          "patterns": [
            {
              "include": "#quoted"
            }
          ]
        },
        {
          "include": "#quote"
        },
        {
          "include": "#illegal"
        }
      ]
    },
    "sexp": {
      "begin": "(\\()",
      "beginCaptures": {
        "1": {
          "name": "punctuation.section.expression.begin.scheme"
        }
      },
      "end": "(\\))(\\n)?",
      "endCaptures": {
        "1": {
          "name": "punctuation.section.expression.end.scheme"
        },
        "2": {
          "name": "meta.after-expression.scheme"
        }
      },
      "name": "meta.expression.scheme",
      "patterns": [
        {
          "include": "#comment"
        },
        {
          "begin": "(?<=\\()(define)\\s+(\\()(\\p{alnum}[!$%\\&*-/:<-@^_~[:alnum:]]*)((\\s+(\\p{alnum}[!$%\\&*-/:<-@^_~[:alnum:]]*|[._]))*)\\s*(\\))",
          "captures": {
            "1": {
              "name": "keyword.control.scheme"
            },
            "2": {
              "name": "punctuation.definition.function.scheme"
            },
            "3": {
              "name": "entity.name.function.scheme"
            },
            "4": {
              "name": "variable.parameter.function.scheme"
            },
            "7": {
              "name": "punctuation.definition.function.scheme"
            }
          },
          "end": "(?=\\))",
          "name": "meta.declaration.procedure.scheme",
          "patterns": [
            {
              "include": "#comment"
            },
            {
              "include": "#sexp"
            },
            {
              "include": "#illegal"
            }
          ]
        },
        {
          "begin": "(?<=\\()(lambda)\\s+(\\()((?:(\\p{alnum}[!$%\\&*-/:<-@^_~[:alnum:]]*|[._])\\s+)*(\\p{alnum}[!$%\\&*-/:<-@^_~[:alnum:]]*|[._])?)(\\))",
          "captures": {
            "1": {
              "name": "keyword.control.scheme"
            },
            "2": {
              "name": "punctuation.definition.variable.scheme"
            },
            "3": {
              "name": "variable.parameter.scheme"
            },
            "6": {
              "name": "punctuation.definition.variable.scheme"
            }
          },
          "end": "(?=\\))",
          "name": "meta.declaration.procedure.scheme",
          "patterns": [
            {
              "include": "#comment"
            },
            {
              "include": "#sexp"
            },
            {
              "include": "#illegal"
            }
          ]
        },
        {
          "begin": "(?<=\\()(define)\\s(\\p{alnum}[!$%\\&*-/:<-@^_~[:alnum:]]*)\\s*.*?",
          "captures": {
            "1": {
              "name": "keyword.control.scheme"
            },
            "2": {
              "name": "variable.other.scheme"
            }
          },
          "end": "(?=\\))",
          "name": "meta.declaration.variable.scheme",
          "patterns": [
            {
              "include": "#comment"
            },
            {
              "include": "#sexp"
            },
            {
              "include": "#illegal"
            }
          ]
        },
        {
          "include": "#quote-sexp"
        },
        {
          "include": "#quote"
        },
        {
          "include": "#language-functions"
        },
        {
          "include": "#string"
        },
        {
          "include": "#constants"
        },
        {
          "match": "(?<=[(\\s])(#\\\\)(space|newline|tab)(?=[)\\s])",
          "name": "constant.character.named.scheme"
        },
        {
          "match": "(?<=[(\\s])(#\\\\)x[0-9A-F]{2,4}(?=[)\\s])",
          "name": "constant.character.hex-literal.scheme"
        },
        {
          "match": "(?<=[(\\s])(#\\\\).(?=[)\\s])",
          "name": "constant.character.escape.scheme"
        },
        {
          "match": "(?<=[ ()])\\.(?=[ ()])",
          "name": "punctuation.separator.cons.scheme"
        },
        {
          "include": "#sexp"
        },
        {
          "include": "#illegal"
        }
      ]
    },
    "string": {
      "begin": "(\")",
      "beginCaptures": {
        "1": {
          "name": "punctuation.definition.string.begin.scheme"
        }
      },
      "end": "(\")",
      "endCaptures": {
        "1": {
          "name": "punctuation.definition.string.end.scheme"
        }
      },
      "name": "string.quoted.double.scheme",
      "patterns": [
        {
          "match": "\\\\.",
          "name": "constant.character.escape.scheme"
        }
      ]
    }
  },
  "scopeName": "source.scheme"
}|json}