This repository has been archived by the owner on Dec 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgrammar.js
333 lines (288 loc) · 7.43 KB
/
grammar.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
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
module.exports = grammar({
name: 'd',
extras: $ => [
$._whitespace,
$.line_comment,
$.block_comment,
],
word: $ => $.identifier,
conflicts: $ => [
[$.module_attributes, $._attribute],
],
supertypes: $ => [
$._attribute,
$._declaration,
],
rules: {
// ========================================================================
// Source file
// ========================================================================
// https://dlang.org/spec/lex.html#SourceFile
// First node is called module for convenience
module: $ =>
seq(
optional(
choice(
$.byte_order_mark,
$.shebang,
),
),
optional($._module),
),
// https://dlang.org/spec/lex.html#ByteOrderMark
byte_order_mark: $ =>
token(
'\uFEFF'
),
// https://dlang.org/spec/lex.html#Shebang
shebang: $ =>
token(
seq(
/#!.*/,
'\n',
)
),
// ========================================================================
// Principal lexer tokens
// ========================================================================
// https://dlang.org/spec/lex.html#Identifier
identifier: $ => /[_\p{XID_Start}][_\p{XID_Continue}]*/,
// https://dlang.org/spec/lex.html#WhiteSpace
_whitespace: $ =>
token(
/[\s\f\uFEFF\u2060\u200B]|\\\r?\n/
),
// https://dlang.org/spec/lex.html#Comment
comment: $ =>
choice(
$.block_comment,
$.line_comment,
// TODO: Support nested comments
),
// https://dlang.org/spec/lex.html#BlockComment
block_comment: $ =>
token(
seq(
'/*',
/[^*]*\*+([^/*][^*]*\*+)*/,
'/'
)
),
// https://dlang.org/spec/lex.html#LineComment
line_comment: $ =>
token(
seq('//', /(\\(.|\r?\n)|[^\\\n])*/),
),
// ========================================================================
// Module
// ========================================================================
// https://dlang.org/spec/grammar.html#Module
_module: $ =>
choice(
$.module_declaration,
seq(
optional($.module_declaration),
repeat1($._decl_def),
),
),
// https://dlang.org/spec/grammar.html#ModuleDeclaration
module_declaration: $ =>
seq(
field('attributes', optional($.module_attributes)),
'module',
field('name', $.module_fully_qualified_name),
';'
),
// https://dlang.org/spec/grammar.html#ModuleFullyQualifiedName
module_fully_qualified_name: $ =>
sep1(
$.identifier,
'.',
),
// https://dlang.org/spec/grammar.html#ImportList
import_list: $ =>
seq(
repeat(
seq(
$.import,
',',
),
),
choice(
$.import,
$.import_bindings,
),
),
// https://dlang.org/spec/grammar.html#Import
import: $ =>
seq(
optional(seq(field('alias', $.identifier), '=')),
field('module', $.module_fully_qualified_name),
),
// https://dlang.org/spec/module.html#ImportBindings
import_bindings: $ =>
seq(
$.import,
':',
$._import_bind_list,
),
// https://dlang.org/spec/module.html#ImportBindList
_import_bind_list: $ =>
seq(
repeat(
seq($.import_bind, ','),
),
$.import_bind,
),
// https://dlang.org/spec/module.html#ImportBind
import_bind: $ =>
seq(
$.identifier, optional(seq('=', $.identifier)),
),
// ========================================================================
// Declarations
// ========================================================================
// https://dlang.org/spec/grammar.html#DeclDef
_decl_def: $ =>
// TODO: Add other declarations
choice(
$.attribute_specifier,
$._declaration,
$.empty_declaration,
),
// https://dlang.org/spec/grammar.html#EmptyDeclaration
empty_declaration: $ =>
';',
// https://dlang.org/spec/declaration.html#Declaration
_declaration: $ =>
choice(
$.import_declaration,
),
// https://dlang.org/spec/grammar.html#ImportDeclaration
import_declaration: $ =>
seq(
optional('static'),
'import',
field('imports', $.import_list),
';',
),
// https://dlang.org/spec/attribute.html#DeclarationBlock
_declaration_block: $ =>
choice(
$._decl_def,
$.declaration_block,
),
declaration_block: $ =>
seq(
'{',
repeat($._decl_def),
'}',
),
// ========================================================================
// Attributes
// ========================================================================
// https://dlang.org/spec/attribute.html#AttributeSpecifier
attribute_specifier: $ =>
seq(
$._attribute,
choice(
':',
$._declaration_block,
),
),
_attribute: $ =>
choice(
$.deprecated_attribute,
$.visibility_attribute,
),
// https://dlang.org/spec/grammar.html#ModuleAttributes
module_attributes: $ =>
// TODO: Add user defined attributes
repeat1(
$.deprecated_attribute,
),
// https://dlang.org/spec/grammar.html#DeprecatedAttribute
deprecated_attribute: $ =>
// TODO: Add assign expression
'deprecated',
// https://dlang.org/spec/attribute.html#VisibilityAttribute
visibility_attribute: $ =>
// TODO: Implement package visibility attribute
choice(
'private',
'protected',
'public',
'export',
),
// ========================================================================
// Types
// ========================================================================
// https://dlang.org/spec/type.html#Type
type: $ =>
seq(
field('qualifiers', repeat($.type_qualifier)),
$._basic_type,
field('suffixes', repeat($.type_suffix)),
),
// https://dlang.org/spec/type.html#TypeCtor
type_qualifier: $ =>
choice(
'const',
'immutable',
'inout',
'shared',
),
type_suffix: $ =>
// TODO: Add all the suffixes
choice(
'*',
seq('[', ']'),
),
// https://dlang.org/spec/type.html#BasicType
_basic_type: $ =>
// TODO: Add all basic types
choice(
$.vector_type,
$.fundamental_type,
),
// https://dlang.org/spec/type.html#FundamentalType
fundamental_type: $ =>
choice(
'bool',
'byte',
'ubyte',
'short',
'ushort',
'int',
'uint',
'long',
'ulong',
'cent',
'ucent',
'char',
'wchar',
'dchar',
'float',
'double',
'real',
'ifloat',
'idouble',
'ireal',
'cfloat',
'cdouble',
'creal',
'void',
),
// https://dlang.org/spec/type.html#Vector
vector_type: $ =>
seq(
'__vector',
'(',
field('base', $.type),
')',
),
}
});
function sep1(rule, separator) {
return seq(rule, repeat(seq(separator, rule)))
}