-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
source.cairo0.js
107 lines (105 loc) · 3.55 KB
/
source.cairo0.js
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
// This is a TextMate grammar distributed by `starry-night`.
// This grammar is developed at
// <https://github.com/software-mansion-labs/cairo-tm-grammar>
// and licensed `apache-2.0`.
// See <https://github.com/wooorm/starry-night> for more info.
/**
* @import {Grammar} from '@wooorm/starry-night'
*/
/** @type {Grammar} */
const grammar = {
dependencies: ['source.cairo'],
extensions: [],
names: ['cairo-zero'],
patterns: [
{
begin: '\\b(if).*\\(',
beginCaptures: {
1: {name: 'keyword.control.if'},
2: {name: 'entity.name.condition'}
},
contentName: 'source.cairo',
end: '\\}',
endCaptures: {0: {name: 'keyword.control.end'}},
name: 'meta.control.if',
patterns: [{include: 'source.cairo'}]
},
{
begin: '\\b(with)\\s+(.+)\\s*\\{',
beginCaptures: {
1: {name: 'keyword.control.with'},
2: {name: 'entity.name.identifiers'}
},
contentName: 'source.cairo',
end: '\\}',
endCaptures: {0: {name: 'keyword.control.end'}},
name: 'meta.control.with',
patterns: [{include: 'source.cairo'}]
},
{
begin: '\\b(with_attr)\\s+([a-zA-Z_][a-zA-Z0-9_]*)\\s*[({]',
beginCaptures: {
1: {name: 'keyword.control.with_attr'},
2: {name: 'entity.name.function'}
},
contentName: 'source.cairo',
end: '\\}',
endCaptures: {0: {name: 'keyword.control.end'}},
name: 'meta.control.with_attr',
patterns: [{include: 'source.cairo'}]
},
{match: '\\belse\\b', name: 'keyword.control.else'},
{match: '\\b(call|jmp|ret|abs|rel|if)\\b', name: 'keyword.other.opcode'},
{match: '\\b(ap|fp)\\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(SIZEOF_LOCALS|SIZE)\\b', name: 'markup.italic'},
{match: '//[^\n]*\n', name: 'comment.line.sharp'},
{match: '\\b[a-zA-Z_][a-zA-Z0-9_]*:\\s*$', name: 'entity.name.function'},
{
begin: '\\b(func)\\s+([a-zA-Z_][a-zA-Z0-9_]*)\\s*[({]',
beginCaptures: {
1: {name: 'storage.type.function.cairo'},
2: {name: 'entity.name.function'}
},
contentName: 'source.cairo',
end: '\\}',
endCaptures: {0: {name: 'storage.type.function.cairo'}},
name: 'meta.function.cairo',
patterns: [{include: 'source.cairo'}]
},
{
begin: '\\b(struct|namespace)\\s+([a-zA-Z_][a-zA-Z0-9_]*)\\s*\\{',
beginCaptures: {
1: {name: 'storage.type.function.cairo'},
2: {name: 'entity.name.function'}
},
contentName: 'source.cairo',
end: '\\}',
endCaptures: {0: {name: 'storage.type.function.cairo'}},
name: 'meta.function.cairo',
patterns: [{include: 'source.cairo'}]
},
{match: '\\b[+-]?[0-9]+\\b', name: 'constant.numeric.decimal'},
{match: '\\b[+-]?0x[0-9a-fA-F]+\\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'
}
export default grammar