Source file tm_grammar_cairo.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
let lang_id = "cairo"
let json = {json|{
  "displayName": "Cairo",
  "name": "cairo",
  "patterns": [
    {
      "begin": "\\b(if).*\\(",
      "beginCaptures": {
        "1": {
          "name": "keyword.control.if"
        },
        "2": {
          "name": "entity.name.condition"
        }
      },
      "contentName": "source.cairo0",
      "end": "}",
      "endCaptures": {
        "0": {
          "name": "keyword.control.end"
        }
      },
      "name": "meta.control.if",
      "patterns": [
        {
          "include": "source.cairo0"
        }
      ]
    },
    {
      "begin": "\\b(with)\\s+(.+)\\s*\\{",
      "beginCaptures": {
        "1": {
          "name": "keyword.control.with"
        },
        "2": {
          "name": "entity.name.identifiers"
        }
      },
      "contentName": "source.cairo0",
      "end": "}",
      "endCaptures": {
        "0": {
          "name": "keyword.control.end"
        }
      },
      "name": "meta.control.with",
      "patterns": [
        {
          "include": "source.cairo0"
        }
      ]
    },
    {
      "begin": "\\b(with_attr)\\s+([A-Z_a-z][0-9A-Z_a-z]*)\\s*[({]",
      "beginCaptures": {
        "1": {
          "name": "keyword.control.with_attr"
        },
        "2": {
          "name": "entity.name.function"
        }
      },
      "contentName": "source.cairo0",
      "end": "}",
      "endCaptures": {
        "0": {
          "name": "keyword.control.end"
        }
      },
      "name": "meta.control.with_attr",
      "patterns": [
        {
          "include": "source.cairo0"
        }
      ]
    },
    {
      "match": "\\belse\\b",
      "name": "keyword.control.else"
    },
    {
      "match": "\\b(call|jmp|ret|abs|rel|if)\\b",
      "name": "keyword.other.opcode"
    },
    {
      "match": "\\b([af]p)\\b",
      "name": "keyword.other.register"
    },
    {
      "match": "\\b(const|let|local|tempvar|felt|as|from|import|static_assert|return|assert|cast|alloc_locals|with|with_attr|nondet|dw|codeoffset|new|using|and)\\b",
      "name": "keyword.other.meta"
    },
    {
      "match": "\\b(SIZE(?:OF_LOCALS|))\\b",
      "name": "markup.italic"
    },
    {
      "match": "//[^\\n]*\\n",
      "name": "comment.line.sharp"
    },
    {
      "match": "\\b[A-Z_a-z][0-9A-Z_a-z]*:\\s*$",
      "name": "entity.name.function"
    },
    {
      "begin": "\\b(func)\\s+([A-Z_a-z][0-9A-Z_a-z]*)\\s*[({]",
      "beginCaptures": {
        "1": {
          "name": "storage.type.function.cairo"
        },
        "2": {
          "name": "entity.name.function"
        }
      },
      "contentName": "source.cairo0",
      "end": "}",
      "endCaptures": {
        "0": {
          "name": "storage.type.function.cairo"
        }
      },
      "name": "meta.function.cairo",
      "patterns": [
        {
          "include": "source.cairo0"
        }
      ]
    },
    {
      "begin": "\\b(struct|namespace)\\s+([A-Z_a-z][0-9A-Z_a-z]*)\\s*\\{",
      "beginCaptures": {
        "1": {
          "name": "storage.type.function.cairo"
        },
        "2": {
          "name": "entity.name.function"
        }
      },
      "contentName": "source.cairo0",
      "end": "}",
      "endCaptures": {
        "0": {
          "name": "storage.type.function.cairo"
        }
      },
      "name": "meta.function.cairo",
      "patterns": [
        {
          "include": "source.cairo0"
        }
      ]
    },
    {
      "match": "\\b[-+]?[0-9]+\\b",
      "name": "constant.numeric.decimal"
    },
    {
      "match": "\\b[-+]?0x\\h+\\b",
      "name": "constant.numeric.hexadecimal"
    },
    {
      "match": "'[^']*'",
      "name": "string.quoted.single"
    },
    {
      "match": "\"[^\"]*\"",
      "name": "string.quoted.double"
    },
    {
      "begin": "%\\{",
      "beginCaptures": {
        "0": {
          "name": "punctuation.section.embedded.begin.python"
        }
      },
      "contentName": "source.python",
      "end": "%}",
      "endCaptures": {
        "0": {
          "name": "punctuation.section.embedded.end.python"
        },
        "1": {
          "name": "source.python"
        }
      },
      "name": "meta.embedded.block.python",
      "patterns": [
        {
          "include": "source.python"
        }
      ]
    }
  ],
  "scopeName": "source.cairo0"
}|json}