This repository has been archived by the owner on Mar 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cylvre.g4
214 lines (162 loc) · 7.94 KB
/
Cylvre.g4
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
grammar Cylvre;
/*************
****PARSER****
*************/
compilationUnit : fileDeclaration EOF ;
fileDeclaration : fileBody;
fileBody : field* function* statement* classDeclaration*;
classDeclaration : CLASS className '{' classBody '}' ;
className : qualifiedName ;
classBody : field* function* ;
field : type name;
function : functionDeclaration block ;
functionDeclaration : (type)? FUNC functionName '(' parametersList? ')' ;
parametersList : parameter (',' parameter)*
| parameter (',' parameterWithDefaultValue)*
| parameterWithDefaultValue (',' parameterWithDefaultValue)*
;
functionName : ID ;
parameter : type ID ;
parameterWithDefaultValue : type ID ASSIGN defaultValue=expression ;
type : primitiveType
| classType
| arrayType
;
primitiveType : BOOL_KW
| STRING_KW
| CHAR_KW
| BYTE_KW
| SHORT_KW
| INT_KW
| LONG_KW
| FLOAT_KW
| DOUBLE_KW
| VOID_KW
;
classType : qualifiedName ;
arrayType : primitiveType ('['']')+
| classType ('['']')+
;
block : '{' statement* '}' ;
statement : block
| variableDeclaration
| assignment
| printlnStatement
| printStatement
| print_errStatement
| forStatement
| ifStatement
| returnStatement
| scannerStatement
| value
| expression
;
variableDeclaration : (type)? name ASSIGN expression ';' #VariableDeclarationWithAssignment
| arrayDeclaration #VariableArrayDeclaration
;
arrayDeclaration : arrayType name ASSIGN arrayAssignment';' ;
arrayAssignment : '['value*']';
assignment : name ASSIGN expression;
printlnStatement : PRINTLN '(' expression ')' ';' ;
printStatement : PRINT '('expression')'';' ;
print_errStatement : PRINT_ERR '(' expression ')'';' ;
scannerStatement : SCANNER ';';
returnStatement : RETURN expression #ReturnWithValue
| RETURN #ReturnVoid ;
ifStatement : expression '?' trueStatement=statement | block ';' (ELSE falseStatement=statement | block)?;
forStatement : FOR forConditions (statement | block) ;
forConditions : iterator=variableReference '(' startExpr=expression range=TO endExpr=expression ')' ;
name : ID ;
argumentList : argument? (',' a=argument)* #UnnamedArgumentsList
| namedArgument? (',' namedArgument)* #NamedArgumentsList ;
argument : expression ;
namedArgument : name '~>' expression ;
expression : variableReference #VarReference
| owner=expression '.' functionName '(' argumentList ')'';' #FunctionCall
| functionName '(' argumentList ')'';' #FunctionCall
| superCall=SUPER '('argumentList ')'';' #SuperCall
| newCall=NEW className '('argumentList ')'';' #ConstructorCall
| value #ValueExpr
| '('expression '*' expression')' #Multiply
| expression '*' expression #Multiply
| '(' expression '/' expression ')' #Divide
| expression '/' expression #Divide
| '(' expression '+' expression ')' #Add
| expression '+' expression #Add
| '(' expression '-' expression ')' #Subtract
| expression '-' expression #Subtract
| expression cmp='>' expression #ConditionalExpression
| expression cmp='<' expression #ConditionalExpression
| expression cmp='=' expression #ConditionalExpression
| expression cmp='!=' expression #ConditionalExpression
| expression cmp='>=' expression #ConditionalExpression
| expression cmp='<=' expression #ConditionalExpression
;
variableReference : ID ;
value : NUMBER
| BOOL
| STRING ;
qualifiedName : ID ('.' ID)*;
/************
****LEXER****
************/
//Keywords
FUNC : 'func';
CLASS : 'class';
PRINTLN : 'println' ;
PRINT : 'print' ;
PRINT_ERR : 'print_err';
FOR : 'for';
RETURN : 'return';
ELSE : 'else';
TO : 'to';
SUPER : 'super';
NEW : 'new';
TRUE : 'true';
FALSE : 'false';
SCANNER : 'scanner';
//Assignment
ASSIGN : ':';
//Arithmetic
PLUS : '+';
MINUS : '-';
MULTIPLY : '*';
DIVIDE : '/';
//Type Keywords
STRING_KW : 'str';
BYTE_KW : 'byte';
INT_KW : 'int';
LONG_KW : 'long';
SHORT_KW : 'short';
BOOL_KW : 'bool';
VOID_KW : 'void';
CHAR_KW : 'char';
FLOAT_KW : 'float';
DOUBLE_KW : 'double';
//Comparison
EQUALS : '=' ;
GREATER_THAN : '>';
LESS_THAN : '<';
GREATER_OR_EQUALS : '>=';
LESS_OR_EQUALS : '<=';
DIFFERENT : '!=';
//Symbols
TILDE : '~';
DB_TILDE : TILDE TILDE;
RBOX : ']';
LBOX : '[';
RCURLY : '}';
LCURLY : '{';
RPAREN : ')';
LPAREN : '(';
SEMICOLON : ';';
Q_MARK : '?';
ARROW : '~>';
//Literals
NUMBER : '-'?[0-9.]+ ;
BOOL : TRUE | FALSE ;
STRING : '"'~('\r' | '\n' | '"')*'"' ;
//Identifier
ID : [a-zA-Z0-9_]+ ;
//Whitespace and Comments
WS : [ \t\r\n]+ -> channel(HIDDEN) ;