-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDafny.sublime-syntax
140 lines (114 loc) · 3.67 KB
/
Dafny.sublime-syntax
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
%YAML 1.2
---
name: Dafny
file_extensions: [dfy]
scope: source.dafny
folding:
start: '(?x)\{\s*(//.*)?$|^\s*// \{\{\{'
end: '^\s*(\}|// \}\}\}$)'
contexts:
main:
- include: comments
- include: strings
- include: attributes
- include: preprocessor
- include: declarations
- include: types
- include: keywords
- include: numbers
- include: operators
- include: entities
- include: punctuation
declarations:
- match: '\b(method|function|lemma|predicate|copredicate|datatype|codatatype|class|trait|iterator|module|constructor|comethod)\s+([a-zA-Z_]\w*)'
captures:
1: keyword.declaration.dafny
2: entity.name.type.dafny
- match: '\b(const|ghost|var|static|abstract|opaque|twostate)\s+([a-zA-Z_]\w*)'
captures:
1: keyword.modifier.dafny
2: variable.other.dafny
- match: '\b(requires|ensures|modifies|reads|decreases|invariant|yield|yields|returns|refines)\b'
scope: keyword.specification.dafny
types:
- match: '\b(int|nat|real|bool|string|char|set|seq|multiset|map|array|object|any)\b'
scope: storage.type.dafny
- match: '<([a-zA-Z_]\w*)>'
captures:
1: storage.type.parameter.dafny
keywords:
- match: >
\b(if|else|while|for|match|case|break|continue|return|then|where|
in|is|new|this|null|fresh|choose|old|calc|label|print|parallel|as|
default|import|opened|throw|try|catch|finally)\b
scope: keyword.control.dafny
- match: '\b(assert|assume|expect|forall|exists)\b'
scope: keyword.operator.dafny
- match: '\b(class|datatype|codatatype|type|module|iterator)\b'
scope: keyword.declaration.type.dafny
numbers:
- match: '\b0[xX][0-9a-fA-F_]+\b'
scope: constant.numeric.hex.dafny
- match: '\b\d[\d_]*(?:\.\d[\d_]*)?(?:[eE][+-]?\d[\d_]*)?\b'
scope: constant.numeric.dafny
operators:
- match: '(==>|<==|&&|\|\||!)'
scope: keyword.operator.logical.dafny
- match: '(\+|-|\*|/|%|mod|div|\^)'
scope: keyword.operator.arithmetic.dafny
- match: '(==|!=|<=|>=|<|>|!in)'
scope: keyword.operator.comparison.dafny
- match: '(:=|::|->|-->|\.|\?|:|\-\-|\+\+)'
scope: keyword.operator.dafny
entities:
- match: '\b([A-Z][a-zA-Z0-9_]*)\b'
scope: entity.name.type.dafny
- match: '(\w+)\s*\('
captures:
1: entity.name.function.dafny
comments:
- match: '/\*\*/'
scope: comment.block.empty.dafny
- match: '//'
scope: punctuation.definition.comment.dafny
push: line_comment
- match: '/\*'
scope: punctuation.definition.comment.begin.dafny
push: block_comment
block_comment:
- meta_scope: comment.block.dafny
- match: \*/
scope: punctuation.definition.comment.end.dafny
pop: true
- match: /\*
scope: invalid.illegal.nested-comments.dafny
line_comment:
- meta_scope: comment.line.double-slash.dafny
- match: $\n?
pop: true
strings:
- match: '"'
scope: punctuation.definition.string.begin.dafny
push: string_double
string_double:
- meta_scope: string.quoted.double.dafny
- match: '"'
scope: punctuation.definition.string.end.dafny
pop: true
- match: \\(\\|"|n|t|r)
scope: constant.character.escape.dafny
attributes:
- match: '(\{:[^}]*\})'
scope: meta.annotation.dafny
captures:
0: constant.other.attribute.dafny
preprocessor:
- match: '^\s*include\s+"([^"]+)"'
scope: meta.include.dafny
captures:
1: string.quoted.double.include.dafny
punctuation:
- match: ';'
scope: punctuation.terminator.dafny
- match: '[(){}\[\].,]'
scope: punctuation.delimiter.dafny