-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdscript.g4
More file actions
424 lines (353 loc) · 7.86 KB
/
dscript.g4
File metadata and controls
424 lines (353 loc) · 7.86 KB
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
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
grammar dscript;
// ------ GRAMMAR RULES ------ //
script: schema? metadata* permissions* contract EOF;
// Top-level metadata
metadata:
name
| description
| author
| version
| license
| repo
| website;
schema: SCHEMA STRING SEMI;
author: AUTHOR STRING SEMI;
description: DESCRIPTION STRING SEMI;
version: VERSION SEMVER SEMI;
license: LICENSE STRING SEMI;
repo: REPO STRING SEMI;
website: WEBSITE STRING SEMI;
name: NAME STRING SEMI;
// Permissions declarations
permissions: PERMISSIONS permission (COMMA permission)* SEMI;
permission:
namespace = identifier DOUBLE_COLON perm = identifier;
// The single contract
contract:
CONTRACT identifier OPEN_BRACE (varDecl SEMI)* (
hook
| impl
| func
)* CLOSE_BRACE;
// Hooks and impls
hook: HOOK identifier OPEN_PAREN params? CLOSE_PAREN block;
impl:
IMPL identifier OPEN_PAREN params? CLOSE_PAREN ARROW dataType block;
func:
FUNC identifier OPEN_PAREN (
pos = params COMMA (
OPEN_BRACE named = params CLOSE_BRACE
)
| pos = params
| OPEN_BRACE named = params CLOSE_BRACE
)? CLOSE_PAREN (ARROW dataType)? block;
// Function parameters
params: param (COMMA param)*;
param: dataType identifier;
dataType:
identifier Q?
| LIST LT dataType GT Q?
| MAP LT dataType ',' dataType GT Q?;
// Control-flow
stmt:
varDecl
| assignment
| returnStmt
| breakStmt
| continueStmt
| throwStmt
| ifStmt
| whileStmt
| forStmt
| tryStmt;
// switch postponed | switchStmt;
throwStmt: THROW expr;
ifStmt: IF OPEN_PAREN expr CLOSE_PAREN block elseStmt?;
elseStmt: ELSE (ifStmt | block);
whileStmt: WHILE OPEN_PAREN expr CLOSE_PAREN block;
forStmt:
FOR OPEN_PAREN (
(varDecl | IDENT) SEMI expr SEMI assignment
| varDecl IN expr
) CLOSE_PAREN block;
returnStmt: RETURN expr?;
breakStmt: BREAK;
continueStmt: CONTINUE;
// switch is postponed until further notice switchStmt: SWITCH OPEN_PAREN expr CLOSE_PAREN
// OPEN_BRACE caseStmt* defaultStmt? CLOSE_BRACE; caseStmt: CASE (literal | identifier) COLON block;
// defaultStmt: DEFAULT COLON block;
/*
* Try block for exception handling.
*/
tryStmt: TRY block catchBlock;
/*
* Catch block for exception handling.
*/
catchBlock: CATCH OPEN_PAREN identifier CLOSE_PAREN block;
line: (stmt | expr) SEMI | block;
// Variable declarations & assignments
varType: FINAL | CONST | VAR;
assignment: simpleAssignment | compoundAssignment;
simpleAssignment: identifier ASSIGN expr;
compoundAssignment:
identifier op = PLUS_ASSIGN expr
| identifier op = MINUS_ASSIGN expr
| identifier op = MULTIPLY_ASSIGN expr
| identifier op = DIVIDE_ASSIGN expr
| identifier op = MOD_ASSIGN expr;
varDecl:
varType dataType identifier
| varType dataType? assignment;
// Expressions
expr: logicalExpr;
logicalExpr:
left = relationalExpr (
op = (AND | OR) right = relationalExpr
)*;
relationalExpr:
left = bitwiseExpr (
op = (GT | LT | EQ | NE | GTE | LTE) right = bitwiseExpr
)*;
bitwiseExpr:
left = shiftExpr (
op = (BIT_AND | BIT_OR | BIT_XOR) right = shiftExpr
)*;
shiftExpr:
left = additiveExpr (
op = (BIT_LEFT_SHIFT | BIT_RIGHT_SHIFT) right = additiveExpr
)*;
additiveExpr:
left = multiplicativeExpr (
op = (PLUS | MINUS) right = multiplicativeExpr
)*;
multiplicativeExpr:
left = unaryExpr (
op = (MULTIPLY | DIVIDE | MOD) right = unaryExpr
)*;
unaryExpr:
op = (PLUS | MINUS | NOT | BIT_NOT) unaryExpr
| suffixExpr;
suffixExpr: primaryExpr op = (PLUS_PLUS | MINUS_MINUS)?;
primaryExpr:
OPEN_PAREN expr CLOSE_PAREN
| functionCall
| externalFunctionCall
| literal
| identifier;
externalFunctionCall:
namespace = identifier DOUBLE_COLON functionCall;
functionCall: method = identifier OPEN_PAREN args? CLOSE_PAREN;
args:
positionalArg (COMMA positionalArg)*
| namedArg (COMMA namedArg)*
| positionalArg (COMMA positionalArg)* COMMA namedArg (
COMMA namedArg
)*;
namedArg: identifier COLON expr;
positionalArg: expr;
// Literals
literal:
INT
| DOUBLE
| BOOL
| STRING
| NULL
| arrayLiteral
| mapLiteral
| objectLiteral;
identifier:
(
ident = IDENT
| ident = AUTHOR
| ident = NAME
| ident = DESCRIPTION
| ident = VERSION
| ident = LICENSE
| ident = REPO
| ident = WEBSITE
| ident = PERMISSIONS
| ident = CONTRACT
| ident = IMPL
| ident = HOOK
| ident = FUNC
| ident = LIST
| ident = MAP
| ident = SCHEMA
) (nullAware = NOT | allowNull = Q)?
// Indexing an identifier
| indexIdent = identifier OPEN_BRACKET index = expr CLOSE_BRACKET (
nullAware = NOT
| allowNull = Q
)?
// Accessing a property of an identifier
| objIdent = identifier DOT property = identifier;
arrayLiteral: OPEN_BRACKET (expr (COMMA expr)*)? CLOSE_BRACKET;
objectLiteral:
AT identifier OPEN_BRACE (
objectProperty (COMMA objectProperty)*
)? CLOSE_BRACE;
objectProperty: identifier COLON expr;
mapLiteral:
OPEN_BRACE (mapEntry (COMMA mapEntry)*)? CLOSE_BRACE;
mapEntry: key = expr COLON value = expr;
/*
* A sequence of statements enclosed in braces.
*/
block: (OPEN_BRACE line* CLOSE_BRACE)
| ifStmt
| whileStmt
| forStmt
//| switchStmt
| tryStmt
| catchBlock;
// ------ LEXER RULES ------ //
// Operators & punctuation
PLUS: '+';
MINUS: '-';
MULTIPLY: '*';
DIVIDE: '/';
MOD: '%';
OPEN_PAREN: '(';
CLOSE_PAREN: ')';
OPEN_BRACE: '{';
CLOSE_BRACE: '}';
OPEN_BRACKET: '[';
CLOSE_BRACKET: ']';
GT: '>';
LT: '<';
EQ: '==';
ASSIGN: '=';
NE: '!=';
GTE: '>=';
LTE: '<=';
COLON: ':';
DOUBLE_COLON: '::';
COMMA: ',';
SEMI: ';';
AND: '&&';
OR: '||';
NOT: '!';
BIT_AND: '&';
BIT_OR: '|';
BIT_XOR: '^';
BIT_NOT: '~';
BIT_LEFT_SHIFT: '<<';
BIT_RIGHT_SHIFT: '>>';
ARROW: '->';
Q: '?';
DOT: '.';
PLUS_ASSIGN: '+=';
MINUS_ASSIGN: '-=';
MULTIPLY_ASSIGN: '*=';
DIVIDE_ASSIGN: '/=';
MOD_ASSIGN: '%=';
PLUS_PLUS: '++';
MINUS_MINUS: '--';
AT: '@';
DOLLAR: '$';
// Keywords
/*
* Schema keyword declaring the script's schema it's following.
*/
SCHEMA: 'schema';
/*
* Metadata keyword declaring the script's author.
*/
AUTHOR: 'author';
/*
* Metadata keyword declaring a new line in the script's description.
*/
DESCRIPTION: 'description';
/*
* Metadata keyword declaring the script's version.
*/
VERSION: 'version';
/*
* Metadata keyword declaring the script's license.
*/
LICENSE: 'license';
/*
* Metadata keyword declaring the script's repository.
*/
REPO: 'repo';
/*
* Metadata keyword declaring the script's website.
*/
WEBSITE: 'website';
/*
* Metadata keyword declaring the script's name.
*/
NAME: 'name';
/*
* Metadata keyword declaring the permissions required by the script.
*/
PERMISSIONS: 'permissions';
/*
* Metadata keyword declaring the contract of the script.
*/
CONTRACT: 'contract';
/*
* Metadata keyword declaring a contractualy mandated implementation.
*/
IMPL: 'impl';
/*
* Metadata keyword declaring a hook in the script.
*/
HOOK: 'hook';
/*
* Metadata keyword declaring a function in the script not exposed to the host.
*/
FUNC: 'func';
// Data types
LIST: 'List';
MAP: 'Map';
// Control flow keywords
IF: 'if';
ELSE: 'else';
WHILE: 'while';
FOR: 'for';
IN: 'in';
DO: 'do';
RETURN: 'return';
BREAK: 'break';
CONTINUE: 'continue';
SWITCH: 'switch';
CASE: 'case';
DEFAULT: 'default';
TRY: 'try';
CATCH: 'catch';
THROW: 'throw';
FINAL: 'final';
CONST: 'const';
VAR: 'var';
// Fragments
fragment DIGIT: [0-9];
fragment DOUBLE_QUOTE: '"';
fragment QUOTE: '\'';
/**
* Version rule following [Semver 2.0](https://semver.org/).
*
* Matches versions like 1.0.0, 2.1.3, etc.
*/
SEMVER:
VERSION_CORE
| VERSION_CORE MINUS PRE_RELEASE (PLUS BUILD)?
| VERSION_CORE PLUS BUILD;
fragment VERSION_CORE: MAJOR DOT MINOR DOT PATCH;
fragment MAJOR: DIGIT+;
fragment MINOR: DIGIT+;
fragment PATCH: DIGIT+;
fragment BUILD: DIGIT+;
fragment PRE_RELEASE: IDENT (DOT IDENT)*;
// identifiers, numbers, strings
BOOL: 'true' | 'false';
NULL: 'null';
INT: DIGIT+;
DOUBLE: DIGIT+ DOT DIGIT+;
IDENT: [a-zA-Z_][a-zA-Z0-9_]*;
STRING:
DOUBLE_QUOTE (~["\\\r\n] | '\\' .)* DOUBLE_QUOTE
| QUOTE ( ~['\\\r\n] | '\\' .)* QUOTE;
WS: [ \t\r\n]+ -> skip;
COMMENT: '//' ~[\r\n]* -> skip;
DOC_COMMENT: '///' ~[\r\n]* -> skip;