Merge remote-tracking branch 'origin/main'

This commit is contained in:
ahmad 2024-05-11 13:57:11 +02:00
commit 2448139ba0
10 changed files with 259 additions and 244 deletions

View File

@ -20,7 +20,7 @@ block : '{' (localVar | stmt)* '}';
stmt : 'if' '(' expr ')' block ('else' block)? #If stmt : 'if' '(' expr ')' block ('else' block)? #If
| 'for' '(' assign ';' expr ';' assign ')' block #For | 'for' '(' assign ';' expr ';' assign ')' block #For
| 'while' '(' expr ')' block #While | 'while' '(' expr ')' block #While
| 'do' block 'while' '(' expr ')' #DoWhile | 'do' block 'while' '(' expr ')' ';'? #DoWhile
| 'return' expr ';' #Return | 'return' expr ';' #Return
| 'return' ';' #ReturnVoid | 'return' ';' #ReturnVoid
| 'break' ';' #Break | 'break' ';' #Break

View File

@ -17,9 +17,12 @@ public class ASTGenerator {
declarations = ctx.field().stream().map(ASTGenerator::generateFieldVariable).toList(); declarations = ctx.field().stream().map(ASTGenerator::generateFieldVariable).toList();
} }
List<Constructor> constructors = new ArrayList<>(); List<Constructor> constructors = new ArrayList<>();
if (ctx.constructor() != null) { if (!ctx.constructor().isEmpty()) {
constructors = ctx.constructor().stream().map(ASTGenerator::generateConstructor).toList(); constructors = ctx.constructor().stream().map(ASTGenerator::generateConstructor).toList();
} }
else {
constructors.add(new Constructor(ctx.id().IDENTIFIER().getText(), List.of(), new Block(List.of(), List.of())));
}
List<Method> meths = new ArrayList<>(); List<Method> meths = new ArrayList<>();
if (ctx.meth() != null) { if (ctx.meth() != null) {
meths = ctx.meth().stream().map(ASTGenerator::generateMethod).toList(); meths = ctx.meth().stream().map(ASTGenerator::generateMethod).toList();

File diff suppressed because one or more lines are too long

View File

@ -1,4 +1,4 @@
// Generated from C:/Users/laure/Documents/Dev/Compilerbau/Projekt/CompilerULTIMATE/src/main/antlr/Decaf.g4 by ANTLR 4.13.1 // Generated from C:/dev/Compilerbau/CompilerULTIMATE/src/main/antlr/Decaf.g4 by ANTLR 4.13.1
package de.maishai.antlr; package de.maishai.antlr;
import org.antlr.v4.runtime.ParserRuleContext; import org.antlr.v4.runtime.ParserRuleContext;

View File

@ -1,4 +1,4 @@
// Generated from C:/Users/laure/Documents/Dev/Compilerbau/Projekt/CompilerULTIMATE/src/main/antlr/Decaf.g4 by ANTLR 4.13.1 // Generated from C:/dev/Compilerbau/CompilerULTIMATE/src/main/antlr/Decaf.g4 by ANTLR 4.13.1
package de.maishai.antlr; package de.maishai.antlr;
import org.antlr.v4.runtime.tree.AbstractParseTreeVisitor; import org.antlr.v4.runtime.tree.AbstractParseTreeVisitor;

View File

@ -1,4 +1,4 @@
// Generated from C:/Users/laure/Documents/Dev/Compilerbau/Projekt/CompilerULTIMATE/src/main/antlr/Decaf.g4 by ANTLR 4.13.1 // Generated from C:/dev/Compilerbau/CompilerULTIMATE/src/main/antlr/Decaf.g4 by ANTLR 4.13.1
package de.maishai.antlr; package de.maishai.antlr;
import org.antlr.v4.runtime.Lexer; import org.antlr.v4.runtime.Lexer;
import org.antlr.v4.runtime.CharStream; import org.antlr.v4.runtime.CharStream;

View File

@ -1,4 +1,4 @@
// Generated from C:/Users/laure/Documents/Dev/Compilerbau/Projekt/CompilerULTIMATE/src/main/antlr/Decaf.g4 by ANTLR 4.13.1 // Generated from C:/dev/Compilerbau/CompilerULTIMATE/src/main/antlr/Decaf.g4 by ANTLR 4.13.1
package de.maishai.antlr; package de.maishai.antlr;
import org.antlr.v4.runtime.tree.ParseTreeListener; import org.antlr.v4.runtime.tree.ParseTreeListener;

View File

@ -1,4 +1,4 @@
// Generated from C:/Users/laure/Documents/Dev/Compilerbau/Projekt/CompilerULTIMATE/src/main/antlr/Decaf.g4 by ANTLR 4.13.1 // Generated from C:/dev/Compilerbau/CompilerULTIMATE/src/main/antlr/Decaf.g4 by ANTLR 4.13.1
package de.maishai.antlr; package de.maishai.antlr;
import org.antlr.v4.runtime.atn.*; import org.antlr.v4.runtime.atn.*;
import org.antlr.v4.runtime.dfa.DFA; import org.antlr.v4.runtime.dfa.DFA;
@ -1151,9 +1151,9 @@ public class DecafParser extends Parser {
enterRule(_localctx, 24, RULE_stmt); enterRule(_localctx, 24, RULE_stmt);
int _la; int _la;
try { try {
setState(182); setState(184);
_errHandler.sync(this); _errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,11,_ctx) ) { switch ( getInterpreter().adaptivePredict(_input,12,_ctx) ) {
case 1: case 1:
_localctx = new IfContext(_localctx); _localctx = new IfContext(_localctx);
enterOuterAlt(_localctx, 1); enterOuterAlt(_localctx, 1);
@ -1238,17 +1238,27 @@ public class DecafParser extends Parser {
expr(0); expr(0);
setState(166); setState(166);
match(T__5); match(T__5);
setState(168);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==T__3) {
{
setState(167);
match(T__3);
}
}
} }
break; break;
case 5: case 5:
_localctx = new ReturnContext(_localctx); _localctx = new ReturnContext(_localctx);
enterOuterAlt(_localctx, 5); enterOuterAlt(_localctx, 5);
{ {
setState(168);
match(T__15);
setState(169);
expr(0);
setState(170); setState(170);
match(T__15);
setState(171);
expr(0);
setState(172);
match(T__3); match(T__3);
} }
break; break;
@ -1256,9 +1266,9 @@ public class DecafParser extends Parser {
_localctx = new ReturnVoidContext(_localctx); _localctx = new ReturnVoidContext(_localctx);
enterOuterAlt(_localctx, 6); enterOuterAlt(_localctx, 6);
{ {
setState(172); setState(174);
match(T__15); match(T__15);
setState(173); setState(175);
match(T__3); match(T__3);
} }
break; break;
@ -1266,9 +1276,9 @@ public class DecafParser extends Parser {
_localctx = new BreakContext(_localctx); _localctx = new BreakContext(_localctx);
enterOuterAlt(_localctx, 7); enterOuterAlt(_localctx, 7);
{ {
setState(174); setState(176);
match(T__16); match(T__16);
setState(175); setState(177);
match(T__3); match(T__3);
} }
break; break;
@ -1276,9 +1286,9 @@ public class DecafParser extends Parser {
_localctx = new AssignmentContext(_localctx); _localctx = new AssignmentContext(_localctx);
enterOuterAlt(_localctx, 8); enterOuterAlt(_localctx, 8);
{ {
setState(176); setState(178);
assign(); assign();
setState(177); setState(179);
match(T__3); match(T__3);
} }
break; break;
@ -1286,9 +1296,9 @@ public class DecafParser extends Parser {
_localctx = new StatementExpressionstmtContext(_localctx); _localctx = new StatementExpressionstmtContext(_localctx);
enterOuterAlt(_localctx, 9); enterOuterAlt(_localctx, 9);
{ {
setState(179); setState(181);
stmtexpr(); stmtexpr();
setState(180); setState(182);
match(T__3); match(T__3);
} }
break; break;
@ -1367,7 +1377,7 @@ public class DecafParser extends Parser {
enterRule(_localctx, 26, RULE_stmtexpr); enterRule(_localctx, 26, RULE_stmtexpr);
int _la; int _la;
try { try {
setState(193); setState(195);
_errHandler.sync(this); _errHandler.sync(this);
switch (_input.LA(1)) { switch (_input.LA(1)) {
case THIS: case THIS:
@ -1375,7 +1385,7 @@ public class DecafParser extends Parser {
_localctx = new MethodCallContext(_localctx); _localctx = new MethodCallContext(_localctx);
enterOuterAlt(_localctx, 1); enterOuterAlt(_localctx, 1);
{ {
setState(184); setState(186);
methCall(); methCall();
} }
break; break;
@ -1383,23 +1393,23 @@ public class DecafParser extends Parser {
_localctx = new NewContext(_localctx); _localctx = new NewContext(_localctx);
enterOuterAlt(_localctx, 2); enterOuterAlt(_localctx, 2);
{ {
setState(185);
match(NEW);
setState(186);
type();
setState(187); setState(187);
match(T__4); match(NEW);
setState(188);
type();
setState(189); setState(189);
match(T__4);
setState(191);
_errHandler.sync(this); _errHandler.sync(this);
_la = _input.LA(1); _la = _input.LA(1);
if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 132216288968736L) != 0)) { if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 132216288968736L) != 0)) {
{ {
setState(188); setState(190);
args(); args();
} }
} }
setState(191); setState(193);
match(T__5); match(T__5);
} }
break; break;
@ -1593,18 +1603,18 @@ public class DecafParser extends Parser {
int _alt; int _alt;
enterOuterAlt(_localctx, 1); enterOuterAlt(_localctx, 1);
{ {
setState(207); setState(209);
_errHandler.sync(this); _errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,14,_ctx) ) { switch ( getInterpreter().adaptivePredict(_input,15,_ctx) ) {
case 1: case 1:
{ {
_localctx = new UnaryOperationContext(_localctx); _localctx = new UnaryOperationContext(_localctx);
_ctx = _localctx; _ctx = _localctx;
_prevctx = _localctx; _prevctx = _localctx;
setState(196); setState(198);
unaryOp(); unaryOp();
setState(197); setState(199);
expr(6); expr(6);
} }
break; break;
@ -1613,7 +1623,7 @@ public class DecafParser extends Parser {
_localctx = new ConstantContext(_localctx); _localctx = new ConstantContext(_localctx);
_ctx = _localctx; _ctx = _localctx;
_prevctx = _localctx; _prevctx = _localctx;
setState(199); setState(201);
literal(); literal();
} }
break; break;
@ -1622,11 +1632,11 @@ public class DecafParser extends Parser {
_localctx = new ExpressionContext(_localctx); _localctx = new ExpressionContext(_localctx);
_ctx = _localctx; _ctx = _localctx;
_prevctx = _localctx; _prevctx = _localctx;
setState(200);
match(T__4);
setState(201);
expr(0);
setState(202); setState(202);
match(T__4);
setState(203);
expr(0);
setState(204);
match(T__5); match(T__5);
} }
break; break;
@ -1635,7 +1645,7 @@ public class DecafParser extends Parser {
_localctx = new IdentifierContext(_localctx); _localctx = new IdentifierContext(_localctx);
_ctx = _localctx; _ctx = _localctx;
_prevctx = _localctx; _prevctx = _localctx;
setState(204); setState(206);
fieldVarAccess(); fieldVarAccess();
} }
break; break;
@ -1644,7 +1654,7 @@ public class DecafParser extends Parser {
_localctx = new StatementExpressionexprContext(_localctx); _localctx = new StatementExpressionexprContext(_localctx);
_ctx = _localctx; _ctx = _localctx;
_prevctx = _localctx; _prevctx = _localctx;
setState(205); setState(207);
stmtexpr(); stmtexpr();
} }
break; break;
@ -1653,15 +1663,15 @@ public class DecafParser extends Parser {
_localctx = new NullContext(_localctx); _localctx = new NullContext(_localctx);
_ctx = _localctx; _ctx = _localctx;
_prevctx = _localctx; _prevctx = _localctx;
setState(206); setState(208);
match(NULL); match(NULL);
} }
break; break;
} }
_ctx.stop = _input.LT(-1); _ctx.stop = _input.LT(-1);
setState(215); setState(217);
_errHandler.sync(this); _errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,15,_ctx); _alt = getInterpreter().adaptivePredict(_input,16,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) { if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent(); if ( _parseListeners!=null ) triggerExitRuleEvent();
@ -1670,18 +1680,18 @@ public class DecafParser extends Parser {
{ {
_localctx = new BinaryOperationContext(new ExprContext(_parentctx, _parentState)); _localctx = new BinaryOperationContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr); pushNewRecursionContext(_localctx, _startState, RULE_expr);
setState(209);
if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)");
setState(210);
binaryOp();
setState(211); setState(211);
if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)");
setState(212);
binaryOp();
setState(213);
expr(8); expr(8);
} }
} }
} }
setState(217); setState(219);
_errHandler.sync(this); _errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,15,_ctx); _alt = getInterpreter().adaptivePredict(_input,16,_ctx);
} }
} }
} }
@ -1735,7 +1745,7 @@ public class DecafParser extends Parser {
try { try {
enterOuterAlt(_localctx, 1); enterOuterAlt(_localctx, 1);
{ {
setState(218); setState(220);
_la = _input.LA(1); _la = _input.LA(1);
if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 17171480576L) != 0)) ) { if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 17171480576L) != 0)) ) {
_errHandler.recoverInline(this); _errHandler.recoverInline(this);
@ -1788,7 +1798,7 @@ public class DecafParser extends Parser {
try { try {
enterOuterAlt(_localctx, 1); enterOuterAlt(_localctx, 1);
{ {
setState(220); setState(222);
_la = _input.LA(1); _la = _input.LA(1);
if ( !(_la==SUB || _la==NOT) ) { if ( !(_la==SUB || _la==NOT) ) {
_errHandler.recoverInline(this); _errHandler.recoverInline(this);
@ -1850,37 +1860,37 @@ public class DecafParser extends Parser {
int _alt; int _alt;
enterOuterAlt(_localctx, 1); enterOuterAlt(_localctx, 1);
{ {
setState(224); setState(226);
_errHandler.sync(this); _errHandler.sync(this);
_la = _input.LA(1); _la = _input.LA(1);
if (_la==THIS) { if (_la==THIS) {
{ {
setState(222); setState(224);
match(THIS); match(THIS);
setState(223); setState(225);
match(T__17); match(T__17);
} }
} }
setState(231); setState(233);
_errHandler.sync(this); _errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,17,_ctx); _alt = getInterpreter().adaptivePredict(_input,18,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) { if ( _alt==1 ) {
{ {
{ {
setState(226); setState(228);
recipient(); recipient();
setState(227); setState(229);
match(T__17); match(T__17);
} }
} }
} }
setState(233); setState(235);
_errHandler.sync(this); _errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,17,_ctx); _alt = getInterpreter().adaptivePredict(_input,18,_ctx);
} }
setState(234); setState(236);
id(); id();
} }
} }
@ -1931,11 +1941,11 @@ public class DecafParser extends Parser {
try { try {
enterOuterAlt(_localctx, 1); enterOuterAlt(_localctx, 1);
{ {
setState(236);
fieldVarAccess();
setState(237);
assignSign();
setState(238); setState(238);
fieldVarAccess();
setState(239);
assignSign();
setState(240);
expr(0); expr(0);
} }
} }
@ -1989,37 +1999,37 @@ public class DecafParser extends Parser {
int _alt; int _alt;
enterOuterAlt(_localctx, 1); enterOuterAlt(_localctx, 1);
{ {
setState(242); setState(244);
_errHandler.sync(this); _errHandler.sync(this);
_la = _input.LA(1); _la = _input.LA(1);
if (_la==THIS) { if (_la==THIS) {
{ {
setState(240); setState(242);
match(THIS); match(THIS);
setState(241); setState(243);
match(T__17); match(T__17);
} }
} }
setState(249); setState(251);
_errHandler.sync(this); _errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,19,_ctx); _alt = getInterpreter().adaptivePredict(_input,20,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) { if ( _alt==1 ) {
{ {
{ {
setState(244); setState(246);
recipient(); recipient();
setState(245); setState(247);
match(T__17); match(T__17);
} }
} }
} }
setState(251); setState(253);
_errHandler.sync(this); _errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,19,_ctx); _alt = getInterpreter().adaptivePredict(_input,20,_ctx);
} }
setState(252); setState(254);
methName(); methName();
} }
} }
@ -2065,20 +2075,20 @@ public class DecafParser extends Parser {
RecipientContext _localctx = new RecipientContext(_ctx, getState()); RecipientContext _localctx = new RecipientContext(_ctx, getState());
enterRule(_localctx, 40, RULE_recipient); enterRule(_localctx, 40, RULE_recipient);
try { try {
setState(256); setState(258);
_errHandler.sync(this); _errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,20,_ctx) ) { switch ( getInterpreter().adaptivePredict(_input,21,_ctx) ) {
case 1: case 1:
enterOuterAlt(_localctx, 1); enterOuterAlt(_localctx, 1);
{ {
setState(254); setState(256);
methName(); methName();
} }
break; break;
case 2: case 2:
enterOuterAlt(_localctx, 2); enterOuterAlt(_localctx, 2);
{ {
setState(255); setState(257);
id(); id();
} }
break; break;
@ -2129,21 +2139,21 @@ public class DecafParser extends Parser {
try { try {
enterOuterAlt(_localctx, 1); enterOuterAlt(_localctx, 1);
{ {
setState(258); setState(260);
id(); id();
setState(259);
match(T__4);
setState(261); setState(261);
match(T__4);
setState(263);
_errHandler.sync(this); _errHandler.sync(this);
_la = _input.LA(1); _la = _input.LA(1);
if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 132216288968736L) != 0)) { if ((((_la) & ~0x3f) == 0 && ((1L << _la) & 132216288968736L) != 0)) {
{ {
setState(260); setState(262);
args(); args();
} }
} }
setState(263); setState(265);
match(T__5); match(T__5);
} }
} }
@ -2192,21 +2202,21 @@ public class DecafParser extends Parser {
try { try {
enterOuterAlt(_localctx, 1); enterOuterAlt(_localctx, 1);
{ {
setState(265); setState(267);
expr(0); expr(0);
setState(270); setState(272);
_errHandler.sync(this); _errHandler.sync(this);
_la = _input.LA(1); _la = _input.LA(1);
while (_la==T__9) { while (_la==T__9) {
{ {
{ {
setState(266); setState(268);
match(T__9); match(T__9);
setState(267); setState(269);
expr(0); expr(0);
} }
} }
setState(272); setState(274);
_errHandler.sync(this); _errHandler.sync(this);
_la = _input.LA(1); _la = _input.LA(1);
} }
@ -2254,7 +2264,7 @@ public class DecafParser extends Parser {
try { try {
enterOuterAlt(_localctx, 1); enterOuterAlt(_localctx, 1);
{ {
setState(273); setState(275);
_la = _input.LA(1); _la = _input.LA(1);
if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 96757023244288L) != 0)) ) { if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 96757023244288L) != 0)) ) {
_errHandler.recoverInline(this); _errHandler.recoverInline(this);
@ -2305,7 +2315,7 @@ public class DecafParser extends Parser {
try { try {
enterOuterAlt(_localctx, 1); enterOuterAlt(_localctx, 1);
{ {
setState(275); setState(277);
match(IDENTIFIER); match(IDENTIFIER);
} }
} }
@ -2336,7 +2346,7 @@ public class DecafParser extends Parser {
} }
public static final String _serializedATN = public static final String _serializedATN =
"\u0004\u00011\u0116\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001\u0002"+ "\u0004\u00011\u0118\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001\u0002"+
"\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002\u0004\u0007\u0004\u0002"+ "\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002\u0004\u0007\u0004\u0002"+
"\u0005\u0007\u0005\u0002\u0006\u0007\u0006\u0002\u0007\u0007\u0007\u0002"+ "\u0005\u0007\u0005\u0002\u0006\u0007\u0006\u0002\u0007\u0007\u0007\u0002"+
"\b\u0007\b\u0002\t\u0007\t\u0002\n\u0007\n\u0002\u000b\u0007\u000b\u0002"+ "\b\u0007\b\u0002\t\u0007\t\u0002\n\u0007\n\u0002\u000b\u0007\u000b\u0002"+
@ -2360,155 +2370,157 @@ public class DecafParser extends Parser {
"\u0001\f\u0001\f\u0001\f\u0001\f\u0003\f\u0090\b\f\u0001\f\u0001\f\u0001"+ "\u0001\f\u0001\f\u0001\f\u0001\f\u0003\f\u0090\b\f\u0001\f\u0001\f\u0001"+
"\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001"+ "\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001"+
"\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001"+ "\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001"+
"\f\u0001\f\u0001\f\u0003\f\u00a9\b\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001"+
"\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001"+ "\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001"+
"\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0003\f\u00b7"+ "\f\u0003\f\u00b9\b\f\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0003\r\u00c0"+
"\b\f\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0003\r\u00be\b\r\u0001\r"+ "\b\r\u0001\r\u0001\r\u0003\r\u00c4\b\r\u0001\u000e\u0001\u000e\u0001\u000e"+
"\u0001\r\u0003\r\u00c2\b\r\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e"+
"\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e"+ "\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e"+
"\u0001\u000e\u0001\u000e\u0003\u000e\u00d0\b\u000e\u0001\u000e\u0001\u000e"+ "\u0001\u000e\u0001\u000e\u0001\u000e\u0003\u000e\u00d2\b\u000e\u0001\u000e"+
"\u0001\u000e\u0001\u000e\u0005\u000e\u00d6\b\u000e\n\u000e\f\u000e\u00d9"+ "\u0001\u000e\u0001\u000e\u0001\u000e\u0005\u000e\u00d8\b\u000e\n\u000e"+
"\t\u000e\u0001\u000f\u0001\u000f\u0001\u0010\u0001\u0010\u0001\u0011\u0001"+ "\f\u000e\u00db\t\u000e\u0001\u000f\u0001\u000f\u0001\u0010\u0001\u0010"+
"\u0011\u0003\u0011\u00e1\b\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0005"+ "\u0001\u0011\u0001\u0011\u0003\u0011\u00e3\b\u0011\u0001\u0011\u0001\u0011"+
"\u0011\u00e6\b\u0011\n\u0011\f\u0011\u00e9\t\u0011\u0001\u0011\u0001\u0011"+ "\u0001\u0011\u0005\u0011\u00e8\b\u0011\n\u0011\f\u0011\u00eb\t\u0011\u0001"+
"\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0013\u0001\u0013"+ "\u0011\u0001\u0011\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001"+
"\u0003\u0013\u00f3\b\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0005\u0013"+ "\u0013\u0001\u0013\u0003\u0013\u00f5\b\u0013\u0001\u0013\u0001\u0013\u0001"+
"\u00f8\b\u0013\n\u0013\f\u0013\u00fb\t\u0013\u0001\u0013\u0001\u0013\u0001"+ "\u0013\u0005\u0013\u00fa\b\u0013\n\u0013\f\u0013\u00fd\t\u0013\u0001\u0013"+
"\u0014\u0001\u0014\u0003\u0014\u0101\b\u0014\u0001\u0015\u0001\u0015\u0001"+ "\u0001\u0013\u0001\u0014\u0001\u0014\u0003\u0014\u0103\b\u0014\u0001\u0015"+
"\u0015\u0003\u0015\u0106\b\u0015\u0001\u0015\u0001\u0015\u0001\u0016\u0001"+ "\u0001\u0015\u0001\u0015\u0003\u0015\u0108\b\u0015\u0001\u0015\u0001\u0015"+
"\u0016\u0001\u0016\u0005\u0016\u010d\b\u0016\n\u0016\f\u0016\u0110\t\u0016"+ "\u0001\u0016\u0001\u0016\u0001\u0016\u0005\u0016\u010f\b\u0016\n\u0016"+
"\u0001\u0017\u0001\u0017\u0001\u0018\u0001\u0018\u0001\u0018\u0000\u0001"+ "\f\u0016\u0112\t\u0016\u0001\u0017\u0001\u0017\u0001\u0018\u0001\u0018"+
"\u001c\u0019\u0000\u0002\u0004\u0006\b\n\f\u000e\u0010\u0012\u0014\u0016"+ "\u0001\u0018\u0000\u0001\u001c\u0019\u0000\u0002\u0004\u0006\b\n\f\u000e"+
"\u0018\u001a\u001c\u001e \"$&(*,.0\u0000\u0004\u0001\u0000\"%\u0001\u0000"+ "\u0010\u0012\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*,.0\u0000\u0004"+
"\u0017!\u0002\u0000\u0017\u0017&&\u0002\u0000+,..\u0121\u00002\u0001\u0000"+ "\u0001\u0000\"%\u0001\u0000\u0017!\u0002\u0000\u0017\u0017&&\u0002\u0000"+
"\u0000\u0000\u0002C\u0001\u0000\u0000\u0000\u0004G\u0001\u0000\u0000\u0000"+ "+,..\u0124\u00002\u0001\u0000\u0000\u0000\u0002C\u0001\u0000\u0000\u0000"+
"\u0006K\u0001\u0000\u0000\u0000\bO\u0001\u0000\u0000\u0000\nU\u0001\u0000"+ "\u0004G\u0001\u0000\u0000\u0000\u0006K\u0001\u0000\u0000\u0000\bO\u0001"+
"\u0000\u0000\fW\u0001\u0000\u0000\u0000\u000ea\u0001\u0000\u0000\u0000"+ "\u0000\u0000\u0000\nU\u0001\u0000\u0000\u0000\fW\u0001\u0000\u0000\u0000"+
"\u0010j\u0001\u0000\u0000\u0000\u0012s\u0001\u0000\u0000\u0000\u0014{"+ "\u000ea\u0001\u0000\u0000\u0000\u0010j\u0001\u0000\u0000\u0000\u0012s"+
"\u0001\u0000\u0000\u0000\u0016~\u0001\u0000\u0000\u0000\u0018\u00b6\u0001"+ "\u0001\u0000\u0000\u0000\u0014{\u0001\u0000\u0000\u0000\u0016~\u0001\u0000"+
"\u0000\u0000\u0000\u001a\u00c1\u0001\u0000\u0000\u0000\u001c\u00cf\u0001"+ "\u0000\u0000\u0018\u00b8\u0001\u0000\u0000\u0000\u001a\u00c3\u0001\u0000"+
"\u0000\u0000\u0000\u001e\u00da\u0001\u0000\u0000\u0000 \u00dc\u0001\u0000"+ "\u0000\u0000\u001c\u00d1\u0001\u0000\u0000\u0000\u001e\u00dc\u0001\u0000"+
"\u0000\u0000\"\u00e0\u0001\u0000\u0000\u0000$\u00ec\u0001\u0000\u0000"+ "\u0000\u0000 \u00de\u0001\u0000\u0000\u0000\"\u00e2\u0001\u0000\u0000"+
"\u0000&\u00f2\u0001\u0000\u0000\u0000(\u0100\u0001\u0000\u0000\u0000*"+ "\u0000$\u00ee\u0001\u0000\u0000\u0000&\u00f4\u0001\u0000\u0000\u0000("+
"\u0102\u0001\u0000\u0000\u0000,\u0109\u0001\u0000\u0000\u0000.\u0111\u0001"+ "\u0102\u0001\u0000\u0000\u0000*\u0104\u0001\u0000\u0000\u0000,\u010b\u0001"+
"\u0000\u0000\u00000\u0113\u0001\u0000\u0000\u000023\u0005\u0013\u0000"+ "\u0000\u0000\u0000.\u0113\u0001\u0000\u0000\u00000\u0115\u0001\u0000\u0000"+
"\u000034\u0005\u0001\u0000\u000045\u00030\u0018\u000057\u0005\u0002\u0000"+ "\u000023\u0005\u0013\u0000\u000034\u0005\u0001\u0000\u000045\u00030\u0018"+
"\u000068\u0003\u000e\u0007\u000076\u0001\u0000\u0000\u000078\u0001\u0000"+ "\u000057\u0005\u0002\u0000\u000068\u0003\u000e\u0007\u000076\u0001\u0000"+
"\u0000\u00008>\u0001\u0000\u0000\u00009=\u0003\u0002\u0001\u0000:=\u0003"+ "\u0000\u000078\u0001\u0000\u0000\u00008>\u0001\u0000\u0000\u00009=\u0003"+
"\f\u0006\u0000;=\u0003\u0010\b\u0000<9\u0001\u0000\u0000\u0000<:\u0001"+ "\u0002\u0001\u0000:=\u0003\f\u0006\u0000;=\u0003\u0010\b\u0000<9\u0001"+
"\u0000\u0000\u0000<;\u0001\u0000\u0000\u0000=@\u0001\u0000\u0000\u0000"+ "\u0000\u0000\u0000<:\u0001\u0000\u0000\u0000<;\u0001\u0000\u0000\u0000"+
"><\u0001\u0000\u0000\u0000>?\u0001\u0000\u0000\u0000?A\u0001\u0000\u0000"+ "=@\u0001\u0000\u0000\u0000><\u0001\u0000\u0000\u0000>?\u0001\u0000\u0000"+
"\u0000@>\u0001\u0000\u0000\u0000AB\u0005\u0003\u0000\u0000B\u0001\u0001"+ "\u0000?A\u0001\u0000\u0000\u0000@>\u0001\u0000\u0000\u0000AB\u0005\u0003"+
"\u0000\u0000\u0000CD\u0003\n\u0005\u0000DE\u00030\u0018\u0000EF\u0005"+ "\u0000\u0000B\u0001\u0001\u0000\u0000\u0000CD\u0003\n\u0005\u0000DE\u0003"+
"\u0004\u0000\u0000F\u0003\u0001\u0000\u0000\u0000GH\u0003\n\u0005\u0000"+ "0\u0018\u0000EF\u0005\u0004\u0000\u0000F\u0003\u0001\u0000\u0000\u0000"+
"HI\u00030\u0018\u0000IJ\u0005\u0004\u0000\u0000J\u0005\u0001\u0000\u0000"+ "GH\u0003\n\u0005\u0000HI\u00030\u0018\u0000IJ\u0005\u0004\u0000\u0000"+
"\u0000KL\u0007\u0000\u0000\u0000L\u0007\u0001\u0000\u0000\u0000MP\u0003"+ "J\u0005\u0001\u0000\u0000\u0000KL\u0007\u0000\u0000\u0000L\u0007\u0001"+
"\n\u0005\u0000NP\u0005)\u0000\u0000OM\u0001\u0000\u0000\u0000ON\u0001"+ "\u0000\u0000\u0000MP\u0003\n\u0005\u0000NP\u0005)\u0000\u0000OM\u0001"+
"\u0000\u0000\u0000P\t\u0001\u0000\u0000\u0000QV\u0005\'\u0000\u0000RV"+ "\u0000\u0000\u0000ON\u0001\u0000\u0000\u0000P\t\u0001\u0000\u0000\u0000"+
"\u0005(\u0000\u0000SV\u0005*\u0000\u0000TV\u00030\u0018\u0000UQ\u0001"+ "QV\u0005\'\u0000\u0000RV\u0005(\u0000\u0000SV\u0005*\u0000\u0000TV\u0003"+
"\u0000\u0000\u0000UR\u0001\u0000\u0000\u0000US\u0001\u0000\u0000\u0000"+ "0\u0018\u0000UQ\u0001\u0000\u0000\u0000UR\u0001\u0000\u0000\u0000US\u0001"+
"UT\u0001\u0000\u0000\u0000V\u000b\u0001\u0000\u0000\u0000WX\u0005\u0013"+ "\u0000\u0000\u0000UT\u0001\u0000\u0000\u0000V\u000b\u0001\u0000\u0000"+
"\u0000\u0000XY\u0003\b\u0004\u0000YZ\u00030\u0018\u0000Z\\\u0005\u0005"+ "\u0000WX\u0005\u0013\u0000\u0000XY\u0003\b\u0004\u0000YZ\u00030\u0018"+
"\u0000\u0000[]\u0003\u0012\t\u0000\\[\u0001\u0000\u0000\u0000\\]\u0001"+ "\u0000Z\\\u0005\u0005\u0000\u0000[]\u0003\u0012\t\u0000\\[\u0001\u0000"+
"\u0000\u0000\u0000]^\u0001\u0000\u0000\u0000^_\u0005\u0006\u0000\u0000"+ "\u0000\u0000\\]\u0001\u0000\u0000\u0000]^\u0001\u0000\u0000\u0000^_\u0005"+
"_`\u0003\u0016\u000b\u0000`\r\u0001\u0000\u0000\u0000ab\u0005\u0013\u0000"+ "\u0006\u0000\u0000_`\u0003\u0016\u000b\u0000`\r\u0001\u0000\u0000\u0000"+
"\u0000bc\u0005\u0007\u0000\u0000cd\u0005)\u0000\u0000de\u0005\b\u0000"+ "ab\u0005\u0013\u0000\u0000bc\u0005\u0007\u0000\u0000cd\u0005)\u0000\u0000"+
"\u0000ef\u0005\u0005\u0000\u0000fg\u0005\t\u0000\u0000gh\u0005\u0006\u0000"+ "de\u0005\b\u0000\u0000ef\u0005\u0005\u0000\u0000fg\u0005\t\u0000\u0000"+
"\u0000hi\u0003\u0016\u000b\u0000i\u000f\u0001\u0000\u0000\u0000jk\u0005"+ "gh\u0005\u0006\u0000\u0000hi\u0003\u0016\u000b\u0000i\u000f\u0001\u0000"+
"\u0013\u0000\u0000kl\u00030\u0018\u0000ln\u0005\u0005\u0000\u0000mo\u0003"+ "\u0000\u0000jk\u0005\u0013\u0000\u0000kl\u00030\u0018\u0000ln\u0005\u0005"+
"\u0012\t\u0000nm\u0001\u0000\u0000\u0000no\u0001\u0000\u0000\u0000op\u0001"+ "\u0000\u0000mo\u0003\u0012\t\u0000nm\u0001\u0000\u0000\u0000no\u0001\u0000"+
"\u0000\u0000\u0000pq\u0005\u0006\u0000\u0000qr\u0003\u0016\u000b\u0000"+ "\u0000\u0000op\u0001\u0000\u0000\u0000pq\u0005\u0006\u0000\u0000qr\u0003"+
"r\u0011\u0001\u0000\u0000\u0000sx\u0003\u0014\n\u0000tu\u0005\n\u0000"+ "\u0016\u000b\u0000r\u0011\u0001\u0000\u0000\u0000sx\u0003\u0014\n\u0000"+
"\u0000uw\u0003\u0014\n\u0000vt\u0001\u0000\u0000\u0000wz\u0001\u0000\u0000"+ "tu\u0005\n\u0000\u0000uw\u0003\u0014\n\u0000vt\u0001\u0000\u0000\u0000"+
"\u0000xv\u0001\u0000\u0000\u0000xy\u0001\u0000\u0000\u0000y\u0013\u0001"+ "wz\u0001\u0000\u0000\u0000xv\u0001\u0000\u0000\u0000xy\u0001\u0000\u0000"+
"\u0000\u0000\u0000zx\u0001\u0000\u0000\u0000{|\u0003\n\u0005\u0000|}\u0003"+ "\u0000y\u0013\u0001\u0000\u0000\u0000zx\u0001\u0000\u0000\u0000{|\u0003"+
"0\u0018\u0000}\u0015\u0001\u0000\u0000\u0000~\u0083\u0005\u0002\u0000"+ "\n\u0005\u0000|}\u00030\u0018\u0000}\u0015\u0001\u0000\u0000\u0000~\u0083"+
"\u0000\u007f\u0082\u0003\u0004\u0002\u0000\u0080\u0082\u0003\u0018\f\u0000"+ "\u0005\u0002\u0000\u0000\u007f\u0082\u0003\u0004\u0002\u0000\u0080\u0082"+
"\u0081\u007f\u0001\u0000\u0000\u0000\u0081\u0080\u0001\u0000\u0000\u0000"+ "\u0003\u0018\f\u0000\u0081\u007f\u0001\u0000\u0000\u0000\u0081\u0080\u0001"+
"\u0082\u0085\u0001\u0000\u0000\u0000\u0083\u0081\u0001\u0000\u0000\u0000"+ "\u0000\u0000\u0000\u0082\u0085\u0001\u0000\u0000\u0000\u0083\u0081\u0001"+
"\u0083\u0084\u0001\u0000\u0000\u0000\u0084\u0086\u0001\u0000\u0000\u0000"+ "\u0000\u0000\u0000\u0083\u0084\u0001\u0000\u0000\u0000\u0084\u0086\u0001"+
"\u0085\u0083\u0001\u0000\u0000\u0000\u0086\u0087\u0005\u0003\u0000\u0000"+ "\u0000\u0000\u0000\u0085\u0083\u0001\u0000\u0000\u0000\u0086\u0087\u0005"+
"\u0087\u0017\u0001\u0000\u0000\u0000\u0088\u0089\u0005\u000b\u0000\u0000"+ "\u0003\u0000\u0000\u0087\u0017\u0001\u0000\u0000\u0000\u0088\u0089\u0005"+
"\u0089\u008a\u0005\u0005\u0000\u0000\u008a\u008b\u0003\u001c\u000e\u0000"+ "\u000b\u0000\u0000\u0089\u008a\u0005\u0005\u0000\u0000\u008a\u008b\u0003"+
"\u008b\u008c\u0005\u0006\u0000\u0000\u008c\u008f\u0003\u0016\u000b\u0000"+ "\u001c\u000e\u0000\u008b\u008c\u0005\u0006\u0000\u0000\u008c\u008f\u0003"+
"\u008d\u008e\u0005\f\u0000\u0000\u008e\u0090\u0003\u0016\u000b\u0000\u008f"+ "\u0016\u000b\u0000\u008d\u008e\u0005\f\u0000\u0000\u008e\u0090\u0003\u0016"+
"\u008d\u0001\u0000\u0000\u0000\u008f\u0090\u0001\u0000\u0000\u0000\u0090"+ "\u000b\u0000\u008f\u008d\u0001\u0000\u0000\u0000\u008f\u0090\u0001\u0000"+
"\u00b7\u0001\u0000\u0000\u0000\u0091\u0092\u0005\r\u0000\u0000\u0092\u0093"+ "\u0000\u0000\u0090\u00b9\u0001\u0000\u0000\u0000\u0091\u0092\u0005\r\u0000"+
"\u0005\u0005\u0000\u0000\u0093\u0094\u0003$\u0012\u0000\u0094\u0095\u0005"+ "\u0000\u0092\u0093\u0005\u0005\u0000\u0000\u0093\u0094\u0003$\u0012\u0000"+
"\u0004\u0000\u0000\u0095\u0096\u0003\u001c\u000e\u0000\u0096\u0097\u0005"+ "\u0094\u0095\u0005\u0004\u0000\u0000\u0095\u0096\u0003\u001c\u000e\u0000"+
"\u0004\u0000\u0000\u0097\u0098\u0003$\u0012\u0000\u0098\u0099\u0005\u0006"+ "\u0096\u0097\u0005\u0004\u0000\u0000\u0097\u0098\u0003$\u0012\u0000\u0098"+
"\u0000\u0000\u0099\u009a\u0003\u0016\u000b\u0000\u009a\u00b7\u0001\u0000"+ "\u0099\u0005\u0006\u0000\u0000\u0099\u009a\u0003\u0016\u000b\u0000\u009a"+
"\u0000\u0000\u009b\u009c\u0005\u000e\u0000\u0000\u009c\u009d\u0005\u0005"+ "\u00b9\u0001\u0000\u0000\u0000\u009b\u009c\u0005\u000e\u0000\u0000\u009c"+
"\u0000\u0000\u009d\u009e\u0003\u001c\u000e\u0000\u009e\u009f\u0005\u0006"+ "\u009d\u0005\u0005\u0000\u0000\u009d\u009e\u0003\u001c\u000e\u0000\u009e"+
"\u0000\u0000\u009f\u00a0\u0003\u0016\u000b\u0000\u00a0\u00b7\u0001\u0000"+ "\u009f\u0005\u0006\u0000\u0000\u009f\u00a0\u0003\u0016\u000b\u0000\u00a0"+
"\u0000\u0000\u00a1\u00a2\u0005\u000f\u0000\u0000\u00a2\u00a3\u0003\u0016"+ "\u00b9\u0001\u0000\u0000\u0000\u00a1\u00a2\u0005\u000f\u0000\u0000\u00a2"+
"\u000b\u0000\u00a3\u00a4\u0005\u000e\u0000\u0000\u00a4\u00a5\u0005\u0005"+ "\u00a3\u0003\u0016\u000b\u0000\u00a3\u00a4\u0005\u000e\u0000\u0000\u00a4"+
"\u0000\u0000\u00a5\u00a6\u0003\u001c\u000e\u0000\u00a6\u00a7\u0005\u0006"+ "\u00a5\u0005\u0005\u0000\u0000\u00a5\u00a6\u0003\u001c\u000e\u0000\u00a6"+
"\u0000\u0000\u00a7\u00b7\u0001\u0000\u0000\u0000\u00a8\u00a9\u0005\u0010"+ "\u00a8\u0005\u0006\u0000\u0000\u00a7\u00a9\u0005\u0004\u0000\u0000\u00a8"+
"\u0000\u0000\u00a9\u00aa\u0003\u001c\u000e\u0000\u00aa\u00ab\u0005\u0004"+ "\u00a7\u0001\u0000\u0000\u0000\u00a8\u00a9\u0001\u0000\u0000\u0000\u00a9"+
"\u0000\u0000\u00ab\u00b7\u0001\u0000\u0000\u0000\u00ac\u00ad\u0005\u0010"+ "\u00b9\u0001\u0000\u0000\u0000\u00aa\u00ab\u0005\u0010\u0000\u0000\u00ab"+
"\u0000\u0000\u00ad\u00b7\u0005\u0004\u0000\u0000\u00ae\u00af\u0005\u0011"+ "\u00ac\u0003\u001c\u000e\u0000\u00ac\u00ad\u0005\u0004\u0000\u0000\u00ad"+
"\u0000\u0000\u00af\u00b7\u0005\u0004\u0000\u0000\u00b0\u00b1\u0003$\u0012"+ "\u00b9\u0001\u0000\u0000\u0000\u00ae\u00af\u0005\u0010\u0000\u0000\u00af"+
"\u0000\u00b1\u00b2\u0005\u0004\u0000\u0000\u00b2\u00b7\u0001\u0000\u0000"+ "\u00b9\u0005\u0004\u0000\u0000\u00b0\u00b1\u0005\u0011\u0000\u0000\u00b1"+
"\u0000\u00b3\u00b4\u0003\u001a\r\u0000\u00b4\u00b5\u0005\u0004\u0000\u0000"+ "\u00b9\u0005\u0004\u0000\u0000\u00b2\u00b3\u0003$\u0012\u0000\u00b3\u00b4"+
"\u00b5\u00b7\u0001\u0000\u0000\u0000\u00b6\u0088\u0001\u0000\u0000\u0000"+ "\u0005\u0004\u0000\u0000\u00b4\u00b9\u0001\u0000\u0000\u0000\u00b5\u00b6"+
"\u00b6\u0091\u0001\u0000\u0000\u0000\u00b6\u009b\u0001\u0000\u0000\u0000"+ "\u0003\u001a\r\u0000\u00b6\u00b7\u0005\u0004\u0000\u0000\u00b7\u00b9\u0001"+
"\u00b6\u00a1\u0001\u0000\u0000\u0000\u00b6\u00a8\u0001\u0000\u0000\u0000"+ "\u0000\u0000\u0000\u00b8\u0088\u0001\u0000\u0000\u0000\u00b8\u0091\u0001"+
"\u00b6\u00ac\u0001\u0000\u0000\u0000\u00b6\u00ae\u0001\u0000\u0000\u0000"+ "\u0000\u0000\u0000\u00b8\u009b\u0001\u0000\u0000\u0000\u00b8\u00a1\u0001"+
"\u00b6\u00b0\u0001\u0000\u0000\u0000\u00b6\u00b3\u0001\u0000\u0000\u0000"+ "\u0000\u0000\u0000\u00b8\u00aa\u0001\u0000\u0000\u0000\u00b8\u00ae\u0001"+
"\u00b7\u0019\u0001\u0000\u0000\u0000\u00b8\u00c2\u0003&\u0013\u0000\u00b9"+ "\u0000\u0000\u0000\u00b8\u00b0\u0001\u0000\u0000\u0000\u00b8\u00b2\u0001"+
"\u00ba\u0005\u0014\u0000\u0000\u00ba\u00bb\u0003\n\u0005\u0000\u00bb\u00bd"+ "\u0000\u0000\u0000\u00b8\u00b5\u0001\u0000\u0000\u0000\u00b9\u0019\u0001"+
"\u0005\u0005\u0000\u0000\u00bc\u00be\u0003,\u0016\u0000\u00bd\u00bc\u0001"+ "\u0000\u0000\u0000\u00ba\u00c4\u0003&\u0013\u0000\u00bb\u00bc\u0005\u0014"+
"\u0000\u0000\u0000\u00bd\u00be\u0001\u0000\u0000\u0000\u00be\u00bf\u0001"+ "\u0000\u0000\u00bc\u00bd\u0003\n\u0005\u0000\u00bd\u00bf\u0005\u0005\u0000"+
"\u0000\u0000\u0000\u00bf\u00c0\u0005\u0006\u0000\u0000\u00c0\u00c2\u0001"+ "\u0000\u00be\u00c0\u0003,\u0016\u0000\u00bf\u00be\u0001\u0000\u0000\u0000"+
"\u0000\u0000\u0000\u00c1\u00b8\u0001\u0000\u0000\u0000\u00c1\u00b9\u0001"+ "\u00bf\u00c0\u0001\u0000\u0000\u0000\u00c0\u00c1\u0001\u0000\u0000\u0000"+
"\u0000\u0000\u0000\u00c2\u001b\u0001\u0000\u0000\u0000\u00c3\u00c4\u0006"+ "\u00c1\u00c2\u0005\u0006\u0000\u0000\u00c2\u00c4\u0001\u0000\u0000\u0000"+
"\u000e\uffff\uffff\u0000\u00c4\u00c5\u0003 \u0010\u0000\u00c5\u00c6\u0003"+ "\u00c3\u00ba\u0001\u0000\u0000\u0000\u00c3\u00bb\u0001\u0000\u0000\u0000"+
"\u001c\u000e\u0006\u00c6\u00d0\u0001\u0000\u0000\u0000\u00c7\u00d0\u0003"+ "\u00c4\u001b\u0001\u0000\u0000\u0000\u00c5\u00c6\u0006\u000e\uffff\uffff"+
".\u0017\u0000\u00c8\u00c9\u0005\u0005\u0000\u0000\u00c9\u00ca\u0003\u001c"+ "\u0000\u00c6\u00c7\u0003 \u0010\u0000\u00c7\u00c8\u0003\u001c\u000e\u0006"+
"\u000e\u0000\u00ca\u00cb\u0005\u0006\u0000\u0000\u00cb\u00d0\u0001\u0000"+ "\u00c8\u00d2\u0001\u0000\u0000\u0000\u00c9\u00d2\u0003.\u0017\u0000\u00ca"+
"\u0000\u0000\u00cc\u00d0\u0003\"\u0011\u0000\u00cd\u00d0\u0003\u001a\r"+ "\u00cb\u0005\u0005\u0000\u0000\u00cb\u00cc\u0003\u001c\u000e\u0000\u00cc"+
"\u0000\u00ce\u00d0\u0005\u0015\u0000\u0000\u00cf\u00c3\u0001\u0000\u0000"+ "\u00cd\u0005\u0006\u0000\u0000\u00cd\u00d2\u0001\u0000\u0000\u0000\u00ce"+
"\u0000\u00cf\u00c7\u0001\u0000\u0000\u0000\u00cf\u00c8\u0001\u0000\u0000"+ "\u00d2\u0003\"\u0011\u0000\u00cf\u00d2\u0003\u001a\r\u0000\u00d0\u00d2"+
"\u0000\u00cf\u00cc\u0001\u0000\u0000\u0000\u00cf\u00cd\u0001\u0000\u0000"+ "\u0005\u0015\u0000\u0000\u00d1\u00c5\u0001\u0000\u0000\u0000\u00d1\u00c9"+
"\u0000\u00cf\u00ce\u0001\u0000\u0000\u0000\u00d0\u00d7\u0001\u0000\u0000"+ "\u0001\u0000\u0000\u0000\u00d1\u00ca\u0001\u0000\u0000\u0000\u00d1\u00ce"+
"\u0000\u00d1\u00d2\n\u0007\u0000\u0000\u00d2\u00d3\u0003\u001e\u000f\u0000"+ "\u0001\u0000\u0000\u0000\u00d1\u00cf\u0001\u0000\u0000\u0000\u00d1\u00d0"+
"\u00d3\u00d4\u0003\u001c\u000e\b\u00d4\u00d6\u0001\u0000\u0000\u0000\u00d5"+ "\u0001\u0000\u0000\u0000\u00d2\u00d9\u0001\u0000\u0000\u0000\u00d3\u00d4"+
"\u00d1\u0001\u0000\u0000\u0000\u00d6\u00d9\u0001\u0000\u0000\u0000\u00d7"+ "\n\u0007\u0000\u0000\u00d4\u00d5\u0003\u001e\u000f\u0000\u00d5\u00d6\u0003"+
"\u00d5\u0001\u0000\u0000\u0000\u00d7\u00d8\u0001\u0000\u0000\u0000\u00d8"+ "\u001c\u000e\b\u00d6\u00d8\u0001\u0000\u0000\u0000\u00d7\u00d3\u0001\u0000"+
"\u001d\u0001\u0000\u0000\u0000\u00d9\u00d7\u0001\u0000\u0000\u0000\u00da"+ "\u0000\u0000\u00d8\u00db\u0001\u0000\u0000\u0000\u00d9\u00d7\u0001\u0000"+
"\u00db\u0007\u0001\u0000\u0000\u00db\u001f\u0001\u0000\u0000\u0000\u00dc"+ "\u0000\u0000\u00d9\u00da\u0001\u0000\u0000\u0000\u00da\u001d\u0001\u0000"+
"\u00dd\u0007\u0002\u0000\u0000\u00dd!\u0001\u0000\u0000\u0000\u00de\u00df"+ "\u0000\u0000\u00db\u00d9\u0001\u0000\u0000\u0000\u00dc\u00dd\u0007\u0001"+
"\u0005\u0016\u0000\u0000\u00df\u00e1\u0005\u0012\u0000\u0000\u00e0\u00de"+ "\u0000\u0000\u00dd\u001f\u0001\u0000\u0000\u0000\u00de\u00df\u0007\u0002"+
"\u0001\u0000\u0000\u0000\u00e0\u00e1\u0001\u0000\u0000\u0000\u00e1\u00e7"+ "\u0000\u0000\u00df!\u0001\u0000\u0000\u0000\u00e0\u00e1\u0005\u0016\u0000"+
"\u0001\u0000\u0000\u0000\u00e2\u00e3\u0003(\u0014\u0000\u00e3\u00e4\u0005"+ "\u0000\u00e1\u00e3\u0005\u0012\u0000\u0000\u00e2\u00e0\u0001\u0000\u0000"+
"\u0012\u0000\u0000\u00e4\u00e6\u0001\u0000\u0000\u0000\u00e5\u00e2\u0001"+ "\u0000\u00e2\u00e3\u0001\u0000\u0000\u0000\u00e3\u00e9\u0001\u0000\u0000"+
"\u0000\u0000\u0000\u00e6\u00e9\u0001\u0000\u0000\u0000\u00e7\u00e5\u0001"+ "\u0000\u00e4\u00e5\u0003(\u0014\u0000\u00e5\u00e6\u0005\u0012\u0000\u0000"+
"\u0000\u0000\u0000\u00e7\u00e8\u0001\u0000\u0000\u0000\u00e8\u00ea\u0001"+ "\u00e6\u00e8\u0001\u0000\u0000\u0000\u00e7\u00e4\u0001\u0000\u0000\u0000"+
"\u0000\u0000\u0000\u00e9\u00e7\u0001\u0000\u0000\u0000\u00ea\u00eb\u0003"+ "\u00e8\u00eb\u0001\u0000\u0000\u0000\u00e9\u00e7\u0001\u0000\u0000\u0000"+
"0\u0018\u0000\u00eb#\u0001\u0000\u0000\u0000\u00ec\u00ed\u0003\"\u0011"+ "\u00e9\u00ea\u0001\u0000\u0000\u0000\u00ea\u00ec\u0001\u0000\u0000\u0000"+
"\u0000\u00ed\u00ee\u0003\u0006\u0003\u0000\u00ee\u00ef\u0003\u001c\u000e"+ "\u00eb\u00e9\u0001\u0000\u0000\u0000\u00ec\u00ed\u00030\u0018\u0000\u00ed"+
"\u0000\u00ef%\u0001\u0000\u0000\u0000\u00f0\u00f1\u0005\u0016\u0000\u0000"+ "#\u0001\u0000\u0000\u0000\u00ee\u00ef\u0003\"\u0011\u0000\u00ef\u00f0"+
"\u00f1\u00f3\u0005\u0012\u0000\u0000\u00f2\u00f0\u0001\u0000\u0000\u0000"+ "\u0003\u0006\u0003\u0000\u00f0\u00f1\u0003\u001c\u000e\u0000\u00f1%\u0001"+
"\u00f2\u00f3\u0001\u0000\u0000\u0000\u00f3\u00f9\u0001\u0000\u0000\u0000"+ "\u0000\u0000\u0000\u00f2\u00f3\u0005\u0016\u0000\u0000\u00f3\u00f5\u0005"+
"\u00f4\u00f5\u0003(\u0014\u0000\u00f5\u00f6\u0005\u0012\u0000\u0000\u00f6"+ "\u0012\u0000\u0000\u00f4\u00f2\u0001\u0000\u0000\u0000\u00f4\u00f5\u0001"+
"\u00f8\u0001\u0000\u0000\u0000\u00f7\u00f4\u0001\u0000\u0000\u0000\u00f8"+ "\u0000\u0000\u0000\u00f5\u00fb\u0001\u0000\u0000\u0000\u00f6\u00f7\u0003"+
"\u00fb\u0001\u0000\u0000\u0000\u00f9\u00f7\u0001\u0000\u0000\u0000\u00f9"+ "(\u0014\u0000\u00f7\u00f8\u0005\u0012\u0000\u0000\u00f8\u00fa\u0001\u0000"+
"\u00fa\u0001\u0000\u0000\u0000\u00fa\u00fc\u0001\u0000\u0000\u0000\u00fb"+ "\u0000\u0000\u00f9\u00f6\u0001\u0000\u0000\u0000\u00fa\u00fd\u0001\u0000"+
"\u00f9\u0001\u0000\u0000\u0000\u00fc\u00fd\u0003*\u0015\u0000\u00fd\'"+ "\u0000\u0000\u00fb\u00f9\u0001\u0000\u0000\u0000\u00fb\u00fc\u0001\u0000"+
"\u0001\u0000\u0000\u0000\u00fe\u0101\u0003*\u0015\u0000\u00ff\u0101\u0003"+ "\u0000\u0000\u00fc\u00fe\u0001\u0000\u0000\u0000\u00fd\u00fb\u0001\u0000"+
"0\u0018\u0000\u0100\u00fe\u0001\u0000\u0000\u0000\u0100\u00ff\u0001\u0000"+ "\u0000\u0000\u00fe\u00ff\u0003*\u0015\u0000\u00ff\'\u0001\u0000\u0000"+
"\u0000\u0000\u0101)\u0001\u0000\u0000\u0000\u0102\u0103\u00030\u0018\u0000"+ "\u0000\u0100\u0103\u0003*\u0015\u0000\u0101\u0103\u00030\u0018\u0000\u0102"+
"\u0103\u0105\u0005\u0005\u0000\u0000\u0104\u0106\u0003,\u0016\u0000\u0105"+ "\u0100\u0001\u0000\u0000\u0000\u0102\u0101\u0001\u0000\u0000\u0000\u0103"+
"\u0104\u0001\u0000\u0000\u0000\u0105\u0106\u0001\u0000\u0000\u0000\u0106"+ ")\u0001\u0000\u0000\u0000\u0104\u0105\u00030\u0018\u0000\u0105\u0107\u0005"+
"\u0107\u0001\u0000\u0000\u0000\u0107\u0108\u0005\u0006\u0000\u0000\u0108"+ "\u0005\u0000\u0000\u0106\u0108\u0003,\u0016\u0000\u0107\u0106\u0001\u0000"+
"+\u0001\u0000\u0000\u0000\u0109\u010e\u0003\u001c\u000e\u0000\u010a\u010b"+ "\u0000\u0000\u0107\u0108\u0001\u0000\u0000\u0000\u0108\u0109\u0001\u0000"+
"\u0005\n\u0000\u0000\u010b\u010d\u0003\u001c\u000e\u0000\u010c\u010a\u0001"+ "\u0000\u0000\u0109\u010a\u0005\u0006\u0000\u0000\u010a+\u0001\u0000\u0000"+
"\u0000\u0000\u0000\u010d\u0110\u0001\u0000\u0000\u0000\u010e\u010c\u0001"+ "\u0000\u010b\u0110\u0003\u001c\u000e\u0000\u010c\u010d\u0005\n\u0000\u0000"+
"\u0000\u0000\u0000\u010e\u010f\u0001\u0000\u0000\u0000\u010f-\u0001\u0000"+ "\u010d\u010f\u0003\u001c\u000e\u0000\u010e\u010c\u0001\u0000\u0000\u0000"+
"\u0000\u0000\u0110\u010e\u0001\u0000\u0000\u0000\u0111\u0112\u0007\u0003"+ "\u010f\u0112\u0001\u0000\u0000\u0000\u0110\u010e\u0001\u0000\u0000\u0000"+
"\u0000\u0000\u0112/\u0001\u0000\u0000\u0000\u0113\u0114\u0005-\u0000\u0000"+ "\u0110\u0111\u0001\u0000\u0000\u0000\u0111-\u0001\u0000\u0000\u0000\u0112"+
"\u01141\u0001\u0000\u0000\u0000\u00177<>OU\\nx\u0081\u0083\u008f\u00b6"+ "\u0110\u0001\u0000\u0000\u0000\u0113\u0114\u0007\u0003\u0000\u0000\u0114"+
"\u00bd\u00c1\u00cf\u00d7\u00e0\u00e7\u00f2\u00f9\u0100\u0105\u010e"; "/\u0001\u0000\u0000\u0000\u0115\u0116\u0005-\u0000\u0000\u01161\u0001"+
"\u0000\u0000\u0000\u00187<>OU\\nx\u0081\u0083\u008f\u00a8\u00b8\u00bf"+
"\u00c3\u00d1\u00d9\u00e2\u00e9\u00f4\u00fb\u0102\u0107\u0110";
public static final ATN _ATN = public static final ATN _ATN =
new ATNDeserializer().deserialize(_serializedATN.toCharArray()); new ATNDeserializer().deserialize(_serializedATN.toCharArray());
static { static {

View File

@ -1,4 +1,4 @@
// Generated from C:/Users/laure/Documents/Dev/Compilerbau/Projekt/CompilerULTIMATE/src/main/antlr/Decaf.g4 by ANTLR 4.13.1 // Generated from C:/dev/Compilerbau/CompilerULTIMATE/src/main/antlr/Decaf.g4 by ANTLR 4.13.1
package de.maishai.antlr; package de.maishai.antlr;
import org.antlr.v4.runtime.tree.ParseTreeVisitor; import org.antlr.v4.runtime.tree.ParseTreeVisitor;

View File

@ -27,7 +27,7 @@ public class ClassCanBeTyped {
} }
do { do {
this.y = this.y + 1; this.y = this.y + 1;
} while (this.y < 10) } while (this.y < 10);
int k; int k;
k = 0; k = 0;