removed null and this

This commit is contained in:
laurenz 2024-05-16 17:46:02 +02:00
parent ab6c71e9d1
commit 95bca36a27
11 changed files with 198 additions and 352 deletions

View File

@ -38,8 +38,6 @@ expr : expr binaryOp expr #BinaryOperation
| '(' expr ')' #Expression | '(' expr ')' #Expression
| fieldVarAccess #Identifier | fieldVarAccess #Identifier
| stmtexpr #StatementExpressionexpr | stmtexpr #StatementExpressionexpr
| THIS #This
| NULL #Null
; ;
binaryOp : ADD | SUB | MUL | GT | LT | GE | LE | EQ | NE | AND | OR; binaryOp : ADD | SUB | MUL | GT | LT | GE | LE | EQ | NE | AND | OR;

View File

@ -121,15 +121,6 @@ public class ExpressionGenerator extends DecafBaseVisitor<Expression> {
return new New(type, args); return new New(type, args);
} }
@Override
public Expression visitNull(DecafParser.NullContext ctx){
return new Null();
}
@Override
public Expression visitThis(DecafParser.ThisContext ctx){
return new This();
}
public static Expression generateRecursiveOwnerChain(List<DecafParser.RecipientContext> ctxList, FieldVarAccess recipient) { public static Expression generateRecursiveOwnerChain(List<DecafParser.RecipientContext> ctxList, FieldVarAccess recipient) {
if (ctxList.isEmpty()) { if (ctxList.isEmpty()) {

File diff suppressed because one or more lines are too long

View File

@ -288,18 +288,6 @@ public class DecafBaseListener implements DecafListener {
* <p>The default implementation does nothing.</p> * <p>The default implementation does nothing.</p>
*/ */
@Override public void exitNew(DecafParser.NewContext ctx) { } @Override public void exitNew(DecafParser.NewContext ctx) { }
/**
* {@inheritDoc}
*
* <p>The default implementation does nothing.</p>
*/
@Override public void enterNull(DecafParser.NullContext ctx) { }
/**
* {@inheritDoc}
*
* <p>The default implementation does nothing.</p>
*/
@Override public void exitNull(DecafParser.NullContext ctx) { }
/** /**
* {@inheritDoc} * {@inheritDoc}
* *
@ -360,18 +348,6 @@ public class DecafBaseListener implements DecafListener {
* <p>The default implementation does nothing.</p> * <p>The default implementation does nothing.</p>
*/ */
@Override public void exitBinaryOperation(DecafParser.BinaryOperationContext ctx) { } @Override public void exitBinaryOperation(DecafParser.BinaryOperationContext ctx) { }
/**
* {@inheritDoc}
*
* <p>The default implementation does nothing.</p>
*/
@Override public void enterThis(DecafParser.ThisContext ctx) { }
/**
* {@inheritDoc}
*
* <p>The default implementation does nothing.</p>
*/
@Override public void exitThis(DecafParser.ThisContext ctx) { }
/** /**
* {@inheritDoc} * {@inheritDoc}
* *

View File

@ -173,13 +173,6 @@ public class DecafBaseVisitor<T> extends AbstractParseTreeVisitor<T> implements
* {@link #visitChildren} on {@code ctx}.</p> * {@link #visitChildren} on {@code ctx}.</p>
*/ */
@Override public T visitNew(DecafParser.NewContext ctx) { return visitChildren(ctx); } @Override public T visitNew(DecafParser.NewContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
* <p>The default implementation returns the result of calling
* {@link #visitChildren} on {@code ctx}.</p>
*/
@Override public T visitNull(DecafParser.NullContext ctx) { return visitChildren(ctx); }
/** /**
* {@inheritDoc} * {@inheritDoc}
* *
@ -215,13 +208,6 @@ public class DecafBaseVisitor<T> extends AbstractParseTreeVisitor<T> implements
* {@link #visitChildren} on {@code ctx}.</p> * {@link #visitChildren} on {@code ctx}.</p>
*/ */
@Override public T visitBinaryOperation(DecafParser.BinaryOperationContext ctx) { return visitChildren(ctx); } @Override public T visitBinaryOperation(DecafParser.BinaryOperationContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
* <p>The default implementation returns the result of calling
* {@link #visitChildren} on {@code ctx}.</p>
*/
@Override public T visitThis(DecafParser.ThisContext ctx) { return visitChildren(ctx); }
/** /**
* {@inheritDoc} * {@inheritDoc}
* *

View File

@ -259,18 +259,6 @@ public interface DecafListener extends ParseTreeListener {
* @param ctx the parse tree * @param ctx the parse tree
*/ */
void exitNew(DecafParser.NewContext ctx); void exitNew(DecafParser.NewContext ctx);
/**
* Enter a parse tree produced by the {@code Null}
* labeled alternative in {@link DecafParser#expr}.
* @param ctx the parse tree
*/
void enterNull(DecafParser.NullContext ctx);
/**
* Exit a parse tree produced by the {@code Null}
* labeled alternative in {@link DecafParser#expr}.
* @param ctx the parse tree
*/
void exitNull(DecafParser.NullContext ctx);
/** /**
* Enter a parse tree produced by the {@code UnaryOperation} * Enter a parse tree produced by the {@code UnaryOperation}
* labeled alternative in {@link DecafParser#expr}. * labeled alternative in {@link DecafParser#expr}.
@ -331,18 +319,6 @@ public interface DecafListener extends ParseTreeListener {
* @param ctx the parse tree * @param ctx the parse tree
*/ */
void exitBinaryOperation(DecafParser.BinaryOperationContext ctx); void exitBinaryOperation(DecafParser.BinaryOperationContext ctx);
/**
* Enter a parse tree produced by the {@code This}
* labeled alternative in {@link DecafParser#expr}.
* @param ctx the parse tree
*/
void enterThis(DecafParser.ThisContext ctx);
/**
* Exit a parse tree produced by the {@code This}
* labeled alternative in {@link DecafParser#expr}.
* @param ctx the parse tree
*/
void exitThis(DecafParser.ThisContext ctx);
/** /**
* Enter a parse tree produced by the {@code StatementExpressionexpr} * Enter a parse tree produced by the {@code StatementExpressionexpr}
* labeled alternative in {@link DecafParser#expr}. * labeled alternative in {@link DecafParser#expr}.

View File

@ -1414,7 +1414,7 @@ public class DecafParser extends Parser {
setState(194); setState(194);
_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) & 132216286871584L) != 0)) {
{ {
setState(193); setState(193);
args(); args();
@ -1453,24 +1453,6 @@ public class DecafParser extends Parser {
} }
} }
@SuppressWarnings("CheckReturnValue") @SuppressWarnings("CheckReturnValue")
public static class NullContext extends ExprContext {
public TerminalNode NULL() { return getToken(DecafParser.NULL, 0); }
public NullContext(ExprContext ctx) { copyFrom(ctx); }
@Override
public void enterRule(ParseTreeListener listener) {
if ( listener instanceof DecafListener ) ((DecafListener)listener).enterNull(this);
}
@Override
public void exitRule(ParseTreeListener listener) {
if ( listener instanceof DecafListener ) ((DecafListener)listener).exitNull(this);
}
@Override
public <T> T accept(ParseTreeVisitor<? extends T> visitor) {
if ( visitor instanceof DecafVisitor ) return ((DecafVisitor<? extends T>)visitor).visitNull(this);
else return visitor.visitChildren(this);
}
}
@SuppressWarnings("CheckReturnValue")
public static class UnaryOperationContext extends ExprContext { public static class UnaryOperationContext extends ExprContext {
public UnaryOpContext unaryOp() { public UnaryOpContext unaryOp() {
return getRuleContext(UnaryOpContext.class,0); return getRuleContext(UnaryOpContext.class,0);
@ -1580,24 +1562,6 @@ public class DecafParser extends Parser {
} }
} }
@SuppressWarnings("CheckReturnValue") @SuppressWarnings("CheckReturnValue")
public static class ThisContext extends ExprContext {
public TerminalNode THIS() { return getToken(DecafParser.THIS, 0); }
public ThisContext(ExprContext ctx) { copyFrom(ctx); }
@Override
public void enterRule(ParseTreeListener listener) {
if ( listener instanceof DecafListener ) ((DecafListener)listener).enterThis(this);
}
@Override
public void exitRule(ParseTreeListener listener) {
if ( listener instanceof DecafListener ) ((DecafListener)listener).exitThis(this);
}
@Override
public <T> T accept(ParseTreeVisitor<? extends T> visitor) {
if ( visitor instanceof DecafVisitor ) return ((DecafVisitor<? extends T>)visitor).visitThis(this);
else return visitor.visitChildren(this);
}
}
@SuppressWarnings("CheckReturnValue")
public static class StatementExpressionexprContext extends ExprContext { public static class StatementExpressionexprContext extends ExprContext {
public StmtexprContext stmtexpr() { public StmtexprContext stmtexpr() {
return getRuleContext(StmtexprContext.class,0); return getRuleContext(StmtexprContext.class,0);
@ -1633,7 +1597,7 @@ public class DecafParser extends Parser {
int _alt; int _alt;
enterOuterAlt(_localctx, 1); enterOuterAlt(_localctx, 1);
{ {
setState(213); setState(211);
_errHandler.sync(this); _errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,16,_ctx) ) { switch ( getInterpreter().adaptivePredict(_input,16,_ctx) ) {
case 1: case 1:
@ -1645,7 +1609,7 @@ public class DecafParser extends Parser {
setState(201); setState(201);
unaryOp(); unaryOp();
setState(202); setState(202);
expr(7); expr(5);
} }
break; break;
case 2: case 2:
@ -1688,27 +1652,9 @@ public class DecafParser extends Parser {
stmtexpr(); stmtexpr();
} }
break; break;
case 6:
{
_localctx = new ThisContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
setState(211);
match(THIS);
}
break;
case 7:
{
_localctx = new NullContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
setState(212);
match(NULL);
}
break;
} }
_ctx.stop = _input.LT(-1); _ctx.stop = _input.LT(-1);
setState(221); setState(219);
_errHandler.sync(this); _errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,17,_ctx); _alt = getInterpreter().adaptivePredict(_input,17,_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 ) {
@ -1719,16 +1665,16 @@ 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(215); setState(213);
if (!(precpred(_ctx, 8))) throw new FailedPredicateException(this, "precpred(_ctx, 8)"); if (!(precpred(_ctx, 6))) throw new FailedPredicateException(this, "precpred(_ctx, 6)");
setState(216); setState(214);
binaryOp(); binaryOp();
setState(217); setState(215);
expr(9); expr(7);
} }
} }
} }
setState(223); setState(221);
_errHandler.sync(this); _errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,17,_ctx); _alt = getInterpreter().adaptivePredict(_input,17,_ctx);
} }
@ -1784,7 +1730,7 @@ public class DecafParser extends Parser {
try { try {
enterOuterAlt(_localctx, 1); enterOuterAlt(_localctx, 1);
{ {
setState(224); setState(222);
_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);
@ -1837,7 +1783,7 @@ public class DecafParser extends Parser {
try { try {
enterOuterAlt(_localctx, 1); enterOuterAlt(_localctx, 1);
{ {
setState(226); setState(224);
_la = _input.LA(1); _la = _input.LA(1);
if ( !(_la==SUB || _la==NOT) ) { if ( !(_la==SUB || _la==NOT) ) {
_errHandler.recoverInline(this); _errHandler.recoverInline(this);
@ -1899,37 +1845,37 @@ public class DecafParser extends Parser {
int _alt; int _alt;
enterOuterAlt(_localctx, 1); enterOuterAlt(_localctx, 1);
{ {
setState(230); setState(228);
_errHandler.sync(this); _errHandler.sync(this);
_la = _input.LA(1); _la = _input.LA(1);
if (_la==THIS) { if (_la==THIS) {
{ {
setState(228); setState(226);
match(THIS); match(THIS);
setState(229); setState(227);
match(T__17); match(T__17);
} }
} }
setState(237); setState(235);
_errHandler.sync(this); _errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,19,_ctx); _alt = getInterpreter().adaptivePredict(_input,19,_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(232); setState(230);
recipient(); recipient();
setState(233); setState(231);
match(T__17); match(T__17);
} }
} }
} }
setState(239); setState(237);
_errHandler.sync(this); _errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,19,_ctx); _alt = getInterpreter().adaptivePredict(_input,19,_ctx);
} }
setState(240); setState(238);
id(); id();
} }
} }
@ -1980,11 +1926,11 @@ public class DecafParser extends Parser {
try { try {
enterOuterAlt(_localctx, 1); enterOuterAlt(_localctx, 1);
{ {
setState(242); setState(240);
fieldVarAccess(); fieldVarAccess();
setState(243); setState(241);
assignSign(); assignSign();
setState(244); setState(242);
expr(0); expr(0);
} }
} }
@ -2038,37 +1984,37 @@ public class DecafParser extends Parser {
int _alt; int _alt;
enterOuterAlt(_localctx, 1); enterOuterAlt(_localctx, 1);
{ {
setState(248); setState(246);
_errHandler.sync(this); _errHandler.sync(this);
_la = _input.LA(1); _la = _input.LA(1);
if (_la==THIS) { if (_la==THIS) {
{ {
setState(246); setState(244);
match(THIS); match(THIS);
setState(247); setState(245);
match(T__17); match(T__17);
} }
} }
setState(255); setState(253);
_errHandler.sync(this); _errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,21,_ctx); _alt = getInterpreter().adaptivePredict(_input,21,_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(250); setState(248);
recipient(); recipient();
setState(251); setState(249);
match(T__17); match(T__17);
} }
} }
} }
setState(257); setState(255);
_errHandler.sync(this); _errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,21,_ctx); _alt = getInterpreter().adaptivePredict(_input,21,_ctx);
} }
setState(258); setState(256);
methName(); methName();
} }
} }
@ -2114,20 +2060,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(262); setState(260);
_errHandler.sync(this); _errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,22,_ctx) ) { switch ( getInterpreter().adaptivePredict(_input,22,_ctx) ) {
case 1: case 1:
enterOuterAlt(_localctx, 1); enterOuterAlt(_localctx, 1);
{ {
setState(260); setState(258);
methName(); methName();
} }
break; break;
case 2: case 2:
enterOuterAlt(_localctx, 2); enterOuterAlt(_localctx, 2);
{ {
setState(261); setState(259);
id(); id();
} }
break; break;
@ -2178,21 +2124,21 @@ public class DecafParser extends Parser {
try { try {
enterOuterAlt(_localctx, 1); enterOuterAlt(_localctx, 1);
{ {
setState(264); setState(262);
id(); id();
setState(265); setState(263);
match(T__4); match(T__4);
setState(267); setState(265);
_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) & 132216286871584L) != 0)) {
{ {
setState(266); setState(264);
args(); args();
} }
} }
setState(269); setState(267);
match(T__5); match(T__5);
} }
} }
@ -2241,21 +2187,21 @@ public class DecafParser extends Parser {
try { try {
enterOuterAlt(_localctx, 1); enterOuterAlt(_localctx, 1);
{ {
setState(271); setState(269);
expr(0); expr(0);
setState(276); setState(274);
_errHandler.sync(this); _errHandler.sync(this);
_la = _input.LA(1); _la = _input.LA(1);
while (_la==T__9) { while (_la==T__9) {
{ {
{ {
setState(272); setState(270);
match(T__9); match(T__9);
setState(273); setState(271);
expr(0); expr(0);
} }
} }
setState(278); setState(276);
_errHandler.sync(this); _errHandler.sync(this);
_la = _input.LA(1); _la = _input.LA(1);
} }
@ -2303,7 +2249,7 @@ public class DecafParser extends Parser {
try { try {
enterOuterAlt(_localctx, 1); enterOuterAlt(_localctx, 1);
{ {
setState(279); setState(277);
_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);
@ -2354,7 +2300,7 @@ public class DecafParser extends Parser {
try { try {
enterOuterAlt(_localctx, 1); enterOuterAlt(_localctx, 1);
{ {
setState(281); setState(279);
match(IDENTIFIER); match(IDENTIFIER);
} }
} }
@ -2379,13 +2325,13 @@ public class DecafParser extends Parser {
private boolean expr_sempred(ExprContext _localctx, int predIndex) { private boolean expr_sempred(ExprContext _localctx, int predIndex) {
switch (predIndex) { switch (predIndex) {
case 0: case 0:
return precpred(_ctx, 8); return precpred(_ctx, 6);
} }
return true; return true;
} }
public static final String _serializedATN = public static final String _serializedATN =
"\u0004\u00011\u011c\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001\u0002"+ "\u0004\u00011\u011a\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"+
@ -2414,156 +2360,153 @@ public class DecafParser extends Parser {
"\f\u0001\f\u0001\f\u0001\f\u0001\f\u0003\f\u00bc\b\f\u0001\r\u0001\r\u0001"+ "\f\u0001\f\u0001\f\u0001\f\u0001\f\u0003\f\u00bc\b\f\u0001\r\u0001\r\u0001"+
"\r\u0001\r\u0001\r\u0003\r\u00c3\b\r\u0001\r\u0001\r\u0003\r\u00c7\b\r"+ "\r\u0001\r\u0001\r\u0003\r\u00c3\b\r\u0001\r\u0001\r\u0003\r\u00c7\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"+ "\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0003\u000e"+
"\u0001\u000e\u0003\u000e\u00d6\b\u000e\u0001\u000e\u0001\u000e\u0001\u000e"+ "\u00d4\b\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0005\u000e"+
"\u0001\u000e\u0005\u000e\u00dc\b\u000e\n\u000e\f\u000e\u00df\t\u000e\u0001"+ "\u00da\b\u000e\n\u000e\f\u000e\u00dd\t\u000e\u0001\u000f\u0001\u000f\u0001"+
"\u000f\u0001\u000f\u0001\u0010\u0001\u0010\u0001\u0011\u0001\u0011\u0003"+ "\u0010\u0001\u0010\u0001\u0011\u0001\u0011\u0003\u0011\u00e5\b\u0011\u0001"+
"\u0011\u00e7\b\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0005\u0011\u00ec"+ "\u0011\u0001\u0011\u0001\u0011\u0005\u0011\u00ea\b\u0011\n\u0011\f\u0011"+
"\b\u0011\n\u0011\f\u0011\u00ef\t\u0011\u0001\u0011\u0001\u0011\u0001\u0012"+ "\u00ed\t\u0011\u0001\u0011\u0001\u0011\u0001\u0012\u0001\u0012\u0001\u0012"+
"\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0013\u0001\u0013\u0003\u0013"+ "\u0001\u0012\u0001\u0013\u0001\u0013\u0003\u0013\u00f7\b\u0013\u0001\u0013"+
"\u00f9\b\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0005\u0013\u00fe\b"+ "\u0001\u0013\u0001\u0013\u0005\u0013\u00fc\b\u0013\n\u0013\f\u0013\u00ff"+
"\u0013\n\u0013\f\u0013\u0101\t\u0013\u0001\u0013\u0001\u0013\u0001\u0014"+ "\t\u0013\u0001\u0013\u0001\u0013\u0001\u0014\u0001\u0014\u0003\u0014\u0105"+
"\u0001\u0014\u0003\u0014\u0107\b\u0014\u0001\u0015\u0001\u0015\u0001\u0015"+ "\b\u0014\u0001\u0015\u0001\u0015\u0001\u0015\u0003\u0015\u010a\b\u0015"+
"\u0003\u0015\u010c\b\u0015\u0001\u0015\u0001\u0015\u0001\u0016\u0001\u0016"+ "\u0001\u0015\u0001\u0015\u0001\u0016\u0001\u0016\u0001\u0016\u0005\u0016"+
"\u0001\u0016\u0005\u0016\u0113\b\u0016\n\u0016\f\u0016\u0116\t\u0016\u0001"+ "\u0111\b\u0016\n\u0016\f\u0016\u0114\t\u0016\u0001\u0017\u0001\u0017\u0001"+
"\u0017\u0001\u0017\u0001\u0018\u0001\u0018\u0001\u0018\u0000\u0001\u001c"+ "\u0018\u0001\u0018\u0001\u0018\u0000\u0001\u001c\u0019\u0000\u0002\u0004"+
"\u0019\u0000\u0002\u0004\u0006\b\n\f\u000e\u0010\u0012\u0014\u0016\u0018"+ "\u0006\b\n\f\u000e\u0010\u0012\u0014\u0016\u0018\u001a\u001c\u001e \""+
"\u001a\u001c\u001e \"$&(*,.0\u0000\u0004\u0001\u0000\"%\u0001\u0000\u0017"+ "$&(*,.0\u0000\u0004\u0001\u0000\"%\u0001\u0000\u0017!\u0002\u0000\u0017"+
"!\u0002\u0000\u0017\u0017&&\u0002\u0000+,..\u012a\u00002\u0001\u0000\u0000"+ "\u0017&&\u0002\u0000+,..\u0126\u00002\u0001\u0000\u0000\u0000\u0002D\u0001"+
"\u0000\u0002D\u0001\u0000\u0000\u0000\u0004J\u0001\u0000\u0000\u0000\u0006"+ "\u0000\u0000\u0000\u0004J\u0001\u0000\u0000\u0000\u0006N\u0001\u0000\u0000"+
"N\u0001\u0000\u0000\u0000\bR\u0001\u0000\u0000\u0000\nX\u0001\u0000\u0000"+ "\u0000\bR\u0001\u0000\u0000\u0000\nX\u0001\u0000\u0000\u0000\fZ\u0001"+
"\u0000\fZ\u0001\u0000\u0000\u0000\u000ed\u0001\u0000\u0000\u0000\u0010"+ "\u0000\u0000\u0000\u000ed\u0001\u0000\u0000\u0000\u0010m\u0001\u0000\u0000"+
"m\u0001\u0000\u0000\u0000\u0012v\u0001\u0000\u0000\u0000\u0014~\u0001"+ "\u0000\u0012v\u0001\u0000\u0000\u0000\u0014~\u0001\u0000\u0000\u0000\u0016"+
"\u0000\u0000\u0000\u0016\u0081\u0001\u0000\u0000\u0000\u0018\u00bb\u0001"+ "\u0081\u0001\u0000\u0000\u0000\u0018\u00bb\u0001\u0000\u0000\u0000\u001a"+
"\u0000\u0000\u0000\u001a\u00c6\u0001\u0000\u0000\u0000\u001c\u00d5\u0001"+ "\u00c6\u0001\u0000\u0000\u0000\u001c\u00d3\u0001\u0000\u0000\u0000\u001e"+
"\u0000\u0000\u0000\u001e\u00e0\u0001\u0000\u0000\u0000 \u00e2\u0001\u0000"+ "\u00de\u0001\u0000\u0000\u0000 \u00e0\u0001\u0000\u0000\u0000\"\u00e4"+
"\u0000\u0000\"\u00e6\u0001\u0000\u0000\u0000$\u00f2\u0001\u0000\u0000"+ "\u0001\u0000\u0000\u0000$\u00f0\u0001\u0000\u0000\u0000&\u00f6\u0001\u0000"+
"\u0000&\u00f8\u0001\u0000\u0000\u0000(\u0106\u0001\u0000\u0000\u0000*"+ "\u0000\u0000(\u0104\u0001\u0000\u0000\u0000*\u0106\u0001\u0000\u0000\u0000"+
"\u0108\u0001\u0000\u0000\u0000,\u010f\u0001\u0000\u0000\u0000.\u0117\u0001"+ ",\u010d\u0001\u0000\u0000\u0000.\u0115\u0001\u0000\u0000\u00000\u0117"+
"\u0000\u0000\u00000\u0119\u0001\u0000\u0000\u000023\u0005\u0013\u0000"+ "\u0001\u0000\u0000\u000023\u0005\u0013\u0000\u000034\u0005\u0001\u0000"+
"\u000034\u0005\u0001\u0000\u000045\u00030\u0018\u000057\u0005\u0002\u0000"+ "\u000045\u00030\u0018\u000057\u0005\u0002\u0000\u000068\u0003\u000e\u0007"+
"\u000068\u0003\u000e\u0007\u000076\u0001\u0000\u0000\u000078\u0001\u0000"+ "\u000076\u0001\u0000\u0000\u000078\u0001\u0000\u0000\u00008>\u0001\u0000"+
"\u0000\u00008>\u0001\u0000\u0000\u00009=\u0003\u0002\u0001\u0000:=\u0003"+ "\u0000\u00009=\u0003\u0002\u0001\u0000:=\u0003\f\u0006\u0000;=\u0003\u0010"+
"\f\u0006\u0000;=\u0003\u0010\b\u0000<9\u0001\u0000\u0000\u0000<:\u0001"+ "\b\u0000<9\u0001\u0000\u0000\u0000<:\u0001\u0000\u0000\u0000<;\u0001\u0000"+
"\u0000\u0000\u0000<;\u0001\u0000\u0000\u0000=@\u0001\u0000\u0000\u0000"+ "\u0000\u0000=@\u0001\u0000\u0000\u0000><\u0001\u0000\u0000\u0000>?\u0001"+
"><\u0001\u0000\u0000\u0000>?\u0001\u0000\u0000\u0000?A\u0001\u0000\u0000"+ "\u0000\u0000\u0000?A\u0001\u0000\u0000\u0000@>\u0001\u0000\u0000\u0000"+
"\u0000@>\u0001\u0000\u0000\u0000AB\u0005\u0003\u0000\u0000B\u0001\u0001"+ "AB\u0005\u0003\u0000\u0000B\u0001\u0001\u0000\u0000\u0000CE\u0005\u0013"+
"\u0000\u0000\u0000CE\u0005\u0013\u0000\u0000DC\u0001\u0000\u0000\u0000"+ "\u0000\u0000DC\u0001\u0000\u0000\u0000DE\u0001\u0000\u0000\u0000EF\u0001"+
"DE\u0001\u0000\u0000\u0000EF\u0001\u0000\u0000\u0000FG\u0003\n\u0005\u0000"+ "\u0000\u0000\u0000FG\u0003\n\u0005\u0000GH\u00030\u0018\u0000HI\u0005"+
"GH\u00030\u0018\u0000HI\u0005\u0004\u0000\u0000I\u0003\u0001\u0000\u0000"+ "\u0004\u0000\u0000I\u0003\u0001\u0000\u0000\u0000JK\u0003\n\u0005\u0000"+
"\u0000JK\u0003\n\u0005\u0000KL\u00030\u0018\u0000LM\u0005\u0004\u0000"+ "KL\u00030\u0018\u0000LM\u0005\u0004\u0000\u0000M\u0005\u0001\u0000\u0000"+
"\u0000M\u0005\u0001\u0000\u0000\u0000NO\u0007\u0000\u0000\u0000O\u0007"+ "\u0000NO\u0007\u0000\u0000\u0000O\u0007\u0001\u0000\u0000\u0000PS\u0003"+
"\u0001\u0000\u0000\u0000PS\u0003\n\u0005\u0000QS\u0005)\u0000\u0000RP"+ "\n\u0005\u0000QS\u0005)\u0000\u0000RP\u0001\u0000\u0000\u0000RQ\u0001"+
"\u0001\u0000\u0000\u0000RQ\u0001\u0000\u0000\u0000S\t\u0001\u0000\u0000"+ "\u0000\u0000\u0000S\t\u0001\u0000\u0000\u0000TY\u0005\'\u0000\u0000UY"+
"\u0000TY\u0005\'\u0000\u0000UY\u0005(\u0000\u0000VY\u0005*\u0000\u0000"+ "\u0005(\u0000\u0000VY\u0005*\u0000\u0000WY\u00030\u0018\u0000XT\u0001"+
"WY\u00030\u0018\u0000XT\u0001\u0000\u0000\u0000XU\u0001\u0000\u0000\u0000"+ "\u0000\u0000\u0000XU\u0001\u0000\u0000\u0000XV\u0001\u0000\u0000\u0000"+
"XV\u0001\u0000\u0000\u0000XW\u0001\u0000\u0000\u0000Y\u000b\u0001\u0000"+ "XW\u0001\u0000\u0000\u0000Y\u000b\u0001\u0000\u0000\u0000Z[\u0005\u0013"+
"\u0000\u0000Z[\u0005\u0013\u0000\u0000[\\\u0003\b\u0004\u0000\\]\u0003"+ "\u0000\u0000[\\\u0003\b\u0004\u0000\\]\u00030\u0018\u0000]_\u0005\u0005"+
"0\u0018\u0000]_\u0005\u0005\u0000\u0000^`\u0003\u0012\t\u0000_^\u0001"+ "\u0000\u0000^`\u0003\u0012\t\u0000_^\u0001\u0000\u0000\u0000_`\u0001\u0000"+
"\u0000\u0000\u0000_`\u0001\u0000\u0000\u0000`a\u0001\u0000\u0000\u0000"+ "\u0000\u0000`a\u0001\u0000\u0000\u0000ab\u0005\u0006\u0000\u0000bc\u0003"+
"ab\u0005\u0006\u0000\u0000bc\u0003\u0016\u000b\u0000c\r\u0001\u0000\u0000"+ "\u0016\u000b\u0000c\r\u0001\u0000\u0000\u0000de\u0005\u0013\u0000\u0000"+
"\u0000de\u0005\u0013\u0000\u0000ef\u0005\u0007\u0000\u0000fg\u0005)\u0000"+ "ef\u0005\u0007\u0000\u0000fg\u0005)\u0000\u0000gh\u0005\b\u0000\u0000"+
"\u0000gh\u0005\b\u0000\u0000hi\u0005\u0005\u0000\u0000ij\u0005\t\u0000"+ "hi\u0005\u0005\u0000\u0000ij\u0005\t\u0000\u0000jk\u0005\u0006\u0000\u0000"+
"\u0000jk\u0005\u0006\u0000\u0000kl\u0003\u0016\u000b\u0000l\u000f\u0001"+ "kl\u0003\u0016\u000b\u0000l\u000f\u0001\u0000\u0000\u0000mn\u0005\u0013"+
"\u0000\u0000\u0000mn\u0005\u0013\u0000\u0000no\u00030\u0018\u0000oq\u0005"+ "\u0000\u0000no\u00030\u0018\u0000oq\u0005\u0005\u0000\u0000pr\u0003\u0012"+
"\u0005\u0000\u0000pr\u0003\u0012\t\u0000qp\u0001\u0000\u0000\u0000qr\u0001"+ "\t\u0000qp\u0001\u0000\u0000\u0000qr\u0001\u0000\u0000\u0000rs\u0001\u0000"+
"\u0000\u0000\u0000rs\u0001\u0000\u0000\u0000st\u0005\u0006\u0000\u0000"+ "\u0000\u0000st\u0005\u0006\u0000\u0000tu\u0003\u0016\u000b\u0000u\u0011"+
"tu\u0003\u0016\u000b\u0000u\u0011\u0001\u0000\u0000\u0000v{\u0003\u0014"+ "\u0001\u0000\u0000\u0000v{\u0003\u0014\n\u0000wx\u0005\n\u0000\u0000x"+
"\n\u0000wx\u0005\n\u0000\u0000xz\u0003\u0014\n\u0000yw\u0001\u0000\u0000"+ "z\u0003\u0014\n\u0000yw\u0001\u0000\u0000\u0000z}\u0001\u0000\u0000\u0000"+
"\u0000z}\u0001\u0000\u0000\u0000{y\u0001\u0000\u0000\u0000{|\u0001\u0000"+ "{y\u0001\u0000\u0000\u0000{|\u0001\u0000\u0000\u0000|\u0013\u0001\u0000"+
"\u0000\u0000|\u0013\u0001\u0000\u0000\u0000}{\u0001\u0000\u0000\u0000"+ "\u0000\u0000}{\u0001\u0000\u0000\u0000~\u007f\u0003\n\u0005\u0000\u007f"+
"~\u007f\u0003\n\u0005\u0000\u007f\u0080\u00030\u0018\u0000\u0080\u0015"+ "\u0080\u00030\u0018\u0000\u0080\u0015\u0001\u0000\u0000\u0000\u0081\u0086"+
"\u0001\u0000\u0000\u0000\u0081\u0086\u0005\u0002\u0000\u0000\u0082\u0085"+ "\u0005\u0002\u0000\u0000\u0082\u0085\u0003\u0004\u0002\u0000\u0083\u0085"+
"\u0003\u0004\u0002\u0000\u0083\u0085\u0003\u0018\f\u0000\u0084\u0082\u0001"+ "\u0003\u0018\f\u0000\u0084\u0082\u0001\u0000\u0000\u0000\u0084\u0083\u0001"+
"\u0000\u0000\u0000\u0084\u0083\u0001\u0000\u0000\u0000\u0085\u0088\u0001"+ "\u0000\u0000\u0000\u0085\u0088\u0001\u0000\u0000\u0000\u0086\u0084\u0001"+
"\u0000\u0000\u0000\u0086\u0084\u0001\u0000\u0000\u0000\u0086\u0087\u0001"+ "\u0000\u0000\u0000\u0086\u0087\u0001\u0000\u0000\u0000\u0087\u0089\u0001"+
"\u0000\u0000\u0000\u0087\u0089\u0001\u0000\u0000\u0000\u0088\u0086\u0001"+ "\u0000\u0000\u0000\u0088\u0086\u0001\u0000\u0000\u0000\u0089\u008a\u0005"+
"\u0000\u0000\u0000\u0089\u008a\u0005\u0003\u0000\u0000\u008a\u0017\u0001"+ "\u0003\u0000\u0000\u008a\u0017\u0001\u0000\u0000\u0000\u008b\u008c\u0005"+
"\u0000\u0000\u0000\u008b\u008c\u0005\u000b\u0000\u0000\u008c\u008d\u0005"+ "\u000b\u0000\u0000\u008c\u008d\u0005\u0005\u0000\u0000\u008d\u008e\u0003"+
"\u0005\u0000\u0000\u008d\u008e\u0003\u001c\u000e\u0000\u008e\u008f\u0005"+ "\u001c\u000e\u0000\u008e\u008f\u0005\u0006\u0000\u0000\u008f\u0092\u0003"+
"\u0006\u0000\u0000\u008f\u0092\u0003\u0016\u000b\u0000\u0090\u0091\u0005"+ "\u0016\u000b\u0000\u0090\u0091\u0005\f\u0000\u0000\u0091\u0093\u0003\u0016"+
"\f\u0000\u0000\u0091\u0093\u0003\u0016\u000b\u0000\u0092\u0090\u0001\u0000"+ "\u000b\u0000\u0092\u0090\u0001\u0000\u0000\u0000\u0092\u0093\u0001\u0000"+
"\u0000\u0000\u0092\u0093\u0001\u0000\u0000\u0000\u0093\u00bc\u0001\u0000"+ "\u0000\u0000\u0093\u00bc\u0001\u0000\u0000\u0000\u0094\u0095\u0005\r\u0000"+
"\u0000\u0000\u0094\u0095\u0005\r\u0000\u0000\u0095\u0096\u0005\u0005\u0000"+ "\u0000\u0095\u0096\u0005\u0005\u0000\u0000\u0096\u0097\u0003$\u0012\u0000"+
"\u0000\u0096\u0097\u0003$\u0012\u0000\u0097\u0098\u0005\u0004\u0000\u0000"+ "\u0097\u0098\u0005\u0004\u0000\u0000\u0098\u0099\u0003\u001c\u000e\u0000"+
"\u0098\u0099\u0003\u001c\u000e\u0000\u0099\u009a\u0005\u0004\u0000\u0000"+ "\u0099\u009a\u0005\u0004\u0000\u0000\u009a\u009b\u0003$\u0012\u0000\u009b"+
"\u009a\u009b\u0003$\u0012\u0000\u009b\u009c\u0005\u0006\u0000\u0000\u009c"+ "\u009c\u0005\u0006\u0000\u0000\u009c\u009d\u0003\u0016\u000b\u0000\u009d"+
"\u009d\u0003\u0016\u000b\u0000\u009d\u00bc\u0001\u0000\u0000\u0000\u009e"+ "\u00bc\u0001\u0000\u0000\u0000\u009e\u009f\u0005\u000e\u0000\u0000\u009f"+
"\u009f\u0005\u000e\u0000\u0000\u009f\u00a0\u0005\u0005\u0000\u0000\u00a0"+ "\u00a0\u0005\u0005\u0000\u0000\u00a0\u00a1\u0003\u001c\u000e\u0000\u00a1"+
"\u00a1\u0003\u001c\u000e\u0000\u00a1\u00a2\u0005\u0006\u0000\u0000\u00a2"+ "\u00a2\u0005\u0006\u0000\u0000\u00a2\u00a3\u0003\u0016\u000b\u0000\u00a3"+
"\u00a3\u0003\u0016\u000b\u0000\u00a3\u00bc\u0001\u0000\u0000\u0000\u00a4"+ "\u00bc\u0001\u0000\u0000\u0000\u00a4\u00a5\u0005\u000f\u0000\u0000\u00a5"+
"\u00a5\u0005\u000f\u0000\u0000\u00a5\u00a6\u0003\u0016\u000b\u0000\u00a6"+ "\u00a6\u0003\u0016\u000b\u0000\u00a6\u00a7\u0005\u000e\u0000\u0000\u00a7"+
"\u00a7\u0005\u000e\u0000\u0000\u00a7\u00a8\u0005\u0005\u0000\u0000\u00a8"+ "\u00a8\u0005\u0005\u0000\u0000\u00a8\u00a9\u0003\u001c\u000e\u0000\u00a9"+
"\u00a9\u0003\u001c\u000e\u0000\u00a9\u00ab\u0005\u0006\u0000\u0000\u00aa"+ "\u00ab\u0005\u0006\u0000\u0000\u00aa\u00ac\u0005\u0004\u0000\u0000\u00ab"+
"\u00ac\u0005\u0004\u0000\u0000\u00ab\u00aa\u0001\u0000\u0000\u0000\u00ab"+ "\u00aa\u0001\u0000\u0000\u0000\u00ab\u00ac\u0001\u0000\u0000\u0000\u00ac"+
"\u00ac\u0001\u0000\u0000\u0000\u00ac\u00bc\u0001\u0000\u0000\u0000\u00ad"+ "\u00bc\u0001\u0000\u0000\u0000\u00ad\u00ae\u0005\u0010\u0000\u0000\u00ae"+
"\u00ae\u0005\u0010\u0000\u0000\u00ae\u00af\u0003\u001c\u000e\u0000\u00af"+ "\u00af\u0003\u001c\u000e\u0000\u00af\u00b0\u0005\u0004\u0000\u0000\u00b0"+
"\u00b0\u0005\u0004\u0000\u0000\u00b0\u00bc\u0001\u0000\u0000\u0000\u00b1"+ "\u00bc\u0001\u0000\u0000\u0000\u00b1\u00b2\u0005\u0010\u0000\u0000\u00b2"+
"\u00b2\u0005\u0010\u0000\u0000\u00b2\u00bc\u0005\u0004\u0000\u0000\u00b3"+ "\u00bc\u0005\u0004\u0000\u0000\u00b3\u00b4\u0005\u0011\u0000\u0000\u00b4"+
"\u00b4\u0005\u0011\u0000\u0000\u00b4\u00bc\u0005\u0004\u0000\u0000\u00b5"+ "\u00bc\u0005\u0004\u0000\u0000\u00b5\u00b6\u0003$\u0012\u0000\u00b6\u00b7"+
"\u00b6\u0003$\u0012\u0000\u00b6\u00b7\u0005\u0004\u0000\u0000\u00b7\u00bc"+ "\u0005\u0004\u0000\u0000\u00b7\u00bc\u0001\u0000\u0000\u0000\u00b8\u00b9"+
"\u0001\u0000\u0000\u0000\u00b8\u00b9\u0003\u001a\r\u0000\u00b9\u00ba\u0005"+ "\u0003\u001a\r\u0000\u00b9\u00ba\u0005\u0004\u0000\u0000\u00ba\u00bc\u0001"+
"\u0004\u0000\u0000\u00ba\u00bc\u0001\u0000\u0000\u0000\u00bb\u008b\u0001"+ "\u0000\u0000\u0000\u00bb\u008b\u0001\u0000\u0000\u0000\u00bb\u0094\u0001"+
"\u0000\u0000\u0000\u00bb\u0094\u0001\u0000\u0000\u0000\u00bb\u009e\u0001"+ "\u0000\u0000\u0000\u00bb\u009e\u0001\u0000\u0000\u0000\u00bb\u00a4\u0001"+
"\u0000\u0000\u0000\u00bb\u00a4\u0001\u0000\u0000\u0000\u00bb\u00ad\u0001"+ "\u0000\u0000\u0000\u00bb\u00ad\u0001\u0000\u0000\u0000\u00bb\u00b1\u0001"+
"\u0000\u0000\u0000\u00bb\u00b1\u0001\u0000\u0000\u0000\u00bb\u00b3\u0001"+ "\u0000\u0000\u0000\u00bb\u00b3\u0001\u0000\u0000\u0000\u00bb\u00b5\u0001"+
"\u0000\u0000\u0000\u00bb\u00b5\u0001\u0000\u0000\u0000\u00bb\u00b8\u0001"+ "\u0000\u0000\u0000\u00bb\u00b8\u0001\u0000\u0000\u0000\u00bc\u0019\u0001"+
"\u0000\u0000\u0000\u00bc\u0019\u0001\u0000\u0000\u0000\u00bd\u00c7\u0003"+ "\u0000\u0000\u0000\u00bd\u00c7\u0003&\u0013\u0000\u00be\u00bf\u0005\u0014"+
"&\u0013\u0000\u00be\u00bf\u0005\u0014\u0000\u0000\u00bf\u00c0\u0003\n"+ "\u0000\u0000\u00bf\u00c0\u0003\n\u0005\u0000\u00c0\u00c2\u0005\u0005\u0000"+
"\u0005\u0000\u00c0\u00c2\u0005\u0005\u0000\u0000\u00c1\u00c3\u0003,\u0016"+ "\u0000\u00c1\u00c3\u0003,\u0016\u0000\u00c2\u00c1\u0001\u0000\u0000\u0000"+
"\u0000\u00c2\u00c1\u0001\u0000\u0000\u0000\u00c2\u00c3\u0001\u0000\u0000"+ "\u00c2\u00c3\u0001\u0000\u0000\u0000\u00c3\u00c4\u0001\u0000\u0000\u0000"+
"\u0000\u00c3\u00c4\u0001\u0000\u0000\u0000\u00c4\u00c5\u0005\u0006\u0000"+ "\u00c4\u00c5\u0005\u0006\u0000\u0000\u00c5\u00c7\u0001\u0000\u0000\u0000"+
"\u0000\u00c5\u00c7\u0001\u0000\u0000\u0000\u00c6\u00bd\u0001\u0000\u0000"+ "\u00c6\u00bd\u0001\u0000\u0000\u0000\u00c6\u00be\u0001\u0000\u0000\u0000"+
"\u0000\u00c6\u00be\u0001\u0000\u0000\u0000\u00c7\u001b\u0001\u0000\u0000"+ "\u00c7\u001b\u0001\u0000\u0000\u0000\u00c8\u00c9\u0006\u000e\uffff\uffff"+
"\u0000\u00c8\u00c9\u0006\u000e\uffff\uffff\u0000\u00c9\u00ca\u0003 \u0010"+ "\u0000\u00c9\u00ca\u0003 \u0010\u0000\u00ca\u00cb\u0003\u001c\u000e\u0005"+
"\u0000\u00ca\u00cb\u0003\u001c\u000e\u0007\u00cb\u00d6\u0001\u0000\u0000"+ "\u00cb\u00d4\u0001\u0000\u0000\u0000\u00cc\u00d4\u0003.\u0017\u0000\u00cd"+
"\u0000\u00cc\u00d6\u0003.\u0017\u0000\u00cd\u00ce\u0005\u0005\u0000\u0000"+ "\u00ce\u0005\u0005\u0000\u0000\u00ce\u00cf\u0003\u001c\u000e\u0000\u00cf"+
"\u00ce\u00cf\u0003\u001c\u000e\u0000\u00cf\u00d0\u0005\u0006\u0000\u0000"+ "\u00d0\u0005\u0006\u0000\u0000\u00d0\u00d4\u0001\u0000\u0000\u0000\u00d1"+
"\u00d0\u00d6\u0001\u0000\u0000\u0000\u00d1\u00d6\u0003\"\u0011\u0000\u00d2"+ "\u00d4\u0003\"\u0011\u0000\u00d2\u00d4\u0003\u001a\r\u0000\u00d3\u00c8"+
"\u00d6\u0003\u001a\r\u0000\u00d3\u00d6\u0005\u0016\u0000\u0000\u00d4\u00d6"+ "\u0001\u0000\u0000\u0000\u00d3\u00cc\u0001\u0000\u0000\u0000\u00d3\u00cd"+
"\u0005\u0015\u0000\u0000\u00d5\u00c8\u0001\u0000\u0000\u0000\u00d5\u00cc"+ "\u0001\u0000\u0000\u0000\u00d3\u00d1\u0001\u0000\u0000\u0000\u00d3\u00d2"+
"\u0001\u0000\u0000\u0000\u00d5\u00cd\u0001\u0000\u0000\u0000\u00d5\u00d1"+ "\u0001\u0000\u0000\u0000\u00d4\u00db\u0001\u0000\u0000\u0000\u00d5\u00d6"+
"\u0001\u0000\u0000\u0000\u00d5\u00d2\u0001\u0000\u0000\u0000\u00d5\u00d3"+ "\n\u0006\u0000\u0000\u00d6\u00d7\u0003\u001e\u000f\u0000\u00d7\u00d8\u0003"+
"\u0001\u0000\u0000\u0000\u00d5\u00d4\u0001\u0000\u0000\u0000\u00d6\u00dd"+ "\u001c\u000e\u0007\u00d8\u00da\u0001\u0000\u0000\u0000\u00d9\u00d5\u0001"+
"\u0001\u0000\u0000\u0000\u00d7\u00d8\n\b\u0000\u0000\u00d8\u00d9\u0003"+ "\u0000\u0000\u0000\u00da\u00dd\u0001\u0000\u0000\u0000\u00db\u00d9\u0001"+
"\u001e\u000f\u0000\u00d9\u00da\u0003\u001c\u000e\t\u00da\u00dc\u0001\u0000"+ "\u0000\u0000\u0000\u00db\u00dc\u0001\u0000\u0000\u0000\u00dc\u001d\u0001"+
"\u0000\u0000\u00db\u00d7\u0001\u0000\u0000\u0000\u00dc\u00df\u0001\u0000"+ "\u0000\u0000\u0000\u00dd\u00db\u0001\u0000\u0000\u0000\u00de\u00df\u0007"+
"\u0000\u0000\u00dd\u00db\u0001\u0000\u0000\u0000\u00dd\u00de\u0001\u0000"+ "\u0001\u0000\u0000\u00df\u001f\u0001\u0000\u0000\u0000\u00e0\u00e1\u0007"+
"\u0000\u0000\u00de\u001d\u0001\u0000\u0000\u0000\u00df\u00dd\u0001\u0000"+ "\u0002\u0000\u0000\u00e1!\u0001\u0000\u0000\u0000\u00e2\u00e3\u0005\u0016"+
"\u0000\u0000\u00e0\u00e1\u0007\u0001\u0000\u0000\u00e1\u001f\u0001\u0000"+ "\u0000\u0000\u00e3\u00e5\u0005\u0012\u0000\u0000\u00e4\u00e2\u0001\u0000"+
"\u0000\u0000\u00e2\u00e3\u0007\u0002\u0000\u0000\u00e3!\u0001\u0000\u0000"+ "\u0000\u0000\u00e4\u00e5\u0001\u0000\u0000\u0000\u00e5\u00eb\u0001\u0000"+
"\u0000\u00e4\u00e5\u0005\u0016\u0000\u0000\u00e5\u00e7\u0005\u0012\u0000"+ "\u0000\u0000\u00e6\u00e7\u0003(\u0014\u0000\u00e7\u00e8\u0005\u0012\u0000"+
"\u0000\u00e6\u00e4\u0001\u0000\u0000\u0000\u00e6\u00e7\u0001\u0000\u0000"+ "\u0000\u00e8\u00ea\u0001\u0000\u0000\u0000\u00e9\u00e6\u0001\u0000\u0000"+
"\u0000\u00e7\u00ed\u0001\u0000\u0000\u0000\u00e8\u00e9\u0003(\u0014\u0000"+ "\u0000\u00ea\u00ed\u0001\u0000\u0000\u0000\u00eb\u00e9\u0001\u0000\u0000"+
"\u00e9\u00ea\u0005\u0012\u0000\u0000\u00ea\u00ec\u0001\u0000\u0000\u0000"+ "\u0000\u00eb\u00ec\u0001\u0000\u0000\u0000\u00ec\u00ee\u0001\u0000\u0000"+
"\u00eb\u00e8\u0001\u0000\u0000\u0000\u00ec\u00ef\u0001\u0000\u0000\u0000"+ "\u0000\u00ed\u00eb\u0001\u0000\u0000\u0000\u00ee\u00ef\u00030\u0018\u0000"+
"\u00ed\u00eb\u0001\u0000\u0000\u0000\u00ed\u00ee\u0001\u0000\u0000\u0000"+ "\u00ef#\u0001\u0000\u0000\u0000\u00f0\u00f1\u0003\"\u0011\u0000\u00f1"+
"\u00ee\u00f0\u0001\u0000\u0000\u0000\u00ef\u00ed\u0001\u0000\u0000\u0000"+ "\u00f2\u0003\u0006\u0003\u0000\u00f2\u00f3\u0003\u001c\u000e\u0000\u00f3"+
"\u00f0\u00f1\u00030\u0018\u0000\u00f1#\u0001\u0000\u0000\u0000\u00f2\u00f3"+ "%\u0001\u0000\u0000\u0000\u00f4\u00f5\u0005\u0016\u0000\u0000\u00f5\u00f7"+
"\u0003\"\u0011\u0000\u00f3\u00f4\u0003\u0006\u0003\u0000\u00f4\u00f5\u0003"+ "\u0005\u0012\u0000\u0000\u00f6\u00f4\u0001\u0000\u0000\u0000\u00f6\u00f7"+
"\u001c\u000e\u0000\u00f5%\u0001\u0000\u0000\u0000\u00f6\u00f7\u0005\u0016"+ "\u0001\u0000\u0000\u0000\u00f7\u00fd\u0001\u0000\u0000\u0000\u00f8\u00f9"+
"\u0000\u0000\u00f7\u00f9\u0005\u0012\u0000\u0000\u00f8\u00f6\u0001\u0000"+ "\u0003(\u0014\u0000\u00f9\u00fa\u0005\u0012\u0000\u0000\u00fa\u00fc\u0001"+
"\u0000\u0000\u00f8\u00f9\u0001\u0000\u0000\u0000\u00f9\u00ff\u0001\u0000"+ "\u0000\u0000\u0000\u00fb\u00f8\u0001\u0000\u0000\u0000\u00fc\u00ff\u0001"+
"\u0000\u0000\u00fa\u00fb\u0003(\u0014\u0000\u00fb\u00fc\u0005\u0012\u0000"+ "\u0000\u0000\u0000\u00fd\u00fb\u0001\u0000\u0000\u0000\u00fd\u00fe\u0001"+
"\u0000\u00fc\u00fe\u0001\u0000\u0000\u0000\u00fd\u00fa\u0001\u0000\u0000"+ "\u0000\u0000\u0000\u00fe\u0100\u0001\u0000\u0000\u0000\u00ff\u00fd\u0001"+
"\u0000\u00fe\u0101\u0001\u0000\u0000\u0000\u00ff\u00fd\u0001\u0000\u0000"+ "\u0000\u0000\u0000\u0100\u0101\u0003*\u0015\u0000\u0101\'\u0001\u0000"+
"\u0000\u00ff\u0100\u0001\u0000\u0000\u0000\u0100\u0102\u0001\u0000\u0000"+ "\u0000\u0000\u0102\u0105\u0003*\u0015\u0000\u0103\u0105\u00030\u0018\u0000"+
"\u0000\u0101\u00ff\u0001\u0000\u0000\u0000\u0102\u0103\u0003*\u0015\u0000"+ "\u0104\u0102\u0001\u0000\u0000\u0000\u0104\u0103\u0001\u0000\u0000\u0000"+
"\u0103\'\u0001\u0000\u0000\u0000\u0104\u0107\u0003*\u0015\u0000\u0105"+ "\u0105)\u0001\u0000\u0000\u0000\u0106\u0107\u00030\u0018\u0000\u0107\u0109"+
"\u0107\u00030\u0018\u0000\u0106\u0104\u0001\u0000\u0000\u0000\u0106\u0105"+ "\u0005\u0005\u0000\u0000\u0108\u010a\u0003,\u0016\u0000\u0109\u0108\u0001"+
"\u0001\u0000\u0000\u0000\u0107)\u0001\u0000\u0000\u0000\u0108\u0109\u0003"+ "\u0000\u0000\u0000\u0109\u010a\u0001\u0000\u0000\u0000\u010a\u010b\u0001"+
"0\u0018\u0000\u0109\u010b\u0005\u0005\u0000\u0000\u010a\u010c\u0003,\u0016"+ "\u0000\u0000\u0000\u010b\u010c\u0005\u0006\u0000\u0000\u010c+\u0001\u0000"+
"\u0000\u010b\u010a\u0001\u0000\u0000\u0000\u010b\u010c\u0001\u0000\u0000"+ "\u0000\u0000\u010d\u0112\u0003\u001c\u000e\u0000\u010e\u010f\u0005\n\u0000"+
"\u0000\u010c\u010d\u0001\u0000\u0000\u0000\u010d\u010e\u0005\u0006\u0000"+ "\u0000\u010f\u0111\u0003\u001c\u000e\u0000\u0110\u010e\u0001\u0000\u0000"+
"\u0000\u010e+\u0001\u0000\u0000\u0000\u010f\u0114\u0003\u001c\u000e\u0000"+ "\u0000\u0111\u0114\u0001\u0000\u0000\u0000\u0112\u0110\u0001\u0000\u0000"+
"\u0110\u0111\u0005\n\u0000\u0000\u0111\u0113\u0003\u001c\u000e\u0000\u0112"+ "\u0000\u0112\u0113\u0001\u0000\u0000\u0000\u0113-\u0001\u0000\u0000\u0000"+
"\u0110\u0001\u0000\u0000\u0000\u0113\u0116\u0001\u0000\u0000\u0000\u0114"+ "\u0114\u0112\u0001\u0000\u0000\u0000\u0115\u0116\u0007\u0003\u0000\u0000"+
"\u0112\u0001\u0000\u0000\u0000\u0114\u0115\u0001\u0000\u0000\u0000\u0115"+ "\u0116/\u0001\u0000\u0000\u0000\u0117\u0118\u0005-\u0000\u0000\u01181"+
"-\u0001\u0000\u0000\u0000\u0116\u0114\u0001\u0000\u0000\u0000\u0117\u0118"+ "\u0001\u0000\u0000\u0000\u00197<>DRX_q{\u0084\u0086\u0092\u00ab\u00bb"+
"\u0007\u0003\u0000\u0000\u0118/\u0001\u0000\u0000\u0000\u0119\u011a\u0005"+ "\u00c2\u00c6\u00d3\u00db\u00e4\u00eb\u00f6\u00fd\u0104\u0109\u0112";
"-\u0000\u0000\u011a1\u0001\u0000\u0000\u0000\u00197<>DRX_q{\u0084\u0086"+
"\u0092\u00ab\u00bb\u00c2\u00c6\u00d5\u00dd\u00e6\u00ed\u00f8\u00ff\u0106"+
"\u010b\u0114";
public static final ATN _ATN = public static final ATN _ATN =
new ATNDeserializer().deserialize(_serializedATN.toCharArray()); new ATNDeserializer().deserialize(_serializedATN.toCharArray());
static { static {

View File

@ -159,13 +159,6 @@ public interface DecafVisitor<T> extends ParseTreeVisitor<T> {
* @return the visitor result * @return the visitor result
*/ */
T visitNew(DecafParser.NewContext ctx); T visitNew(DecafParser.NewContext ctx);
/**
* Visit a parse tree produced by the {@code Null}
* labeled alternative in {@link DecafParser#expr}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitNull(DecafParser.NullContext ctx);
/** /**
* Visit a parse tree produced by the {@code UnaryOperation} * Visit a parse tree produced by the {@code UnaryOperation}
* labeled alternative in {@link DecafParser#expr}. * labeled alternative in {@link DecafParser#expr}.
@ -201,13 +194,6 @@ public interface DecafVisitor<T> extends ParseTreeVisitor<T> {
* @return the visitor result * @return the visitor result
*/ */
T visitBinaryOperation(DecafParser.BinaryOperationContext ctx); T visitBinaryOperation(DecafParser.BinaryOperationContext ctx);
/**
* Visit a parse tree produced by the {@code This}
* labeled alternative in {@link DecafParser#expr}.
* @param ctx the parse tree
* @return the visitor result
*/
T visitThis(DecafParser.ThisContext ctx);
/** /**
* Visit a parse tree produced by the {@code StatementExpressionexpr} * Visit a parse tree produced by the {@code StatementExpressionexpr}
* labeled alternative in {@link DecafParser#expr}. * labeled alternative in {@link DecafParser#expr}.

View File

@ -1,5 +1,5 @@
package de.maishai.ast.records; package de.maishai.ast.records;
public sealed interface Expression extends Node permits Binary, BoolLiteral, CharLiteral, FieldVarAccess, IntLiteral, MethodCall, New, Null, This, Unary { public sealed interface Expression extends Node permits Binary, BoolLiteral, CharLiteral, FieldVarAccess, IntLiteral, MethodCall, New, Unary {
} }

View File

@ -1,5 +0,0 @@
package de.maishai.ast.records;
public record Null() implements Expression {
}

View File

@ -1,5 +0,0 @@
package de.maishai.ast.records;
public record This() implements Expression {
}