Skip to content

Commit 8155d84

Browse files
committed
[Delete] borrados archvos no usados
1 parent fe723e0 commit 8155d84

File tree

8 files changed

+12320
-1321
lines changed

8 files changed

+12320
-1321
lines changed

proyectoCompilador/src/resources/input2.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

proyectoCompilador/src/services/myantlr4/.antlr/Java.interp

Lines changed: 366 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 205 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,205 @@
1+
MAIN=1
2+
ABSTRACT=2
3+
ASSERT=3
4+
BOOLEAN=4
5+
BREAK=5
6+
BYTE=6
7+
CASE=7
8+
CATCH=8
9+
CHAR=9
10+
CLASS=10
11+
CONST=11
12+
CONTINUE=12
13+
DEFAULT=13
14+
DO=14
15+
DOUBLE=15
16+
ELSE=16
17+
ENUM=17
18+
EXTENDS=18
19+
FINAL=19
20+
FINALLY=20
21+
FLOAT=21
22+
FOR=22
23+
IF=23
24+
GOTO=24
25+
IMPLEMENTS=25
26+
IMPORT=26
27+
INSTANCEOF=27
28+
INT=28
29+
INTERFACE=29
30+
LONG=30
31+
NATIVE=31
32+
NEW=32
33+
PACKAGE=33
34+
PRIVATE=34
35+
PROTECTED=35
36+
PUBLIC=36
37+
RETURN=37
38+
SHORT=38
39+
STATIC=39
40+
STRICTFP=40
41+
SUPER=41
42+
STRING=42
43+
SWITCH=43
44+
SYNCHRONIZED=44
45+
THIS=45
46+
THROW=46
47+
THROWS=47
48+
TRANSIENT=48
49+
TRY=49
50+
VOID=50
51+
VOLATILE=51
52+
WHILE=52
53+
IntegerLiteral=53
54+
FloatingPointLiteral=54
55+
BooleanLiteral=55
56+
CharacterLiteral=56
57+
StringLiteral=57
58+
NullLiteral=58
59+
LPAREN=59
60+
RPAREN=60
61+
LBRACE=61
62+
RBRACE=62
63+
LBRACK=63
64+
RBRACK=64
65+
SEMI=65
66+
COMMA=66
67+
DOT=67
68+
ASSIGN=68
69+
GT=69
70+
LT=70
71+
BANG=71
72+
TILDE=72
73+
QUESTION=73
74+
COLON=74
75+
EQUAL=75
76+
LE=76
77+
GE=77
78+
NOTEQUAL=78
79+
AND=79
80+
OR=80
81+
INC=81
82+
DEC=82
83+
ADD=83
84+
SUB=84
85+
MUL=85
86+
DIV=86
87+
BITAND=87
88+
BITOR=88
89+
CARET=89
90+
MOD=90
91+
ADD_ASSIGN=91
92+
SUB_ASSIGN=92
93+
MUL_ASSIGN=93
94+
DIV_ASSIGN=94
95+
AND_ASSIGN=95
96+
OR_ASSIGN=96
97+
XOR_ASSIGN=97
98+
MOD_ASSIGN=98
99+
LSHIFT_ASSIGN=99
100+
RSHIFT_ASSIGN=100
101+
URSHIFT_ASSIGN=101
102+
IDENTIFIER=102
103+
AT=103
104+
ELLIPSIS=104
105+
WS=105
106+
COMMENT=106
107+
LINE_COMMENT=107
108+
'main'=1
109+
'abstract'=2
110+
'assert'=3
111+
'boolean'=4
112+
'break'=5
113+
'byte'=6
114+
'case'=7
115+
'catch'=8
116+
'char'=9
117+
'class'=10
118+
'const'=11
119+
'continue'=12
120+
'default'=13
121+
'do'=14
122+
'double'=15
123+
'else'=16
124+
'enum'=17
125+
'extends'=18
126+
'final'=19
127+
'finally'=20
128+
'float'=21
129+
'for'=22
130+
'if'=23
131+
'goto'=24
132+
'implements'=25
133+
'import'=26
134+
'instanceof'=27
135+
'int'=28
136+
'interface'=29
137+
'long'=30
138+
'native'=31
139+
'new'=32
140+
'package'=33
141+
'private'=34
142+
'protected'=35
143+
'public'=36
144+
'return'=37
145+
'short'=38
146+
'static'=39
147+
'strictfp'=40
148+
'super'=41
149+
'String'=42
150+
'switch'=43
151+
'synchronized'=44
152+
'this'=45
153+
'throw'=46
154+
'throws'=47
155+
'transient'=48
156+
'try'=49
157+
'void'=50
158+
'volatile'=51
159+
'while'=52
160+
'null'=58
161+
'('=59
162+
')'=60
163+
'{'=61
164+
'}'=62
165+
'['=63
166+
']'=64
167+
';'=65
168+
','=66
169+
'.'=67
170+
'='=68
171+
'>'=69
172+
'<'=70
173+
'!'=71
174+
'~'=72
175+
'?'=73
176+
':'=74
177+
'=='=75
178+
'<='=76
179+
'>='=77
180+
'!='=78
181+
'&&'=79
182+
'||'=80
183+
'++'=81
184+
'--'=82
185+
'+'=83
186+
'-'=84
187+
'*'=85
188+
'/'=86
189+
'&'=87
190+
'|'=88
191+
'^'=89
192+
'%'=90
193+
'+='=91
194+
'-='=92
195+
'*='=93
196+
'/='=94
197+
'&='=95
198+
'|='=96
199+
'^='=97
200+
'%='=98
201+
'<<='=99
202+
'>>='=100
203+
'>>>='=101
204+
'@'=103
205+
'...'=104

0 commit comments

Comments
 (0)