-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRu.g4
128 lines (107 loc) · 2.09 KB
/
Ru.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
grammar Ru;
programa
: bloque EOF
;
bloque
: (sentencia)*
;
sentencia
: asignacion
| sentenciaIf
| sentenciaWhile
| log
| imprimir
| OTRO {fmt.Println("caracter desconocido: ", $OTRO.text);}
;
asignacion
: ID ASIGNA expr PTOCOMA
;
sentenciaIf
: IF bloqueCondicional (ELSE IF bloqueCondicional)* (ELSE bloqueDeSentencia)?
;
bloqueCondicional
: APAR expr CPAR bloqueDeSentencia
;
bloqueDeSentencia
: ALLAVE bloque CLLAVE
;
sentenciaWhile
: WHILE expr bloqueDeSentencia
;
log
: LOG expr PTOCOMA
;
imprimir
: IMPRIMIR expr PTOCOMA
;
expr
: <assoc=right>expr POW expr #PowExpr
| MENOS right=expr #MenosUnarioExpr
| NOT right=expr #notExpr
| left=expr op=(MULT | DIV | MOD) right=expr #multiplicacionExpr
| left=expr op=(MAS | MENOS) right=expr #aditivaExpr
| left=expr op=(MAYIG | MENIG | MENORQ | MAYORQ) right=expr #relacionalExpr
| left=expr op=(IGUAL | DIFQ) right=expr #igualdadExpr
| left=expr AND right=expr #andExpr
| left=expr OR right=expr #orExpr
| atomo #atomExpr
;
atomo
: APAR expr CPAR #parExpr
| (INT | FLOAT) #numberAtom
| (TRUE | FALSE) #booleanAtom
| ID #idAtom
| STRING #stringAtom
| NIL #nilAtom
;
OR : '||';
AND : '&&';
IGUAL : '==';
DIFQ : '!=';
MAYORQ : '>';
MENORQ : '<';
MENIG : '<=';
MAYIG : '>=';
MAS : '+';
MENOS : '-';
MULT : '*';
DIV : '/';
MOD : '%';
POW : '^';
NOT : '!';
PTOCOMA : ';';
ASIGNA : '=';
APAR : '(';
CPAR : ')';
ALLAVE : '{';
CLLAVE : '}';
TRUE : 'true';
FALSE : 'false';
NIL : 'nil';
IF : 'if';
ELSE : 'else';
WHILE : 'while';
LOG : 'log';
IMPRIMIR : 'imprime';
ID
: [a-zA-Z_] [a-zA-Z_0-9]*
;
INT
: [0-9]+
;
FLOAT
: [0-9]+ '.' [0-9]*
| '.' [0-9]+
;
STRING
: '"' (~["\r\n] | '""')* '"'
;
COMENTARIO
: '#' ~[\r\n]* -> skip
;
ESPACIO
: [ \t\r\n] -> skip
;
OTRO
: .
;