diff --git a/src/main/java/dk/camelot64/kickc/parser/KickC.g4 b/src/main/java/dk/camelot64/kickc/parser/KickC.g4 index 66bb87a08..a46986689 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickC.g4 +++ b/src/main/java/dk/camelot64/kickc/parser/KickC.g4 @@ -50,7 +50,8 @@ declVariableList ; declVariableInit - : NAME ('=' expr)? + : NAME ('=' expr)? #declVariableInitExpr + | NAME ('=' declKasm)? #declVariableInitKasm ; declFunction diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCBaseListener.java b/src/main/java/dk/camelot64/kickc/parser/KickCBaseListener.java index dba1fbe4d..cb8a11fa9 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCBaseListener.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCBaseListener.java @@ -1,4 +1,4 @@ -// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickC.g4 by ANTLR 4.7 +// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickC.g4 by ANTLR 4.7 package dk.camelot64.kickc.parser; import org.antlr.v4.runtime.ParserRuleContext; @@ -136,13 +136,25 @@ public class KickCBaseListener implements KickCListener { * *

The default implementation does nothing.

*/ - @Override public void enterDeclVariableInit(KickCParser.DeclVariableInitContext ctx) { } + @Override public void enterDeclVariableInitExpr(KickCParser.DeclVariableInitExprContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitDeclVariableInit(KickCParser.DeclVariableInitContext ctx) { } + @Override public void exitDeclVariableInitExpr(KickCParser.DeclVariableInitExprContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterDeclVariableInitKasm(KickCParser.DeclVariableInitKasmContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitDeclVariableInitKasm(KickCParser.DeclVariableInitKasmContext ctx) { } /** * {@inheritDoc} * diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCBaseVisitor.java b/src/main/java/dk/camelot64/kickc/parser/KickCBaseVisitor.java index e90e3931c..dba09d73e 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCBaseVisitor.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCBaseVisitor.java @@ -1,4 +1,4 @@ -// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickC.g4 by ANTLR 4.7 +// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickC.g4 by ANTLR 4.7 package dk.camelot64.kickc.parser; import org.antlr.v4.runtime.tree.AbstractParseTreeVisitor; @@ -87,7 +87,14 @@ public class KickCBaseVisitor extends AbstractParseTreeVisitor implements *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitDeclVariableInit(KickCParser.DeclVariableInitContext ctx) { return visitChildren(ctx); } + @Override public T visitDeclVariableInitExpr(KickCParser.DeclVariableInitExprContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitDeclVariableInitKasm(KickCParser.DeclVariableInitKasmContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java index e55e95dab..7f417031e 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java @@ -1,4 +1,4 @@ -// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickC.g4 by ANTLR 4.7 +// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickC.g4 by ANTLR 4.7 package dk.camelot64.kickc.parser; import org.antlr.v4.runtime.Lexer; import org.antlr.v4.runtime.CharStream; diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCListener.java b/src/main/java/dk/camelot64/kickc/parser/KickCListener.java index 0406cbc44..ea1a1dbd9 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCListener.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCListener.java @@ -1,4 +1,4 @@ -// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickC.g4 by ANTLR 4.7 +// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickC.g4 by ANTLR 4.7 package dk.camelot64.kickc.parser; import org.antlr.v4.runtime.tree.ParseTreeListener; @@ -108,15 +108,29 @@ public interface KickCListener extends ParseTreeListener { */ void exitDeclVariableList(KickCParser.DeclVariableListContext ctx); /** - * Enter a parse tree produced by {@link KickCParser#declVariableInit}. + * Enter a parse tree produced by the {@code declVariableInitExpr} + * labeled alternative in {@link KickCParser#declVariableInit}. * @param ctx the parse tree */ - void enterDeclVariableInit(KickCParser.DeclVariableInitContext ctx); + void enterDeclVariableInitExpr(KickCParser.DeclVariableInitExprContext ctx); /** - * Exit a parse tree produced by {@link KickCParser#declVariableInit}. + * Exit a parse tree produced by the {@code declVariableInitExpr} + * labeled alternative in {@link KickCParser#declVariableInit}. * @param ctx the parse tree */ - void exitDeclVariableInit(KickCParser.DeclVariableInitContext ctx); + void exitDeclVariableInitExpr(KickCParser.DeclVariableInitExprContext ctx); + /** + * Enter a parse tree produced by the {@code declVariableInitKasm} + * labeled alternative in {@link KickCParser#declVariableInit}. + * @param ctx the parse tree + */ + void enterDeclVariableInitKasm(KickCParser.DeclVariableInitKasmContext ctx); + /** + * Exit a parse tree produced by the {@code declVariableInitKasm} + * labeled alternative in {@link KickCParser#declVariableInit}. + * @param ctx the parse tree + */ + void exitDeclVariableInitKasm(KickCParser.DeclVariableInitKasmContext ctx); /** * Enter a parse tree produced by {@link KickCParser#declFunction}. * @param ctx the parse tree diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.java b/src/main/java/dk/camelot64/kickc/parser/KickCParser.java index 15c582ee0..47e6b30ac 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.java @@ -1,4 +1,4 @@ -// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickC.g4 by ANTLR 4.7 +// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickC.g4 by ANTLR 4.7 package dk.camelot64.kickc.parser; import org.antlr.v4.runtime.atn.*; import org.antlr.v4.runtime.dfa.DFA; @@ -776,25 +776,53 @@ public class KickCParser extends Parser { } public static class DeclVariableInitContext extends ParserRuleContext { - public TerminalNode NAME() { return getToken(KickCParser.NAME, 0); } - public ExprContext expr() { - return getRuleContext(ExprContext.class,0); - } public DeclVariableInitContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } @Override public int getRuleIndex() { return RULE_declVariableInit; } + + public DeclVariableInitContext() { } + public void copyFrom(DeclVariableInitContext ctx) { + super.copyFrom(ctx); + } + } + public static class DeclVariableInitKasmContext extends DeclVariableInitContext { + public TerminalNode NAME() { return getToken(KickCParser.NAME, 0); } + public DeclKasmContext declKasm() { + return getRuleContext(DeclKasmContext.class,0); + } + public DeclVariableInitKasmContext(DeclVariableInitContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof KickCListener ) ((KickCListener)listener).enterDeclVariableInit(this); + if ( listener instanceof KickCListener ) ((KickCListener)listener).enterDeclVariableInitKasm(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof KickCListener ) ((KickCListener)listener).exitDeclVariableInit(this); + if ( listener instanceof KickCListener ) ((KickCListener)listener).exitDeclVariableInitKasm(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof KickCVisitor ) return ((KickCVisitor)visitor).visitDeclVariableInit(this); + if ( visitor instanceof KickCVisitor ) return ((KickCVisitor)visitor).visitDeclVariableInitKasm(this); + else return visitor.visitChildren(this); + } + } + public static class DeclVariableInitExprContext extends DeclVariableInitContext { + public TerminalNode NAME() { return getToken(KickCParser.NAME, 0); } + public ExprContext expr() { + return getRuleContext(ExprContext.class,0); + } + public DeclVariableInitExprContext(DeclVariableInitContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof KickCListener ) ((KickCListener)listener).enterDeclVariableInitExpr(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof KickCListener ) ((KickCListener)listener).exitDeclVariableInitExpr(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof KickCVisitor ) return ((KickCVisitor)visitor).visitDeclVariableInitExpr(this); else return visitor.visitChildren(this); } } @@ -803,22 +831,49 @@ public class KickCParser extends Parser { DeclVariableInitContext _localctx = new DeclVariableInitContext(_ctx, getState()); enterRule(_localctx, 20, RULE_declVariableInit); try { - enterOuterAlt(_localctx, 1); - { - setState(153); - match(NAME); - setState(156); + setState(163); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,6,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,8,_ctx) ) { case 1: + _localctx = new DeclVariableInitExprContext(_localctx); + enterOuterAlt(_localctx, 1); { - setState(154); - match(T__4); - setState(155); - expr(0); + setState(153); + match(NAME); + setState(156); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,6,_ctx) ) { + case 1: + { + setState(154); + match(T__4); + setState(155); + expr(0); + } + break; + } + } + break; + case 2: + _localctx = new DeclVariableInitKasmContext(_localctx); + enterOuterAlt(_localctx, 2); + { + setState(158); + match(NAME); + setState(161); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,7,_ctx) ) { + case 1: + { + setState(159); + match(T__4); + setState(160); + declKasm(); + } + break; + } } break; - } } } catch (RecognitionException re) { @@ -869,37 +924,37 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(158); + setState(165); declTypes(); - setState(159); + setState(166); match(NAME); - setState(160); + setState(167); match(T__5); - setState(162); + setState(169); _errHandler.sync(this); _la = _input.LA(1); if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__31) | (1L << T__32) | (1L << T__36) | (1L << T__37))) != 0) || _la==SIMPLETYPE || _la==NAME) { { - setState(161); + setState(168); parameterListDecl(); } } - setState(164); + setState(171); match(T__6); - setState(165); + setState(172); match(T__7); - setState(167); + setState(174); _errHandler.sync(this); _la = _input.LA(1); if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20) | (1L << T__22) | (1L << T__23) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__31) | (1L << T__32) | (1L << T__33) | (1L << T__36) | (1L << T__37) | (1L << T__40) | (1L << T__41) | (1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__47) | (1L << T__48) | (1L << T__53) | (1L << T__54))) != 0) || ((((_la - 75)) & ~0x3f) == 0 && ((1L << (_la - 75)) & ((1L << (T__74 - 75)) | (1L << (SIMPLETYPE - 75)) | (1L << (STRING - 75)) | (1L << (CHAR - 75)) | (1L << (BOOLEAN - 75)) | (1L << (NUMBER - 75)) | (1L << (NAME - 75)))) != 0)) { { - setState(166); + setState(173); stmtSeq(); } } - setState(169); + setState(176); match(T__8); } } @@ -947,21 +1002,21 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(171); + setState(178); parameterDecl(); - setState(176); + setState(183); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__3) { { { - setState(172); + setState(179); match(T__3); - setState(173); + setState(180); parameterDecl(); } } - setState(178); + setState(185); _errHandler.sync(this); _la = _input.LA(1); } @@ -1031,16 +1086,16 @@ public class KickCParser extends Parser { ParameterDeclContext _localctx = new ParameterDeclContext(_ctx, getState()); enterRule(_localctx, 26, RULE_parameterDecl); try { - setState(183); + setState(190); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,10,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,12,_ctx) ) { case 1: _localctx = new ParameterDeclTypeContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(179); + setState(186); declTypes(); - setState(180); + setState(187); match(NAME); } break; @@ -1048,7 +1103,7 @@ public class KickCParser extends Parser { _localctx = new ParameterDeclVoidContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(182); + setState(189); match(SIMPLETYPE); } break; @@ -1134,16 +1189,16 @@ public class KickCParser extends Parser { GlobalDirectiveContext _localctx = new GlobalDirectiveContext(_ctx, getState()); enterRule(_localctx, 28, RULE_globalDirective); try { - setState(197); + setState(204); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,11,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,13,_ctx) ) { case 1: _localctx = new GlobalDirectiveReserveContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(185); + setState(192); match(T__9); - setState(186); + setState(193); directiveReserve(); } break; @@ -1151,15 +1206,15 @@ public class KickCParser extends Parser { _localctx = new GlobalDirectivePcContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(187); + setState(194); match(T__9); - setState(188); + setState(195); match(T__10); - setState(189); + setState(196); match(T__5); - setState(190); + setState(197); match(NUMBER); - setState(191); + setState(198); match(T__6); } break; @@ -1167,15 +1222,15 @@ public class KickCParser extends Parser { _localctx = new GlobalDirectiveEncodingContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(192); + setState(199); match(T__9); - setState(193); + setState(200); match(T__11); - setState(194); + setState(201); match(T__5); - setState(195); + setState(202); match(NAME); - setState(196); + setState(203); match(T__6); } break; @@ -1342,14 +1397,14 @@ public class KickCParser extends Parser { DirectiveContext _localctx = new DirectiveContext(_ctx, getState()); enterRule(_localctx, 30, RULE_directive); try { - setState(218); + setState(225); _errHandler.sync(this); switch (_input.LA(1)) { case T__12: _localctx = new DirectiveConstContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(199); + setState(206); match(T__12); } break; @@ -1357,7 +1412,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveExternContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(200); + setState(207); match(T__13); } break; @@ -1365,13 +1420,13 @@ public class KickCParser extends Parser { _localctx = new DirectiveAlignContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(201); + setState(208); match(T__14); - setState(202); + setState(209); match(T__5); - setState(203); + setState(210); match(NUMBER); - setState(204); + setState(211); match(T__6); } break; @@ -1379,13 +1434,13 @@ public class KickCParser extends Parser { _localctx = new DirectiveRegisterContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(205); + setState(212); match(T__15); - setState(206); + setState(213); match(T__5); - setState(207); + setState(214); match(NAME); - setState(208); + setState(215); match(T__6); } break; @@ -1393,7 +1448,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveInlineContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(209); + setState(216); match(T__16); } break; @@ -1401,7 +1456,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveVolatileContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(210); + setState(217); match(T__17); } break; @@ -1409,18 +1464,18 @@ public class KickCParser extends Parser { _localctx = new DirectiveInterruptContext(_localctx); enterOuterAlt(_localctx, 7); { - setState(211); + setState(218); match(T__18); - setState(215); + setState(222); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,12,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,14,_ctx) ) { case 1: { - setState(212); + setState(219); match(T__5); - setState(213); + setState(220); match(NAME); - setState(214); + setState(221); match(T__6); } break; @@ -1431,7 +1486,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveReserveZpContext(_localctx); enterOuterAlt(_localctx, 8); { - setState(217); + setState(224); directiveReserve(); } break; @@ -1481,29 +1536,29 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(220); - match(T__19); - setState(221); - match(T__5); - setState(222); - match(NUMBER); setState(227); + match(T__19); + setState(228); + match(T__5); + setState(229); + match(NUMBER); + setState(234); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__3) { { { - setState(223); + setState(230); match(T__3); - setState(224); + setState(231); match(NUMBER); } } - setState(229); + setState(236); _errHandler.sync(this); _la = _input.LA(1); } - setState(230); + setState(237); match(T__6); } } @@ -1551,17 +1606,17 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(233); + setState(240); _errHandler.sync(this); _la = _input.LA(1); do { { { - setState(232); + setState(239); stmt(); } } - setState(235); + setState(242); _errHandler.sync(this); _la = _input.LA(1); } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20) | (1L << T__22) | (1L << T__23) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__31) | (1L << T__32) | (1L << T__33) | (1L << T__36) | (1L << T__37) | (1L << T__40) | (1L << T__41) | (1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__47) | (1L << T__48) | (1L << T__53) | (1L << T__54))) != 0) || ((((_la - 75)) & ~0x3f) == 0 && ((1L << (_la - 75)) & ((1L << (T__74 - 75)) | (1L << (SIMPLETYPE - 75)) | (1L << (STRING - 75)) | (1L << (CHAR - 75)) | (1L << (BOOLEAN - 75)) | (1L << (NUMBER - 75)) | (1L << (NAME - 75)))) != 0) ); @@ -1853,16 +1908,16 @@ public class KickCParser extends Parser { enterRule(_localctx, 36, RULE_stmt); int _la; try { - setState(313); + setState(320); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,23,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,25,_ctx) ) { case 1: _localctx = new StmtDeclVarContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(237); + setState(244); declVariables(); - setState(238); + setState(245); match(T__1); } break; @@ -1870,19 +1925,19 @@ public class KickCParser extends Parser { _localctx = new StmtBlockContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(240); + setState(247); match(T__7); - setState(242); + setState(249); _errHandler.sync(this); _la = _input.LA(1); if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__20) | (1L << T__22) | (1L << T__23) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__31) | (1L << T__32) | (1L << T__33) | (1L << T__36) | (1L << T__37) | (1L << T__40) | (1L << T__41) | (1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__47) | (1L << T__48) | (1L << T__53) | (1L << T__54))) != 0) || ((((_la - 75)) & ~0x3f) == 0 && ((1L << (_la - 75)) & ((1L << (T__74 - 75)) | (1L << (SIMPLETYPE - 75)) | (1L << (STRING - 75)) | (1L << (CHAR - 75)) | (1L << (BOOLEAN - 75)) | (1L << (NUMBER - 75)) | (1L << (NAME - 75)))) != 0)) { { - setState(241); + setState(248); stmtSeq(); } } - setState(244); + setState(251); match(T__8); } break; @@ -1890,9 +1945,9 @@ public class KickCParser extends Parser { _localctx = new StmtExprContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(245); + setState(252); commaExpr(0); - setState(246); + setState(253); match(T__1); } break; @@ -1900,24 +1955,24 @@ public class KickCParser extends Parser { _localctx = new StmtIfElseContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(248); - match(T__20); - setState(249); - match(T__5); - setState(250); - commaExpr(0); - setState(251); - match(T__6); - setState(252); - stmt(); setState(255); + match(T__20); + setState(256); + match(T__5); + setState(257); + commaExpr(0); + setState(258); + match(T__6); + setState(259); + stmt(); + setState(262); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,17,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,19,_ctx) ) { case 1: { - setState(253); + setState(260); match(T__21); - setState(254); + setState(261); stmt(); } break; @@ -1928,29 +1983,29 @@ public class KickCParser extends Parser { _localctx = new StmtWhileContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(260); + setState(267); _errHandler.sync(this); _la = _input.LA(1); while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19))) != 0)) { { { - setState(257); + setState(264); directive(); } } - setState(262); + setState(269); _errHandler.sync(this); _la = _input.LA(1); } - setState(263); + setState(270); match(T__22); - setState(264); + setState(271); match(T__5); - setState(265); + setState(272); commaExpr(0); - setState(266); + setState(273); match(T__6); - setState(267); + setState(274); stmt(); } break; @@ -1958,33 +2013,33 @@ public class KickCParser extends Parser { _localctx = new StmtDoWhileContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(272); + setState(279); _errHandler.sync(this); _la = _input.LA(1); while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19))) != 0)) { { { - setState(269); + setState(276); directive(); } } - setState(274); + setState(281); _errHandler.sync(this); _la = _input.LA(1); } - setState(275); + setState(282); match(T__23); - setState(276); + setState(283); stmt(); - setState(277); + setState(284); match(T__22); - setState(278); + setState(285); match(T__5); - setState(279); + setState(286); commaExpr(0); - setState(280); + setState(287); match(T__6); - setState(281); + setState(288); match(T__1); } break; @@ -1992,29 +2047,29 @@ public class KickCParser extends Parser { _localctx = new StmtForContext(_localctx); enterOuterAlt(_localctx, 7); { - setState(286); + setState(293); _errHandler.sync(this); _la = _input.LA(1); while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19))) != 0)) { { { - setState(283); + setState(290); directive(); } } - setState(288); + setState(295); _errHandler.sync(this); _la = _input.LA(1); } - setState(289); + setState(296); match(T__24); - setState(290); + setState(297); match(T__5); - setState(291); + setState(298); forLoop(); - setState(292); + setState(299); match(T__6); - setState(293); + setState(300); stmt(); } break; @@ -2022,19 +2077,19 @@ public class KickCParser extends Parser { _localctx = new StmtReturnContext(_localctx); enterOuterAlt(_localctx, 8); { - setState(295); + setState(302); match(T__25); - setState(297); + setState(304); _errHandler.sync(this); _la = _input.LA(1); if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__33) | (1L << T__40) | (1L << T__41) | (1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__47) | (1L << T__48) | (1L << T__53) | (1L << T__54))) != 0) || ((((_la - 85)) & ~0x3f) == 0 && ((1L << (_la - 85)) & ((1L << (STRING - 85)) | (1L << (CHAR - 85)) | (1L << (BOOLEAN - 85)) | (1L << (NUMBER - 85)) | (1L << (NAME - 85)))) != 0)) { { - setState(296); + setState(303); commaExpr(0); } } - setState(299); + setState(306); match(T__1); } break; @@ -2042,9 +2097,9 @@ public class KickCParser extends Parser { _localctx = new StmtBreakContext(_localctx); enterOuterAlt(_localctx, 9); { - setState(300); + setState(307); match(T__26); - setState(301); + setState(308); match(T__1); } break; @@ -2052,9 +2107,9 @@ public class KickCParser extends Parser { _localctx = new StmtContinueContext(_localctx); enterOuterAlt(_localctx, 10); { - setState(302); + setState(309); match(T__27); - setState(303); + setState(310); match(T__1); } break; @@ -2062,23 +2117,23 @@ public class KickCParser extends Parser { _localctx = new StmtAsmContext(_localctx); enterOuterAlt(_localctx, 11); { - setState(304); + setState(311); match(T__28); - setState(306); + setState(313); _errHandler.sync(this); _la = _input.LA(1); if (_la==T__5) { { - setState(305); + setState(312); asmDirectives(); } } - setState(308); + setState(315); match(T__7); - setState(309); + setState(316); asmLines(); - setState(310); + setState(317); match(T__8); } break; @@ -2086,7 +2141,7 @@ public class KickCParser extends Parser { _localctx = new StmtDeclKasmContext(_localctx); enterOuterAlt(_localctx, 12); { - setState(312); + setState(319); declKasm(); } break; @@ -2171,27 +2226,27 @@ public class KickCParser extends Parser { enterRule(_localctx, 38, RULE_forLoop); int _la; try { - setState(331); + setState(338); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,26,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,28,_ctx) ) { case 1: _localctx = new ForClassicContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(315); + setState(322); forClassicInit(); - setState(316); + setState(323); match(T__1); - setState(317); + setState(324); commaExpr(0); - setState(318); + setState(325); match(T__1); - setState(320); + setState(327); _errHandler.sync(this); _la = _input.LA(1); if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__33) | (1L << T__40) | (1L << T__41) | (1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__47) | (1L << T__48) | (1L << T__53) | (1L << T__54))) != 0) || ((((_la - 85)) & ~0x3f) == 0 && ((1L << (_la - 85)) & ((1L << (STRING - 85)) | (1L << (CHAR - 85)) | (1L << (BOOLEAN - 85)) | (1L << (NUMBER - 85)) | (1L << (NAME - 85)))) != 0)) { { - setState(319); + setState(326); commaExpr(0); } } @@ -2202,27 +2257,27 @@ public class KickCParser extends Parser { _localctx = new ForRangeContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(323); + setState(330); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,25,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,27,_ctx) ) { case 1: { - setState(322); + setState(329); declTypes(); } break; } - setState(325); + setState(332); match(NAME); - setState(326); + setState(333); match(T__29); - setState(327); + setState(334); expr(0); { - setState(328); + setState(335); match(T__30); } - setState(329); + setState(336); expr(0); } break; @@ -2294,19 +2349,19 @@ public class KickCParser extends Parser { enterRule(_localctx, 40, RULE_forClassicInit); int _la; try { - setState(337); + setState(344); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,28,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,30,_ctx) ) { case 1: _localctx = new ForClassicInitDeclContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(334); + setState(341); _errHandler.sync(this); _la = _input.LA(1); if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__31) | (1L << T__32) | (1L << T__36) | (1L << T__37))) != 0) || _la==SIMPLETYPE || _la==NAME) { { - setState(333); + setState(340); declVariables(); } } @@ -2317,7 +2372,7 @@ public class KickCParser extends Parser { _localctx = new ForClassicInitExprContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(336); + setState(343); commaExpr(0); } break; @@ -2568,20 +2623,20 @@ public class KickCParser extends Parser { int _alt; enterOuterAlt(_localctx, 1); { - setState(354); + setState(361); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,30,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,32,_ctx) ) { case 1: { _localctx = new TypeParContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(340); + setState(347); match(T__5); - setState(341); + setState(348); typeDecl(0); - setState(342); + setState(349); match(T__6); } break; @@ -2590,7 +2645,7 @@ public class KickCParser extends Parser { _localctx = new TypeSimpleContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(344); + setState(351); match(SIMPLETYPE); } break; @@ -2599,7 +2654,7 @@ public class KickCParser extends Parser { _localctx = new TypeSignedSimpleContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(345); + setState(352); _la = _input.LA(1); if ( !(_la==T__31 || _la==T__32) ) { _errHandler.recoverInline(this); @@ -2609,12 +2664,12 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(347); + setState(354); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,29,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,31,_ctx) ) { case 1: { - setState(346); + setState(353); match(SIMPLETYPE); } break; @@ -2626,7 +2681,7 @@ public class KickCParser extends Parser { _localctx = new TypeStructDefContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(349); + setState(356); structDef(); } break; @@ -2635,7 +2690,7 @@ public class KickCParser extends Parser { _localctx = new TypeStructRefContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(350); + setState(357); structRef(); } break; @@ -2644,7 +2699,7 @@ public class KickCParser extends Parser { _localctx = new TypeEnumDefContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(351); + setState(358); enumDef(); } break; @@ -2653,7 +2708,7 @@ public class KickCParser extends Parser { _localctx = new TypeEnumRefContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(352); + setState(359); enumRef(); } break; @@ -2662,30 +2717,30 @@ public class KickCParser extends Parser { _localctx = new TypeNamedRefContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(353); + setState(360); match(NAME); } break; } _ctx.stop = _input.LT(-1); - setState(369); + setState(376); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,33,_ctx); + _alt = getInterpreter().adaptivePredict(_input,35,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(367); + setState(374); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,32,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,34,_ctx) ) { case 1: { _localctx = new TypePtrContext(new TypeDeclContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_typeDecl); - setState(356); + setState(363); if (!(precpred(_ctx, 8))) throw new FailedPredicateException(this, "precpred(_ctx, 8)"); - setState(357); + setState(364); match(T__33); } break; @@ -2693,21 +2748,21 @@ public class KickCParser extends Parser { { _localctx = new TypeArrayContext(new TypeDeclContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_typeDecl); - setState(358); + setState(365); if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)"); - setState(359); + setState(366); match(T__34); - setState(361); + setState(368); _errHandler.sync(this); _la = _input.LA(1); if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__33) | (1L << T__40) | (1L << T__41) | (1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__47) | (1L << T__48) | (1L << T__53) | (1L << T__54))) != 0) || ((((_la - 85)) & ~0x3f) == 0 && ((1L << (_la - 85)) & ((1L << (STRING - 85)) | (1L << (CHAR - 85)) | (1L << (BOOLEAN - 85)) | (1L << (NUMBER - 85)) | (1L << (NAME - 85)))) != 0)) { { - setState(360); + setState(367); expr(0); } } - setState(363); + setState(370); match(T__35); } break; @@ -2715,20 +2770,20 @@ public class KickCParser extends Parser { { _localctx = new TypeProcedureContext(new TypeDeclContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_typeDecl); - setState(364); + setState(371); if (!(precpred(_ctx, 6))) throw new FailedPredicateException(this, "precpred(_ctx, 6)"); - setState(365); + setState(372); match(T__5); - setState(366); + setState(373); match(T__6); } break; } } } - setState(371); + setState(378); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,33,_ctx); + _alt = getInterpreter().adaptivePredict(_input,35,_ctx); } } } @@ -2770,9 +2825,9 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(372); + setState(379); match(T__36); - setState(373); + setState(380); match(NAME); } } @@ -2821,35 +2876,35 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(375); + setState(382); match(T__36); - setState(377); + setState(384); _errHandler.sync(this); _la = _input.LA(1); if (_la==NAME) { { - setState(376); + setState(383); match(NAME); } } - setState(379); + setState(386); match(T__7); - setState(381); + setState(388); _errHandler.sync(this); _la = _input.LA(1); do { { { - setState(380); + setState(387); structMembers(); } } - setState(383); + setState(390); _errHandler.sync(this); _la = _input.LA(1); } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__12) | (1L << T__13) | (1L << T__14) | (1L << T__15) | (1L << T__16) | (1L << T__17) | (1L << T__18) | (1L << T__19) | (1L << T__31) | (1L << T__32) | (1L << T__36) | (1L << T__37))) != 0) || _la==SIMPLETYPE || _la==NAME ); - setState(385); + setState(392); match(T__8); } } @@ -2893,9 +2948,9 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(387); + setState(394); declVariables(); - setState(388); + setState(395); match(T__1); } } @@ -2937,9 +2992,9 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(390); + setState(397); match(T__37); - setState(391); + setState(398); match(NAME); } } @@ -2985,23 +3040,23 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(393); + setState(400); match(T__37); - setState(395); + setState(402); _errHandler.sync(this); _la = _input.LA(1); if (_la==NAME) { { - setState(394); + setState(401); match(NAME); } } - setState(397); + setState(404); match(T__7); - setState(398); + setState(405); enumMemberList(0); - setState(399); + setState(406); match(T__8); } } @@ -3058,13 +3113,13 @@ public class KickCParser extends Parser { enterOuterAlt(_localctx, 1); { { - setState(402); + setState(409); enumMember(); } _ctx.stop = _input.LT(-1); - setState(409); + setState(416); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,37,_ctx); + _alt = getInterpreter().adaptivePredict(_input,39,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); @@ -3073,18 +3128,18 @@ public class KickCParser extends Parser { { _localctx = new EnumMemberListContext(_parentctx, _parentState); pushNewRecursionContext(_localctx, _startState, RULE_enumMemberList); - setState(404); + setState(411); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(405); + setState(412); match(T__3); - setState(406); + setState(413); enumMember(); } } } - setState(411); + setState(418); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,37,_ctx); + _alt = getInterpreter().adaptivePredict(_input,39,_ctx); } } } @@ -3129,16 +3184,16 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(412); + setState(419); match(NAME); - setState(415); + setState(422); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,40,_ctx) ) { case 1: { - setState(413); + setState(420); match(T__4); - setState(414); + setState(421); expr(0); } break; @@ -3229,13 +3284,13 @@ public class KickCParser extends Parser { _ctx = _localctx; _prevctx = _localctx; - setState(418); + setState(425); expr(0); } _ctx.stop = _input.LT(-1); - setState(425); + setState(432); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,39,_ctx); + _alt = getInterpreter().adaptivePredict(_input,41,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); @@ -3244,18 +3299,18 @@ public class KickCParser extends Parser { { _localctx = new CommaSimpleContext(new CommaExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_commaExpr); - setState(420); + setState(427); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(421); + setState(428); match(T__3); - setState(422); + setState(429); expr(0); } } } - setState(427); + setState(434); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,39,_ctx); + _alt = getInterpreter().adaptivePredict(_input,41,_ctx); } } } @@ -3741,20 +3796,20 @@ public class KickCParser extends Parser { int _alt; enterOuterAlt(_localctx, 1); { - setState(482); + setState(489); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,44,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,46,_ctx) ) { case 1: { _localctx = new ExprParContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(429); + setState(436); match(T__5); - setState(430); + setState(437); commaExpr(0); - setState(431); + setState(438); match(T__6); } break; @@ -3763,27 +3818,27 @@ public class KickCParser extends Parser { _localctx = new ExprSizeOfContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(433); + setState(440); match(T__40); - setState(434); + setState(441); match(T__5); - setState(437); + setState(444); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,40,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,42,_ctx) ) { case 1: { - setState(435); + setState(442); expr(0); } break; case 2: { - setState(436); + setState(443); typeDecl(0); } break; } - setState(439); + setState(446); match(T__6); } break; @@ -3792,27 +3847,27 @@ public class KickCParser extends Parser { _localctx = new ExprTypeIdContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(441); + setState(448); match(T__41); - setState(442); + setState(449); match(T__5); - setState(445); + setState(452); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,41,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,43,_ctx) ) { case 1: { - setState(443); + setState(450); expr(0); } break; case 2: { - setState(444); + setState(451); typeDecl(0); } break; } - setState(447); + setState(454); match(T__6); } break; @@ -3821,13 +3876,13 @@ public class KickCParser extends Parser { _localctx = new ExprCastContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(449); + setState(456); match(T__5); - setState(450); + setState(457); typeDecl(0); - setState(451); + setState(458); match(T__6); - setState(452); + setState(459); expr(24); } break; @@ -3836,7 +3891,7 @@ public class KickCParser extends Parser { _localctx = new ExprPreModContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(454); + setState(461); _la = _input.LA(1); if ( !(_la==T__42 || _la==T__43) ) { _errHandler.recoverInline(this); @@ -3846,7 +3901,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(455); + setState(462); expr(23); } break; @@ -3855,9 +3910,9 @@ public class KickCParser extends Parser { _localctx = new ExprPtrContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(456); + setState(463); match(T__33); - setState(457); + setState(464); expr(21); } break; @@ -3866,7 +3921,7 @@ public class KickCParser extends Parser { _localctx = new ExprUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(458); + setState(465); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__47) | (1L << T__48))) != 0)) ) { _errHandler.recoverInline(this); @@ -3876,7 +3931,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(459); + setState(466); expr(20); } break; @@ -3885,7 +3940,7 @@ public class KickCParser extends Parser { _localctx = new ExprUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(460); + setState(467); _la = _input.LA(1); if ( !(_la==T__53 || _la==T__54) ) { _errHandler.recoverInline(this); @@ -3895,7 +3950,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(461); + setState(468); expr(16); } break; @@ -3904,27 +3959,27 @@ public class KickCParser extends Parser { _localctx = new InitListContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(462); + setState(469); match(T__7); - setState(463); + setState(470); expr(0); - setState(468); + setState(475); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__3) { { { - setState(464); + setState(471); match(T__3); - setState(465); + setState(472); expr(0); } } - setState(470); + setState(477); _errHandler.sync(this); _la = _input.LA(1); } - setState(471); + setState(478); match(T__8); } break; @@ -3933,7 +3988,7 @@ public class KickCParser extends Parser { _localctx = new ExprIdContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(473); + setState(480); match(NAME); } break; @@ -3942,7 +3997,7 @@ public class KickCParser extends Parser { _localctx = new ExprNumberContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(474); + setState(481); match(NUMBER); } break; @@ -3951,7 +4006,7 @@ public class KickCParser extends Parser { _localctx = new ExprStringContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(476); + setState(483); _errHandler.sync(this); _alt = 1; do { @@ -3959,7 +4014,7 @@ public class KickCParser extends Parser { case 1: { { - setState(475); + setState(482); match(STRING); } } @@ -3967,9 +4022,9 @@ public class KickCParser extends Parser { default: throw new NoViableAltException(this); } - setState(478); + setState(485); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,43,_ctx); + _alt = getInterpreter().adaptivePredict(_input,45,_ctx); } while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ); } break; @@ -3978,7 +4033,7 @@ public class KickCParser extends Parser { _localctx = new ExprCharContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(480); + setState(487); match(CHAR); } break; @@ -3987,30 +4042,30 @@ public class KickCParser extends Parser { _localctx = new ExprBoolContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(481); + setState(488); match(BOOLEAN); } break; } _ctx.stop = _input.LT(-1); - setState(544); + setState(551); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,47,_ctx); + _alt = getInterpreter().adaptivePredict(_input,49,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(542); + setState(549); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,46,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) { case 1: { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(484); + setState(491); if (!(precpred(_ctx, 19))) throw new FailedPredicateException(this, "precpred(_ctx, 19)"); - setState(485); + setState(492); _la = _input.LA(1); if ( !(_la==T__49 || _la==T__50) ) { _errHandler.recoverInline(this); @@ -4020,7 +4075,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(486); + setState(493); expr(20); } break; @@ -4028,9 +4083,9 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(487); + setState(494); if (!(precpred(_ctx, 18))) throw new FailedPredicateException(this, "precpred(_ctx, 18)"); - setState(488); + setState(495); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__33) | (1L << T__51) | (1L << T__52))) != 0)) ) { _errHandler.recoverInline(this); @@ -4040,7 +4095,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(489); + setState(496); expr(19); } break; @@ -4048,9 +4103,9 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(490); + setState(497); if (!(precpred(_ctx, 17))) throw new FailedPredicateException(this, "precpred(_ctx, 17)"); - setState(491); + setState(498); _la = _input.LA(1); if ( !(_la==T__44 || _la==T__45) ) { _errHandler.recoverInline(this); @@ -4060,7 +4115,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(492); + setState(499); expr(18); } break; @@ -4068,9 +4123,9 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(493); + setState(500); if (!(precpred(_ctx, 15))) throw new FailedPredicateException(this, "precpred(_ctx, 15)"); - setState(494); + setState(501); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__53) | (1L << T__54) | (1L << T__55) | (1L << T__56) | (1L << T__57) | (1L << T__58))) != 0)) ) { _errHandler.recoverInline(this); @@ -4080,7 +4135,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(495); + setState(502); expr(16); } break; @@ -4088,13 +4143,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(496); + setState(503); if (!(precpred(_ctx, 14))) throw new FailedPredicateException(this, "precpred(_ctx, 14)"); { - setState(497); + setState(504); match(T__47); } - setState(498); + setState(505); expr(15); } break; @@ -4102,13 +4157,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(499); + setState(506); if (!(precpred(_ctx, 13))) throw new FailedPredicateException(this, "precpred(_ctx, 13)"); { - setState(500); + setState(507); match(T__59); } - setState(501); + setState(508); expr(14); } break; @@ -4116,13 +4171,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(502); + setState(509); if (!(precpred(_ctx, 12))) throw new FailedPredicateException(this, "precpred(_ctx, 12)"); { - setState(503); + setState(510); match(T__60); } - setState(504); + setState(511); expr(13); } break; @@ -4130,13 +4185,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(505); + setState(512); if (!(precpred(_ctx, 11))) throw new FailedPredicateException(this, "precpred(_ctx, 11)"); { - setState(506); + setState(513); match(T__61); } - setState(507); + setState(514); expr(12); } break; @@ -4144,13 +4199,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(508); + setState(515); if (!(precpred(_ctx, 10))) throw new FailedPredicateException(this, "precpred(_ctx, 10)"); { - setState(509); + setState(516); match(T__62); } - setState(510); + setState(517); expr(11); } break; @@ -4158,15 +4213,15 @@ public class KickCParser extends Parser { { _localctx = new ExprTernaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(511); + setState(518); if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)"); - setState(512); + setState(519); match(T__63); - setState(513); + setState(520); expr(0); - setState(514); + setState(521); match(T__29); - setState(515); + setState(522); expr(10); } break; @@ -4174,11 +4229,11 @@ public class KickCParser extends Parser { { _localctx = new ExprAssignmentContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(517); + setState(524); if (!(precpred(_ctx, 8))) throw new FailedPredicateException(this, "precpred(_ctx, 8)"); - setState(518); + setState(525); match(T__4); - setState(519); + setState(526); expr(8); } break; @@ -4186,9 +4241,9 @@ public class KickCParser extends Parser { { _localctx = new ExprAssignmentCompoundContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(520); + setState(527); if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)"); - setState(521); + setState(528); _la = _input.LA(1); if ( !(((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (T__64 - 65)) | (1L << (T__65 - 65)) | (1L << (T__66 - 65)) | (1L << (T__67 - 65)) | (1L << (T__68 - 65)) | (1L << (T__69 - 65)) | (1L << (T__70 - 65)) | (1L << (T__71 - 65)) | (1L << (T__72 - 65)) | (1L << (T__73 - 65)))) != 0)) ) { _errHandler.recoverInline(this); @@ -4198,7 +4253,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(522); + setState(529); expr(7); } break; @@ -4206,11 +4261,11 @@ public class KickCParser extends Parser { { _localctx = new ExprDotContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(523); + setState(530); if (!(precpred(_ctx, 30))) throw new FailedPredicateException(this, "precpred(_ctx, 30)"); - setState(524); + setState(531); match(T__38); - setState(525); + setState(532); match(NAME); } break; @@ -4218,11 +4273,11 @@ public class KickCParser extends Parser { { _localctx = new ExprArrowContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(526); + setState(533); if (!(precpred(_ctx, 29))) throw new FailedPredicateException(this, "precpred(_ctx, 29)"); - setState(527); + setState(534); match(T__39); - setState(528); + setState(535); match(NAME); } break; @@ -4230,21 +4285,21 @@ public class KickCParser extends Parser { { _localctx = new ExprCallContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(529); + setState(536); if (!(precpred(_ctx, 28))) throw new FailedPredicateException(this, "precpred(_ctx, 28)"); - setState(530); + setState(537); match(T__5); - setState(532); + setState(539); _errHandler.sync(this); _la = _input.LA(1); if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__33) | (1L << T__40) | (1L << T__41) | (1L << T__42) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__46) | (1L << T__47) | (1L << T__48) | (1L << T__53) | (1L << T__54))) != 0) || ((((_la - 85)) & ~0x3f) == 0 && ((1L << (_la - 85)) & ((1L << (STRING - 85)) | (1L << (CHAR - 85)) | (1L << (BOOLEAN - 85)) | (1L << (NUMBER - 85)) | (1L << (NAME - 85)))) != 0)) { { - setState(531); + setState(538); parameterList(); } } - setState(534); + setState(541); match(T__6); } break; @@ -4252,13 +4307,13 @@ public class KickCParser extends Parser { { _localctx = new ExprArrayContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(535); + setState(542); if (!(precpred(_ctx, 25))) throw new FailedPredicateException(this, "precpred(_ctx, 25)"); - setState(536); + setState(543); match(T__34); - setState(537); + setState(544); commaExpr(0); - setState(538); + setState(545); match(T__35); } break; @@ -4266,9 +4321,9 @@ public class KickCParser extends Parser { { _localctx = new ExprPostModContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(540); + setState(547); if (!(precpred(_ctx, 22))) throw new FailedPredicateException(this, "precpred(_ctx, 22)"); - setState(541); + setState(548); _la = _input.LA(1); if ( !(_la==T__42 || _la==T__43) ) { _errHandler.recoverInline(this); @@ -4283,9 +4338,9 @@ public class KickCParser extends Parser { } } } - setState(546); + setState(553); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,47,_ctx); + _alt = getInterpreter().adaptivePredict(_input,49,_ctx); } } } @@ -4333,21 +4388,21 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(547); + setState(554); expr(0); - setState(552); + setState(559); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__3) { { { - setState(548); + setState(555); match(T__3); - setState(549); + setState(556); expr(0); } } - setState(554); + setState(561); _errHandler.sync(this); _la = _input.LA(1); } @@ -4395,19 +4450,19 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(555); + setState(562); match(T__74); - setState(557); + setState(564); _errHandler.sync(this); _la = _input.LA(1); if (_la==T__5) { { - setState(556); + setState(563); asmDirectives(); } } - setState(559); + setState(566); match(KICKASM); } } @@ -4455,27 +4510,27 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(561); + setState(568); match(T__5); - setState(562); + setState(569); asmDirective(); - setState(567); + setState(574); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__3) { { { - setState(563); + setState(570); match(T__3); - setState(564); + setState(571); asmDirective(); } } - setState(569); + setState(576); _errHandler.sync(this); _la = _input.LA(1); } - setState(570); + setState(577); match(T__6); } } @@ -4614,16 +4669,16 @@ public class KickCParser extends Parser { AsmDirectiveContext _localctx = new AsmDirectiveContext(_ctx, getState()); enterRule(_localctx, 68, RULE_asmDirective); try { - setState(587); + setState(594); _errHandler.sync(this); switch (_input.LA(1)) { case T__75: _localctx = new AsmDirectiveResourceContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(572); + setState(579); match(T__75); - setState(573); + setState(580); match(STRING); } break; @@ -4631,9 +4686,9 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveUsesContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(574); + setState(581); match(T__76); - setState(575); + setState(582); match(NAME); } break; @@ -4641,9 +4696,9 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveClobberContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(576); + setState(583); match(T__77); - setState(577); + setState(584); match(STRING); } break; @@ -4651,9 +4706,9 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveBytesContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(578); + setState(585); match(T__78); - setState(579); + setState(586); expr(0); } break; @@ -4661,9 +4716,9 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveCyclesContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(580); + setState(587); match(T__79); - setState(581); + setState(588); expr(0); } break; @@ -4671,14 +4726,14 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveAddressContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(582); + setState(589); match(T__10); - setState(585); + setState(592); _errHandler.sync(this); switch (_input.LA(1)) { case T__16: { - setState(583); + setState(590); match(T__16); } break; @@ -4702,7 +4757,7 @@ public class KickCParser extends Parser { case NUMBER: case NAME: { - setState(584); + setState(591); expr(0); } break; @@ -4759,17 +4814,17 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(592); + setState(599); _errHandler.sync(this); _la = _input.LA(1); while (((((_la - 47)) & ~0x3f) == 0 && ((1L << (_la - 47)) & ((1L << (T__46 - 47)) | (1L << (T__80 - 47)) | (1L << (MNEMONIC - 47)) | (1L << (NAME - 47)))) != 0)) { { { - setState(589); + setState(596); asmLine(); } } - setState(594); + setState(601); _errHandler.sync(this); _la = _input.LA(1); } @@ -4819,28 +4874,28 @@ public class KickCParser extends Parser { AsmLineContext _localctx = new AsmLineContext(_ctx, getState()); enterRule(_localctx, 72, RULE_asmLine); try { - setState(598); + setState(605); _errHandler.sync(this); switch (_input.LA(1)) { case T__46: case NAME: enterOuterAlt(_localctx, 1); { - setState(595); + setState(602); asmLabel(); } break; case MNEMONIC: enterOuterAlt(_localctx, 2); { - setState(596); + setState(603); asmInstruction(); } break; case T__80: enterOuterAlt(_localctx, 3); { - setState(597); + setState(604); asmBytes(); } break; @@ -4910,16 +4965,16 @@ public class KickCParser extends Parser { enterRule(_localctx, 74, RULE_asmLabel); int _la; try { - setState(607); + setState(614); _errHandler.sync(this); switch (_input.LA(1)) { case NAME: _localctx = new AsmLabelNameContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(600); + setState(607); match(NAME); - setState(601); + setState(608); match(T__29); } break; @@ -4927,19 +4982,19 @@ public class KickCParser extends Parser { _localctx = new AsmLabelMultiContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(602); + setState(609); match(T__46); - setState(604); + setState(611); _errHandler.sync(this); _la = _input.LA(1); if (_la==NAME) { { - setState(603); + setState(610); match(NAME); } } - setState(606); + setState(613); match(T__29); } break; @@ -4988,14 +5043,14 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(609); + setState(616); match(MNEMONIC); - setState(611); + setState(618); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,57,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,59,_ctx) ) { case 1: { - setState(610); + setState(617); asmParamMode(); } break; @@ -5046,23 +5101,23 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(613); + setState(620); match(T__80); - setState(614); + setState(621); asmExpr(0); - setState(619); + setState(626); _errHandler.sync(this); _la = _input.LA(1); while (_la==T__3) { { { - setState(615); + setState(622); match(T__3); - setState(616); + setState(623); asmExpr(0); } } - setState(621); + setState(628); _errHandler.sync(this); _la = _input.LA(1); } @@ -5212,14 +5267,14 @@ public class KickCParser extends Parser { AsmParamModeContext _localctx = new AsmParamModeContext(_ctx, getState()); enterRule(_localctx, 80, RULE_asmParamMode); try { - setState(645); + setState(652); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,59,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,61,_ctx) ) { case 1: _localctx = new AsmModeAbsContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(622); + setState(629); asmExpr(0); } break; @@ -5227,9 +5282,9 @@ public class KickCParser extends Parser { _localctx = new AsmModeImmContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(623); + setState(630); match(T__9); - setState(624); + setState(631); asmExpr(0); } break; @@ -5237,11 +5292,11 @@ public class KickCParser extends Parser { _localctx = new AsmModeAbsXYContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(625); + setState(632); asmExpr(0); - setState(626); + setState(633); match(T__3); - setState(627); + setState(634); match(NAME); } break; @@ -5249,15 +5304,15 @@ public class KickCParser extends Parser { _localctx = new AsmModeIndIdxXYContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(629); + setState(636); match(T__5); - setState(630); + setState(637); asmExpr(0); - setState(631); + setState(638); match(T__6); - setState(632); + setState(639); match(T__3); - setState(633); + setState(640); match(NAME); } break; @@ -5265,15 +5320,15 @@ public class KickCParser extends Parser { _localctx = new AsmModeIdxIndXYContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(635); + setState(642); match(T__5); - setState(636); + setState(643); asmExpr(0); - setState(637); + setState(644); match(T__3); - setState(638); + setState(645); match(NAME); - setState(639); + setState(646); match(T__6); } break; @@ -5281,11 +5336,11 @@ public class KickCParser extends Parser { _localctx = new AsmModeIndContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(641); + setState(648); match(T__5); - setState(642); + setState(649); asmExpr(0); - setState(643); + setState(650); match(T__6); } break; @@ -5475,7 +5530,7 @@ public class KickCParser extends Parser { int _alt; enterOuterAlt(_localctx, 1); { - setState(661); + setState(668); _errHandler.sync(this); switch (_input.LA(1)) { case T__34: @@ -5484,11 +5539,11 @@ public class KickCParser extends Parser { _ctx = _localctx; _prevctx = _localctx; - setState(648); + setState(655); match(T__34); - setState(649); + setState(656); asmExpr(0); - setState(650); + setState(657); match(T__35); } break; @@ -5500,7 +5555,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(652); + setState(659); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__44) | (1L << T__45) | (1L << T__53) | (1L << T__54))) != 0)) ) { _errHandler.recoverInline(this); @@ -5510,7 +5565,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(653); + setState(660); asmExpr(8); } break; @@ -5519,7 +5574,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprLabelContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(654); + setState(661); match(NAME); } break; @@ -5528,7 +5583,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprLabelRelContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(655); + setState(662); match(ASMREL); } break; @@ -5537,11 +5592,11 @@ public class KickCParser extends Parser { _localctx = new AsmExprReplaceContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(656); + setState(663); match(T__7); - setState(657); + setState(664); match(NAME); - setState(658); + setState(665); match(T__8); } break; @@ -5550,7 +5605,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprIntContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(659); + setState(666); match(NUMBER); } break; @@ -5559,7 +5614,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprCharContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(660); + setState(667); match(CHAR); } break; @@ -5567,28 +5622,28 @@ public class KickCParser extends Parser { throw new NoViableAltException(this); } _ctx.stop = _input.LT(-1); - setState(677); + setState(684); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,62,_ctx); + _alt = getInterpreter().adaptivePredict(_input,64,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(675); + setState(682); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,61,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,63,_ctx) ) { case 1: { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(663); + setState(670); if (!(precpred(_ctx, 10))) throw new FailedPredicateException(this, "precpred(_ctx, 10)"); { - setState(664); + setState(671); match(T__38); } - setState(665); + setState(672); asmExpr(11); } break; @@ -5596,9 +5651,9 @@ public class KickCParser extends Parser { { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(666); + setState(673); if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)"); - setState(667); + setState(674); _la = _input.LA(1); if ( !(_la==T__49 || _la==T__50) ) { _errHandler.recoverInline(this); @@ -5608,7 +5663,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(668); + setState(675); asmExpr(10); } break; @@ -5616,9 +5671,9 @@ public class KickCParser extends Parser { { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(669); + setState(676); if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)"); - setState(670); + setState(677); _la = _input.LA(1); if ( !(_la==T__33 || _la==T__51) ) { _errHandler.recoverInline(this); @@ -5628,7 +5683,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(671); + setState(678); asmExpr(8); } break; @@ -5636,9 +5691,9 @@ public class KickCParser extends Parser { { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(672); + setState(679); if (!(precpred(_ctx, 6))) throw new FailedPredicateException(this, "precpred(_ctx, 6)"); - setState(673); + setState(680); _la = _input.LA(1); if ( !(_la==T__44 || _la==T__45) ) { _errHandler.recoverInline(this); @@ -5648,16 +5703,16 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(674); + setState(681); asmExpr(7); } break; } } } - setState(679); + setState(686); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,62,_ctx); + _alt = getInterpreter().adaptivePredict(_input,64,_ctx); } } } @@ -5775,7 +5830,7 @@ public class KickCParser extends Parser { } public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3g\u02ab\4\2\t\2\4"+ + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3g\u02b2\4\2\t\2\4"+ "\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4\13\t"+ "\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22\t\22"+ "\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31\t\31"+ @@ -5786,257 +5841,260 @@ public class KickCParser extends Parser { "\7\3\7\3\7\3\7\5\7|\n\7\3\b\3\b\3\b\3\t\7\t\u0082\n\t\f\t\16\t\u0085\13"+ "\t\3\t\3\t\7\t\u0089\n\t\f\t\16\t\u008c\13\t\3\n\3\n\3\n\3\13\3\13\3\13"+ "\3\13\3\13\3\13\7\13\u0097\n\13\f\13\16\13\u009a\13\13\3\f\3\f\3\f\5\f"+ - "\u009f\n\f\3\r\3\r\3\r\3\r\5\r\u00a5\n\r\3\r\3\r\3\r\5\r\u00aa\n\r\3\r"+ - "\3\r\3\16\3\16\3\16\7\16\u00b1\n\16\f\16\16\16\u00b4\13\16\3\17\3\17\3"+ - "\17\3\17\5\17\u00ba\n\17\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20"+ - "\3\20\3\20\3\20\5\20\u00c8\n\20\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21"+ - "\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\5\21\u00da\n\21\3\21\5\21\u00dd"+ - "\n\21\3\22\3\22\3\22\3\22\3\22\7\22\u00e4\n\22\f\22\16\22\u00e7\13\22"+ - "\3\22\3\22\3\23\6\23\u00ec\n\23\r\23\16\23\u00ed\3\24\3\24\3\24\3\24\3"+ - "\24\5\24\u00f5\n\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24"+ - "\3\24\5\24\u0102\n\24\3\24\7\24\u0105\n\24\f\24\16\24\u0108\13\24\3\24"+ - "\3\24\3\24\3\24\3\24\3\24\3\24\7\24\u0111\n\24\f\24\16\24\u0114\13\24"+ - "\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\7\24\u011f\n\24\f\24\16"+ - "\24\u0122\13\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\5\24\u012c\n\24"+ - "\3\24\3\24\3\24\3\24\3\24\3\24\3\24\5\24\u0135\n\24\3\24\3\24\3\24\3\24"+ - "\3\24\5\24\u013c\n\24\3\25\3\25\3\25\3\25\3\25\5\25\u0143\n\25\3\25\5"+ - "\25\u0146\n\25\3\25\3\25\3\25\3\25\3\25\3\25\5\25\u014e\n\25\3\26\5\26"+ - "\u0151\n\26\3\26\5\26\u0154\n\26\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3"+ - "\27\5\27\u015e\n\27\3\27\3\27\3\27\3\27\3\27\5\27\u0165\n\27\3\27\3\27"+ - "\3\27\3\27\3\27\5\27\u016c\n\27\3\27\3\27\3\27\3\27\7\27\u0172\n\27\f"+ - "\27\16\27\u0175\13\27\3\30\3\30\3\30\3\31\3\31\5\31\u017c\n\31\3\31\3"+ - "\31\6\31\u0180\n\31\r\31\16\31\u0181\3\31\3\31\3\32\3\32\3\32\3\33\3\33"+ - "\3\33\3\34\3\34\5\34\u018e\n\34\3\34\3\34\3\34\3\34\3\35\3\35\3\35\3\35"+ - "\3\35\3\35\7\35\u019a\n\35\f\35\16\35\u019d\13\35\3\36\3\36\3\36\5\36"+ - "\u01a2\n\36\3\37\3\37\3\37\3\37\3\37\3\37\7\37\u01aa\n\37\f\37\16\37\u01ad"+ - "\13\37\3 \3 \3 \3 \3 \3 \3 \3 \3 \5 \u01b8\n \3 \3 \3 \3 \3 \3 \5 \u01c0"+ - "\n \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \7 \u01d5"+ - "\n \f \16 \u01d8\13 \3 \3 \3 \3 \3 \6 \u01df\n \r \16 \u01e0\3 \3 \5 "+ - "\u01e5\n \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 "+ - "\3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 "+ - "\3 \3 \3 \3 \3 \5 \u0217\n \3 \3 \3 \3 \3 \3 \3 \3 \7 \u0221\n \f \16"+ - " \u0224\13 \3!\3!\3!\7!\u0229\n!\f!\16!\u022c\13!\3\"\3\"\5\"\u0230\n"+ - "\"\3\"\3\"\3#\3#\3#\3#\7#\u0238\n#\f#\16#\u023b\13#\3#\3#\3$\3$\3$\3$"+ - "\3$\3$\3$\3$\3$\3$\3$\3$\3$\5$\u024c\n$\5$\u024e\n$\3%\7%\u0251\n%\f%"+ - "\16%\u0254\13%\3&\3&\3&\5&\u0259\n&\3\'\3\'\3\'\3\'\5\'\u025f\n\'\3\'"+ - "\5\'\u0262\n\'\3(\3(\5(\u0266\n(\3)\3)\3)\3)\7)\u026c\n)\f)\16)\u026f"+ - "\13)\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3"+ - "*\3*\5*\u0288\n*\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\5+\u0298\n"+ - "+\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\7+\u02a6\n+\f+\16+\u02a9\13+\3+"+ - "\2\b\24,8<>T,\2\4\6\b\n\f\16\20\22\24\26\30\32\34\36 \"$&(*,.\60\62\64"+ - "\668:<>@BDFHJLNPRT\2\r\3\2\"#\3\2-.\3\2/\63\3\289\3\2\64\65\4\2$$\66\67"+ - "\3\2/\60\3\28=\3\2CL\4\2/\6089\4\2$$\66\66\2\u0308\2V\3\2\2\2\4Z\3\2\2"+ - "\2\6`\3\2\2\2\bc\3\2\2\2\ng\3\2\2\2\f{\3\2\2\2\16}\3\2\2\2\20\u0083\3"+ - "\2\2\2\22\u008d\3\2\2\2\24\u0090\3\2\2\2\26\u009b\3\2\2\2\30\u00a0\3\2"+ - "\2\2\32\u00ad\3\2\2\2\34\u00b9\3\2\2\2\36\u00c7\3\2\2\2 \u00dc\3\2\2\2"+ - "\"\u00de\3\2\2\2$\u00eb\3\2\2\2&\u013b\3\2\2\2(\u014d\3\2\2\2*\u0153\3"+ - "\2\2\2,\u0164\3\2\2\2.\u0176\3\2\2\2\60\u0179\3\2\2\2\62\u0185\3\2\2\2"+ - "\64\u0188\3\2\2\2\66\u018b\3\2\2\28\u0193\3\2\2\2:\u019e\3\2\2\2<\u01a3"+ - "\3\2\2\2>\u01e4\3\2\2\2@\u0225\3\2\2\2B\u022d\3\2\2\2D\u0233\3\2\2\2F"+ - "\u024d\3\2\2\2H\u0252\3\2\2\2J\u0258\3\2\2\2L\u0261\3\2\2\2N\u0263\3\2"+ - "\2\2P\u0267\3\2\2\2R\u0287\3\2\2\2T\u0297\3\2\2\2VW\5\6\4\2WX\5\n\6\2"+ - "XY\7\2\2\3Y\3\3\2\2\2Z[\5H%\2[\\\7\2\2\3\\\5\3\2\2\2]_\5\b\5\2^]\3\2\2"+ - "\2_b\3\2\2\2`^\3\2\2\2`a\3\2\2\2a\7\3\2\2\2b`\3\2\2\2cd\7\3\2\2de\7W\2"+ - "\2e\t\3\2\2\2fh\5\f\7\2gf\3\2\2\2hi\3\2\2\2ig\3\2\2\2ij\3\2\2\2j\13\3"+ - "\2\2\2kl\5\22\n\2lm\7\4\2\2m|\3\2\2\2no\5\60\31\2op\7\4\2\2p|\3\2\2\2"+ - "qr\5\66\34\2rs\7\4\2\2s|\3\2\2\2t|\5\30\r\2u|\5\30\r\2v|\5B\"\2w|\5\36"+ - "\20\2xy\5\16\b\2yz\7\4\2\2z|\3\2\2\2{k\3\2\2\2{n\3\2\2\2{q\3\2\2\2{t\3"+ - "\2\2\2{u\3\2\2\2{v\3\2\2\2{w\3\2\2\2{x\3\2\2\2|\r\3\2\2\2}~\7\5\2\2~\177"+ - "\5\22\n\2\177\17\3\2\2\2\u0080\u0082\5 \21\2\u0081\u0080\3\2\2\2\u0082"+ - "\u0085\3\2\2\2\u0083\u0081\3\2\2\2\u0083\u0084\3\2\2\2\u0084\u0086\3\2"+ - "\2\2\u0085\u0083\3\2\2\2\u0086\u008a\5,\27\2\u0087\u0089\5 \21\2\u0088"+ - "\u0087\3\2\2\2\u0089\u008c\3\2\2\2\u008a\u0088\3\2\2\2\u008a\u008b\3\2"+ - "\2\2\u008b\21\3\2\2\2\u008c\u008a\3\2\2\2\u008d\u008e\5\20\t\2\u008e\u008f"+ - "\5\24\13\2\u008f\23\3\2\2\2\u0090\u0091\b\13\1\2\u0091\u0092\5\26\f\2"+ - "\u0092\u0098\3\2\2\2\u0093\u0094\f\3\2\2\u0094\u0095\7\6\2\2\u0095\u0097"+ - "\5\26\f\2\u0096\u0093\3\2\2\2\u0097\u009a\3\2\2\2\u0098\u0096\3\2\2\2"+ - "\u0098\u0099\3\2\2\2\u0099\25\3\2\2\2\u009a\u0098\3\2\2\2\u009b\u009e"+ - "\7c\2\2\u009c\u009d\7\7\2\2\u009d\u009f\5> \2\u009e\u009c\3\2\2\2\u009e"+ - "\u009f\3\2\2\2\u009f\27\3\2\2\2\u00a0\u00a1\5\20\t\2\u00a1\u00a2\7c\2"+ - "\2\u00a2\u00a4\7\b\2\2\u00a3\u00a5\5\32\16\2\u00a4\u00a3\3\2\2\2\u00a4"+ - "\u00a5\3\2\2\2\u00a5\u00a6\3\2\2\2\u00a6\u00a7\7\t\2\2\u00a7\u00a9\7\n"+ - "\2\2\u00a8\u00aa\5$\23\2\u00a9\u00a8\3\2\2\2\u00a9\u00aa\3\2\2\2\u00aa"+ - "\u00ab\3\2\2\2\u00ab\u00ac\7\13\2\2\u00ac\31\3\2\2\2\u00ad\u00b2\5\34"+ - "\17\2\u00ae\u00af\7\6\2\2\u00af\u00b1\5\34\17\2\u00b0\u00ae\3\2\2\2\u00b1"+ - "\u00b4\3\2\2\2\u00b2\u00b0\3\2\2\2\u00b2\u00b3\3\2\2\2\u00b3\33\3\2\2"+ - "\2\u00b4\u00b2\3\2\2\2\u00b5\u00b6\5\20\t\2\u00b6\u00b7\7c\2\2\u00b7\u00ba"+ - "\3\2\2\2\u00b8\u00ba\7V\2\2\u00b9\u00b5\3\2\2\2\u00b9\u00b8\3\2\2\2\u00ba"+ - "\35\3\2\2\2\u00bb\u00bc\7\f\2\2\u00bc\u00c8\5\"\22\2\u00bd\u00be\7\f\2"+ - "\2\u00be\u00bf\7\r\2\2\u00bf\u00c0\7\b\2\2\u00c0\u00c1\7Z\2\2\u00c1\u00c8"+ - "\7\t\2\2\u00c2\u00c3\7\f\2\2\u00c3\u00c4\7\16\2\2\u00c4\u00c5\7\b\2\2"+ - "\u00c5\u00c6\7c\2\2\u00c6\u00c8\7\t\2\2\u00c7\u00bb\3\2\2\2\u00c7\u00bd"+ - "\3\2\2\2\u00c7\u00c2\3\2\2\2\u00c8\37\3\2\2\2\u00c9\u00dd\7\17\2\2\u00ca"+ - "\u00dd\7\20\2\2\u00cb\u00cc\7\21\2\2\u00cc\u00cd\7\b\2\2\u00cd\u00ce\7"+ - "Z\2\2\u00ce\u00dd\7\t\2\2\u00cf\u00d0\7\22\2\2\u00d0\u00d1\7\b\2\2\u00d1"+ - "\u00d2\7c\2\2\u00d2\u00dd\7\t\2\2\u00d3\u00dd\7\23\2\2\u00d4\u00dd\7\24"+ - "\2\2\u00d5\u00d9\7\25\2\2\u00d6\u00d7\7\b\2\2\u00d7\u00d8\7c\2\2\u00d8"+ - "\u00da\7\t\2\2\u00d9\u00d6\3\2\2\2\u00d9\u00da\3\2\2\2\u00da\u00dd\3\2"+ - "\2\2\u00db\u00dd\5\"\22\2\u00dc\u00c9\3\2\2\2\u00dc\u00ca\3\2\2\2\u00dc"+ - "\u00cb\3\2\2\2\u00dc\u00cf\3\2\2\2\u00dc\u00d3\3\2\2\2\u00dc\u00d4\3\2"+ - "\2\2\u00dc\u00d5\3\2\2\2\u00dc\u00db\3\2\2\2\u00dd!\3\2\2\2\u00de\u00df"+ - "\7\26\2\2\u00df\u00e0\7\b\2\2\u00e0\u00e5\7Z\2\2\u00e1\u00e2\7\6\2\2\u00e2"+ - "\u00e4\7Z\2\2\u00e3\u00e1\3\2\2\2\u00e4\u00e7\3\2\2\2\u00e5\u00e3\3\2"+ - "\2\2\u00e5\u00e6\3\2\2\2\u00e6\u00e8\3\2\2\2\u00e7\u00e5\3\2\2\2\u00e8"+ - "\u00e9\7\t\2\2\u00e9#\3\2\2\2\u00ea\u00ec\5&\24\2\u00eb\u00ea\3\2\2\2"+ - "\u00ec\u00ed\3\2\2\2\u00ed\u00eb\3\2\2\2\u00ed\u00ee\3\2\2\2\u00ee%\3"+ - "\2\2\2\u00ef\u00f0\5\22\n\2\u00f0\u00f1\7\4\2\2\u00f1\u013c\3\2\2\2\u00f2"+ - "\u00f4\7\n\2\2\u00f3\u00f5\5$\23\2\u00f4\u00f3\3\2\2\2\u00f4\u00f5\3\2"+ - "\2\2\u00f5\u00f6\3\2\2\2\u00f6\u013c\7\13\2\2\u00f7\u00f8\5<\37\2\u00f8"+ - "\u00f9\7\4\2\2\u00f9\u013c\3\2\2\2\u00fa\u00fb\7\27\2\2\u00fb\u00fc\7"+ - "\b\2\2\u00fc\u00fd\5<\37\2\u00fd\u00fe\7\t\2\2\u00fe\u0101\5&\24\2\u00ff"+ - "\u0100\7\30\2\2\u0100\u0102\5&\24\2\u0101\u00ff\3\2\2\2\u0101\u0102\3"+ - "\2\2\2\u0102\u013c\3\2\2\2\u0103\u0105\5 \21\2\u0104\u0103\3\2\2\2\u0105"+ - "\u0108\3\2\2\2\u0106\u0104\3\2\2\2\u0106\u0107\3\2\2\2\u0107\u0109\3\2"+ - "\2\2\u0108\u0106\3\2\2\2\u0109\u010a\7\31\2\2\u010a\u010b\7\b\2\2\u010b"+ - "\u010c\5<\37\2\u010c\u010d\7\t\2\2\u010d\u010e\5&\24\2\u010e\u013c\3\2"+ - "\2\2\u010f\u0111\5 \21\2\u0110\u010f\3\2\2\2\u0111\u0114\3\2\2\2\u0112"+ - "\u0110\3\2\2\2\u0112\u0113\3\2\2\2\u0113\u0115\3\2\2\2\u0114\u0112\3\2"+ - "\2\2\u0115\u0116\7\32\2\2\u0116\u0117\5&\24\2\u0117\u0118\7\31\2\2\u0118"+ - "\u0119\7\b\2\2\u0119\u011a\5<\37\2\u011a\u011b\7\t\2\2\u011b\u011c\7\4"+ - "\2\2\u011c\u013c\3\2\2\2\u011d\u011f\5 \21\2\u011e\u011d\3\2\2\2\u011f"+ - "\u0122\3\2\2\2\u0120\u011e\3\2\2\2\u0120\u0121\3\2\2\2\u0121\u0123\3\2"+ - "\2\2\u0122\u0120\3\2\2\2\u0123\u0124\7\33\2\2\u0124\u0125\7\b\2\2\u0125"+ - "\u0126\5(\25\2\u0126\u0127\7\t\2\2\u0127\u0128\5&\24\2\u0128\u013c\3\2"+ - "\2\2\u0129\u012b\7\34\2\2\u012a\u012c\5<\37\2\u012b\u012a\3\2\2\2\u012b"+ - "\u012c\3\2\2\2\u012c\u012d\3\2\2\2\u012d\u013c\7\4\2\2\u012e\u012f\7\35"+ - "\2\2\u012f\u013c\7\4\2\2\u0130\u0131\7\36\2\2\u0131\u013c\7\4\2\2\u0132"+ - "\u0134\7\37\2\2\u0133\u0135\5D#\2\u0134\u0133\3\2\2\2\u0134\u0135\3\2"+ - "\2\2\u0135\u0136\3\2\2\2\u0136\u0137\7\n\2\2\u0137\u0138\5H%\2\u0138\u0139"+ - "\7\13\2\2\u0139\u013c\3\2\2\2\u013a\u013c\5B\"\2\u013b\u00ef\3\2\2\2\u013b"+ - "\u00f2\3\2\2\2\u013b\u00f7\3\2\2\2\u013b\u00fa\3\2\2\2\u013b\u0106\3\2"+ - "\2\2\u013b\u0112\3\2\2\2\u013b\u0120\3\2\2\2\u013b\u0129\3\2\2\2\u013b"+ - "\u012e\3\2\2\2\u013b\u0130\3\2\2\2\u013b\u0132\3\2\2\2\u013b\u013a\3\2"+ - "\2\2\u013c\'\3\2\2\2\u013d\u013e\5*\26\2\u013e\u013f\7\4\2\2\u013f\u0140"+ - "\5<\37\2\u0140\u0142\7\4\2\2\u0141\u0143\5<\37\2\u0142\u0141\3\2\2\2\u0142"+ - "\u0143\3\2\2\2\u0143\u014e\3\2\2\2\u0144\u0146\5\20\t\2\u0145\u0144\3"+ - "\2\2\2\u0145\u0146\3\2\2\2\u0146\u0147\3\2\2\2\u0147\u0148\7c\2\2\u0148"+ - "\u0149\7 \2\2\u0149\u014a\5> \2\u014a\u014b\7!\2\2\u014b\u014c\5> \2\u014c"+ - "\u014e\3\2\2\2\u014d\u013d\3\2\2\2\u014d\u0145\3\2\2\2\u014e)\3\2\2\2"+ - "\u014f\u0151\5\22\n\2\u0150\u014f\3\2\2\2\u0150\u0151\3\2\2\2\u0151\u0154"+ - "\3\2\2\2\u0152\u0154\5<\37\2\u0153\u0150\3\2\2\2\u0153\u0152\3\2\2\2\u0154"+ - "+\3\2\2\2\u0155\u0156\b\27\1\2\u0156\u0157\7\b\2\2\u0157\u0158\5,\27\2"+ - "\u0158\u0159\7\t\2\2\u0159\u0165\3\2\2\2\u015a\u0165\7V\2\2\u015b\u015d"+ - "\t\2\2\2\u015c\u015e\7V\2\2\u015d\u015c\3\2\2\2\u015d\u015e\3\2\2\2\u015e"+ - "\u0165\3\2\2\2\u015f\u0165\5\60\31\2\u0160\u0165\5.\30\2\u0161\u0165\5"+ - "\66\34\2\u0162\u0165\5\64\33\2\u0163\u0165\7c\2\2\u0164\u0155\3\2\2\2"+ - "\u0164\u015a\3\2\2\2\u0164\u015b\3\2\2\2\u0164\u015f\3\2\2\2\u0164\u0160"+ - "\3\2\2\2\u0164\u0161\3\2\2\2\u0164\u0162\3\2\2\2\u0164\u0163\3\2\2\2\u0165"+ - "\u0173\3\2\2\2\u0166\u0167\f\n\2\2\u0167\u0172\7$\2\2\u0168\u0169\f\t"+ - "\2\2\u0169\u016b\7%\2\2\u016a\u016c\5> \2\u016b\u016a\3\2\2\2\u016b\u016c"+ - "\3\2\2\2\u016c\u016d\3\2\2\2\u016d\u0172\7&\2\2\u016e\u016f\f\b\2\2\u016f"+ - "\u0170\7\b\2\2\u0170\u0172\7\t\2\2\u0171\u0166\3\2\2\2\u0171\u0168\3\2"+ - "\2\2\u0171\u016e\3\2\2\2\u0172\u0175\3\2\2\2\u0173\u0171\3\2\2\2\u0173"+ - "\u0174\3\2\2\2\u0174-\3\2\2\2\u0175\u0173\3\2\2\2\u0176\u0177\7\'\2\2"+ - "\u0177\u0178\7c\2\2\u0178/\3\2\2\2\u0179\u017b\7\'\2\2\u017a\u017c\7c"+ - "\2\2\u017b\u017a\3\2\2\2\u017b\u017c\3\2\2\2\u017c\u017d\3\2\2\2\u017d"+ - "\u017f\7\n\2\2\u017e\u0180\5\62\32\2\u017f\u017e\3\2\2\2\u0180\u0181\3"+ - "\2\2\2\u0181\u017f\3\2\2\2\u0181\u0182\3\2\2\2\u0182\u0183\3\2\2\2\u0183"+ - "\u0184\7\13\2\2\u0184\61\3\2\2\2\u0185\u0186\5\22\n\2\u0186\u0187\7\4"+ - "\2\2\u0187\63\3\2\2\2\u0188\u0189\7(\2\2\u0189\u018a\7c\2\2\u018a\65\3"+ - "\2\2\2\u018b\u018d\7(\2\2\u018c\u018e\7c\2\2\u018d\u018c\3\2\2\2\u018d"+ - "\u018e\3\2\2\2\u018e\u018f\3\2\2\2\u018f\u0190\7\n\2\2\u0190\u0191\58"+ - "\35\2\u0191\u0192\7\13\2\2\u0192\67\3\2\2\2\u0193\u0194\b\35\1\2\u0194"+ - "\u0195\5:\36\2\u0195\u019b\3\2\2\2\u0196\u0197\f\3\2\2\u0197\u0198\7\6"+ - "\2\2\u0198\u019a\5:\36\2\u0199\u0196\3\2\2\2\u019a\u019d\3\2\2\2\u019b"+ - "\u0199\3\2\2\2\u019b\u019c\3\2\2\2\u019c9\3\2\2\2\u019d\u019b\3\2\2\2"+ - "\u019e\u01a1\7c\2\2\u019f\u01a0\7\7\2\2\u01a0\u01a2\5> \2\u01a1\u019f"+ - "\3\2\2\2\u01a1\u01a2\3\2\2\2\u01a2;\3\2\2\2\u01a3\u01a4\b\37\1\2\u01a4"+ - "\u01a5\5> \2\u01a5\u01ab\3\2\2\2\u01a6\u01a7\f\3\2\2\u01a7\u01a8\7\6\2"+ - "\2\u01a8\u01aa\5> \2\u01a9\u01a6\3\2\2\2\u01aa\u01ad\3\2\2\2\u01ab\u01a9"+ - "\3\2\2\2\u01ab\u01ac\3\2\2\2\u01ac=\3\2\2\2\u01ad\u01ab\3\2\2\2\u01ae"+ - "\u01af\b \1\2\u01af\u01b0\7\b\2\2\u01b0\u01b1\5<\37\2\u01b1\u01b2\7\t"+ - "\2\2\u01b2\u01e5\3\2\2\2\u01b3\u01b4\7+\2\2\u01b4\u01b7\7\b\2\2\u01b5"+ - "\u01b8\5> \2\u01b6\u01b8\5,\27\2\u01b7\u01b5\3\2\2\2\u01b7\u01b6\3\2\2"+ - "\2\u01b8\u01b9\3\2\2\2\u01b9\u01ba\7\t\2\2\u01ba\u01e5\3\2\2\2\u01bb\u01bc"+ - "\7,\2\2\u01bc\u01bf\7\b\2\2\u01bd\u01c0\5> \2\u01be\u01c0\5,\27\2\u01bf"+ - "\u01bd\3\2\2\2\u01bf\u01be\3\2\2\2\u01c0\u01c1\3\2\2\2\u01c1\u01c2\7\t"+ - "\2\2\u01c2\u01e5\3\2\2\2\u01c3\u01c4\7\b\2\2\u01c4\u01c5\5,\27\2\u01c5"+ - "\u01c6\7\t\2\2\u01c6\u01c7\5> \32\u01c7\u01e5\3\2\2\2\u01c8\u01c9\t\3"+ - "\2\2\u01c9\u01e5\5> \31\u01ca\u01cb\7$\2\2\u01cb\u01e5\5> \27\u01cc\u01cd"+ - "\t\4\2\2\u01cd\u01e5\5> \26\u01ce\u01cf\t\5\2\2\u01cf\u01e5\5> \22\u01d0"+ - "\u01d1\7\n\2\2\u01d1\u01d6\5> \2\u01d2\u01d3\7\6\2\2\u01d3\u01d5\5> \2"+ - "\u01d4\u01d2\3\2\2\2\u01d5\u01d8\3\2\2\2\u01d6\u01d4\3\2\2\2\u01d6\u01d7"+ - "\3\2\2\2\u01d7\u01d9\3\2\2\2\u01d8\u01d6\3\2\2\2\u01d9\u01da\7\13\2\2"+ - "\u01da\u01e5\3\2\2\2\u01db\u01e5\7c\2\2\u01dc\u01e5\7Z\2\2\u01dd\u01df"+ - "\7W\2\2\u01de\u01dd\3\2\2\2\u01df\u01e0\3\2\2\2\u01e0\u01de\3\2\2\2\u01e0"+ - "\u01e1\3\2\2\2\u01e1\u01e5\3\2\2\2\u01e2\u01e5\7X\2\2\u01e3\u01e5\7Y\2"+ - "\2\u01e4\u01ae\3\2\2\2\u01e4\u01b3\3\2\2\2\u01e4\u01bb\3\2\2\2\u01e4\u01c3"+ - "\3\2\2\2\u01e4\u01c8\3\2\2\2\u01e4\u01ca\3\2\2\2\u01e4\u01cc\3\2\2\2\u01e4"+ - "\u01ce\3\2\2\2\u01e4\u01d0\3\2\2\2\u01e4\u01db\3\2\2\2\u01e4\u01dc\3\2"+ - "\2\2\u01e4\u01de\3\2\2\2\u01e4\u01e2\3\2\2\2\u01e4\u01e3\3\2\2\2\u01e5"+ - "\u0222\3\2\2\2\u01e6\u01e7\f\25\2\2\u01e7\u01e8\t\6\2\2\u01e8\u0221\5"+ - "> \26\u01e9\u01ea\f\24\2\2\u01ea\u01eb\t\7\2\2\u01eb\u0221\5> \25\u01ec"+ - "\u01ed\f\23\2\2\u01ed\u01ee\t\b\2\2\u01ee\u0221\5> \24\u01ef\u01f0\f\21"+ - "\2\2\u01f0\u01f1\t\t\2\2\u01f1\u0221\5> \22\u01f2\u01f3\f\20\2\2\u01f3"+ - "\u01f4\7\62\2\2\u01f4\u0221\5> \21\u01f5\u01f6\f\17\2\2\u01f6\u01f7\7"+ - ">\2\2\u01f7\u0221\5> \20\u01f8\u01f9\f\16\2\2\u01f9\u01fa\7?\2\2\u01fa"+ - "\u0221\5> \17\u01fb\u01fc\f\r\2\2\u01fc\u01fd\7@\2\2\u01fd\u0221\5> \16"+ - "\u01fe\u01ff\f\f\2\2\u01ff\u0200\7A\2\2\u0200\u0221\5> \r\u0201\u0202"+ - "\f\13\2\2\u0202\u0203\7B\2\2\u0203\u0204\5> \2\u0204\u0205\7 \2\2\u0205"+ - "\u0206\5> \f\u0206\u0221\3\2\2\2\u0207\u0208\f\n\2\2\u0208\u0209\7\7\2"+ - "\2\u0209\u0221\5> \n\u020a\u020b\f\t\2\2\u020b\u020c\t\n\2\2\u020c\u0221"+ - "\5> \t\u020d\u020e\f \2\2\u020e\u020f\7)\2\2\u020f\u0221\7c\2\2\u0210"+ - "\u0211\f\37\2\2\u0211\u0212\7*\2\2\u0212\u0221\7c\2\2\u0213\u0214\f\36"+ - "\2\2\u0214\u0216\7\b\2\2\u0215\u0217\5@!\2\u0216\u0215\3\2\2\2\u0216\u0217"+ - "\3\2\2\2\u0217\u0218\3\2\2\2\u0218\u0221\7\t\2\2\u0219\u021a\f\33\2\2"+ - "\u021a\u021b\7%\2\2\u021b\u021c\5<\37\2\u021c\u021d\7&\2\2\u021d\u0221"+ - "\3\2\2\2\u021e\u021f\f\30\2\2\u021f\u0221\t\3\2\2\u0220\u01e6\3\2\2\2"+ - "\u0220\u01e9\3\2\2\2\u0220\u01ec\3\2\2\2\u0220\u01ef\3\2\2\2\u0220\u01f2"+ - "\3\2\2\2\u0220\u01f5\3\2\2\2\u0220\u01f8\3\2\2\2\u0220\u01fb\3\2\2\2\u0220"+ - "\u01fe\3\2\2\2\u0220\u0201\3\2\2\2\u0220\u0207\3\2\2\2\u0220\u020a\3\2"+ - "\2\2\u0220\u020d\3\2\2\2\u0220\u0210\3\2\2\2\u0220\u0213\3\2\2\2\u0220"+ - "\u0219\3\2\2\2\u0220\u021e\3\2\2\2\u0221\u0224\3\2\2\2\u0222\u0220\3\2"+ - "\2\2\u0222\u0223\3\2\2\2\u0223?\3\2\2\2\u0224\u0222\3\2\2\2\u0225\u022a"+ - "\5> \2\u0226\u0227\7\6\2\2\u0227\u0229\5> \2\u0228\u0226\3\2\2\2\u0229"+ - "\u022c\3\2\2\2\u022a\u0228\3\2\2\2\u022a\u022b\3\2\2\2\u022bA\3\2\2\2"+ - "\u022c\u022a\3\2\2\2\u022d\u022f\7M\2\2\u022e\u0230\5D#\2\u022f\u022e"+ - "\3\2\2\2\u022f\u0230\3\2\2\2\u0230\u0231\3\2\2\2\u0231\u0232\7U\2\2\u0232"+ - "C\3\2\2\2\u0233\u0234\7\b\2\2\u0234\u0239\5F$\2\u0235\u0236\7\6\2\2\u0236"+ - "\u0238\5F$\2\u0237\u0235\3\2\2\2\u0238\u023b\3\2\2\2\u0239\u0237\3\2\2"+ - "\2\u0239\u023a\3\2\2\2\u023a\u023c\3\2\2\2\u023b\u0239\3\2\2\2\u023c\u023d"+ - "\7\t\2\2\u023dE\3\2\2\2\u023e\u023f\7N\2\2\u023f\u024e\7W\2\2\u0240\u0241"+ - "\7O\2\2\u0241\u024e\7c\2\2\u0242\u0243\7P\2\2\u0243\u024e\7W\2\2\u0244"+ - "\u0245\7Q\2\2\u0245\u024e\5> \2\u0246\u0247\7R\2\2\u0247\u024e\5> \2\u0248"+ - "\u024b\7\r\2\2\u0249\u024c\7\23\2\2\u024a\u024c\5> \2\u024b\u0249\3\2"+ - "\2\2\u024b\u024a\3\2\2\2\u024c\u024e\3\2\2\2\u024d\u023e\3\2\2\2\u024d"+ - "\u0240\3\2\2\2\u024d\u0242\3\2\2\2\u024d\u0244\3\2\2\2\u024d\u0246\3\2"+ - "\2\2\u024d\u0248\3\2\2\2\u024eG\3\2\2\2\u024f\u0251\5J&\2\u0250\u024f"+ - "\3\2\2\2\u0251\u0254\3\2\2\2\u0252\u0250\3\2\2\2\u0252\u0253\3\2\2\2\u0253"+ - "I\3\2\2\2\u0254\u0252\3\2\2\2\u0255\u0259\5L\'\2\u0256\u0259\5N(\2\u0257"+ - "\u0259\5P)\2\u0258\u0255\3\2\2\2\u0258\u0256\3\2\2\2\u0258\u0257\3\2\2"+ - "\2\u0259K\3\2\2\2\u025a\u025b\7c\2\2\u025b\u0262\7 \2\2\u025c\u025e\7"+ - "\61\2\2\u025d\u025f\7c\2\2\u025e\u025d\3\2\2\2\u025e\u025f\3\2\2\2\u025f"+ - "\u0260\3\2\2\2\u0260\u0262\7 \2\2\u0261\u025a\3\2\2\2\u0261\u025c\3\2"+ - "\2\2\u0262M\3\2\2\2\u0263\u0265\7T\2\2\u0264\u0266\5R*\2\u0265\u0264\3"+ - "\2\2\2\u0265\u0266\3\2\2\2\u0266O\3\2\2\2\u0267\u0268\7S\2\2\u0268\u026d"+ - "\5T+\2\u0269\u026a\7\6\2\2\u026a\u026c\5T+\2\u026b\u0269\3\2\2\2\u026c"+ - "\u026f\3\2\2\2\u026d\u026b\3\2\2\2\u026d\u026e\3\2\2\2\u026eQ\3\2\2\2"+ - "\u026f\u026d\3\2\2\2\u0270\u0288\5T+\2\u0271\u0272\7\f\2\2\u0272\u0288"+ - "\5T+\2\u0273\u0274\5T+\2\u0274\u0275\7\6\2\2\u0275\u0276\7c\2\2\u0276"+ - "\u0288\3\2\2\2\u0277\u0278\7\b\2\2\u0278\u0279\5T+\2\u0279\u027a\7\t\2"+ - "\2\u027a\u027b\7\6\2\2\u027b\u027c\7c\2\2\u027c\u0288\3\2\2\2\u027d\u027e"+ - "\7\b\2\2\u027e\u027f\5T+\2\u027f\u0280\7\6\2\2\u0280\u0281\7c\2\2\u0281"+ - "\u0282\7\t\2\2\u0282\u0288\3\2\2\2\u0283\u0284\7\b\2\2\u0284\u0285\5T"+ - "+\2\u0285\u0286\7\t\2\2\u0286\u0288\3\2\2\2\u0287\u0270\3\2\2\2\u0287"+ - "\u0271\3\2\2\2\u0287\u0273\3\2\2\2\u0287\u0277\3\2\2\2\u0287\u027d\3\2"+ - "\2\2\u0287\u0283\3\2\2\2\u0288S\3\2\2\2\u0289\u028a\b+\1\2\u028a\u028b"+ - "\7%\2\2\u028b\u028c\5T+\2\u028c\u028d\7&\2\2\u028d\u0298\3\2\2\2\u028e"+ - "\u028f\t\13\2\2\u028f\u0298\5T+\n\u0290\u0298\7c\2\2\u0291\u0298\7d\2"+ - "\2\u0292\u0293\7\n\2\2\u0293\u0294\7c\2\2\u0294\u0298\7\13\2\2\u0295\u0298"+ - "\7Z\2\2\u0296\u0298\7X\2\2\u0297\u0289\3\2\2\2\u0297\u028e\3\2\2\2\u0297"+ - "\u0290\3\2\2\2\u0297\u0291\3\2\2\2\u0297\u0292\3\2\2\2\u0297\u0295\3\2"+ - "\2\2\u0297\u0296\3\2\2\2\u0298\u02a7\3\2\2\2\u0299\u029a\f\f\2\2\u029a"+ - "\u029b\7)\2\2\u029b\u02a6\5T+\r\u029c\u029d\f\13\2\2\u029d\u029e\t\6\2"+ - "\2\u029e\u02a6\5T+\f\u029f\u02a0\f\t\2\2\u02a0\u02a1\t\f\2\2\u02a1\u02a6"+ - "\5T+\n\u02a2\u02a3\f\b\2\2\u02a3\u02a4\t\b\2\2\u02a4\u02a6\5T+\t\u02a5"+ - "\u0299\3\2\2\2\u02a5\u029c\3\2\2\2\u02a5\u029f\3\2\2\2\u02a5\u02a2\3\2"+ - "\2\2\u02a6\u02a9\3\2\2\2\u02a7\u02a5\3\2\2\2\u02a7\u02a8\3\2\2\2\u02a8"+ - "U\3\2\2\2\u02a9\u02a7\3\2\2\2A`i{\u0083\u008a\u0098\u009e\u00a4\u00a9"+ - "\u00b2\u00b9\u00c7\u00d9\u00dc\u00e5\u00ed\u00f4\u0101\u0106\u0112\u0120"+ - "\u012b\u0134\u013b\u0142\u0145\u014d\u0150\u0153\u015d\u0164\u016b\u0171"+ - "\u0173\u017b\u0181\u018d\u019b\u01a1\u01ab\u01b7\u01bf\u01d6\u01e0\u01e4"+ - "\u0216\u0220\u0222\u022a\u022f\u0239\u024b\u024d\u0252\u0258\u025e\u0261"+ - "\u0265\u026d\u0287\u0297\u02a5\u02a7"; + "\u009f\n\f\3\f\3\f\3\f\5\f\u00a4\n\f\5\f\u00a6\n\f\3\r\3\r\3\r\3\r\5\r"+ + "\u00ac\n\r\3\r\3\r\3\r\5\r\u00b1\n\r\3\r\3\r\3\16\3\16\3\16\7\16\u00b8"+ + "\n\16\f\16\16\16\u00bb\13\16\3\17\3\17\3\17\3\17\5\17\u00c1\n\17\3\20"+ + "\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\5\20\u00cf\n\20"+ + "\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21"+ + "\3\21\3\21\5\21\u00e1\n\21\3\21\5\21\u00e4\n\21\3\22\3\22\3\22\3\22\3"+ + "\22\7\22\u00eb\n\22\f\22\16\22\u00ee\13\22\3\22\3\22\3\23\6\23\u00f3\n"+ + "\23\r\23\16\23\u00f4\3\24\3\24\3\24\3\24\3\24\5\24\u00fc\n\24\3\24\3\24"+ + "\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\5\24\u0109\n\24\3\24\7\24"+ + "\u010c\n\24\f\24\16\24\u010f\13\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24"+ + "\7\24\u0118\n\24\f\24\16\24\u011b\13\24\3\24\3\24\3\24\3\24\3\24\3\24"+ + "\3\24\3\24\3\24\7\24\u0126\n\24\f\24\16\24\u0129\13\24\3\24\3\24\3\24"+ + "\3\24\3\24\3\24\3\24\3\24\5\24\u0133\n\24\3\24\3\24\3\24\3\24\3\24\3\24"+ + "\3\24\5\24\u013c\n\24\3\24\3\24\3\24\3\24\3\24\5\24\u0143\n\24\3\25\3"+ + "\25\3\25\3\25\3\25\5\25\u014a\n\25\3\25\5\25\u014d\n\25\3\25\3\25\3\25"+ + "\3\25\3\25\3\25\5\25\u0155\n\25\3\26\5\26\u0158\n\26\3\26\5\26\u015b\n"+ + "\26\3\27\3\27\3\27\3\27\3\27\3\27\3\27\3\27\5\27\u0165\n\27\3\27\3\27"+ + "\3\27\3\27\3\27\5\27\u016c\n\27\3\27\3\27\3\27\3\27\3\27\5\27\u0173\n"+ + "\27\3\27\3\27\3\27\3\27\7\27\u0179\n\27\f\27\16\27\u017c\13\27\3\30\3"+ + "\30\3\30\3\31\3\31\5\31\u0183\n\31\3\31\3\31\6\31\u0187\n\31\r\31\16\31"+ + "\u0188\3\31\3\31\3\32\3\32\3\32\3\33\3\33\3\33\3\34\3\34\5\34\u0195\n"+ + "\34\3\34\3\34\3\34\3\34\3\35\3\35\3\35\3\35\3\35\3\35\7\35\u01a1\n\35"+ + "\f\35\16\35\u01a4\13\35\3\36\3\36\3\36\5\36\u01a9\n\36\3\37\3\37\3\37"+ + "\3\37\3\37\3\37\7\37\u01b1\n\37\f\37\16\37\u01b4\13\37\3 \3 \3 \3 \3 "+ + "\3 \3 \3 \3 \5 \u01bf\n \3 \3 \3 \3 \3 \3 \5 \u01c7\n \3 \3 \3 \3 \3 "+ + "\3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \7 \u01dc\n \f \16 \u01df\13"+ + " \3 \3 \3 \3 \3 \6 \u01e6\n \r \16 \u01e7\3 \3 \5 \u01ec\n \3 \3 \3 \3"+ + " \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3"+ + " \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \3 \5 \u021e"+ + "\n \3 \3 \3 \3 \3 \3 \3 \3 \7 \u0228\n \f \16 \u022b\13 \3!\3!\3!\7!\u0230"+ + "\n!\f!\16!\u0233\13!\3\"\3\"\5\"\u0237\n\"\3\"\3\"\3#\3#\3#\3#\7#\u023f"+ + "\n#\f#\16#\u0242\13#\3#\3#\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\5$\u0253"+ + "\n$\5$\u0255\n$\3%\7%\u0258\n%\f%\16%\u025b\13%\3&\3&\3&\5&\u0260\n&\3"+ + "\'\3\'\3\'\3\'\5\'\u0266\n\'\3\'\5\'\u0269\n\'\3(\3(\5(\u026d\n(\3)\3"+ + ")\3)\3)\7)\u0273\n)\f)\16)\u0276\13)\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*"+ + "\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\5*\u028f\n*\3+\3+\3+\3+\3+\3+\3+"+ + "\3+\3+\3+\3+\3+\3+\3+\5+\u029f\n+\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+\3+"+ + "\7+\u02ad\n+\f+\16+\u02b0\13+\3+\2\b\24,8<>T,\2\4\6\b\n\f\16\20\22\24"+ + "\26\30\32\34\36 \"$&(*,.\60\62\64\668:<>@BDFHJLNPRT\2\r\3\2\"#\3\2-.\3"+ + "\2/\63\3\289\3\2\64\65\4\2$$\66\67\3\2/\60\3\28=\3\2CL\4\2/\6089\4\2$"+ + "$\66\66\2\u0311\2V\3\2\2\2\4Z\3\2\2\2\6`\3\2\2\2\bc\3\2\2\2\ng\3\2\2\2"+ + "\f{\3\2\2\2\16}\3\2\2\2\20\u0083\3\2\2\2\22\u008d\3\2\2\2\24\u0090\3\2"+ + "\2\2\26\u00a5\3\2\2\2\30\u00a7\3\2\2\2\32\u00b4\3\2\2\2\34\u00c0\3\2\2"+ + "\2\36\u00ce\3\2\2\2 \u00e3\3\2\2\2\"\u00e5\3\2\2\2$\u00f2\3\2\2\2&\u0142"+ + "\3\2\2\2(\u0154\3\2\2\2*\u015a\3\2\2\2,\u016b\3\2\2\2.\u017d\3\2\2\2\60"+ + "\u0180\3\2\2\2\62\u018c\3\2\2\2\64\u018f\3\2\2\2\66\u0192\3\2\2\28\u019a"+ + "\3\2\2\2:\u01a5\3\2\2\2<\u01aa\3\2\2\2>\u01eb\3\2\2\2@\u022c\3\2\2\2B"+ + "\u0234\3\2\2\2D\u023a\3\2\2\2F\u0254\3\2\2\2H\u0259\3\2\2\2J\u025f\3\2"+ + "\2\2L\u0268\3\2\2\2N\u026a\3\2\2\2P\u026e\3\2\2\2R\u028e\3\2\2\2T\u029e"+ + "\3\2\2\2VW\5\6\4\2WX\5\n\6\2XY\7\2\2\3Y\3\3\2\2\2Z[\5H%\2[\\\7\2\2\3\\"+ + "\5\3\2\2\2]_\5\b\5\2^]\3\2\2\2_b\3\2\2\2`^\3\2\2\2`a\3\2\2\2a\7\3\2\2"+ + "\2b`\3\2\2\2cd\7\3\2\2de\7W\2\2e\t\3\2\2\2fh\5\f\7\2gf\3\2\2\2hi\3\2\2"+ + "\2ig\3\2\2\2ij\3\2\2\2j\13\3\2\2\2kl\5\22\n\2lm\7\4\2\2m|\3\2\2\2no\5"+ + "\60\31\2op\7\4\2\2p|\3\2\2\2qr\5\66\34\2rs\7\4\2\2s|\3\2\2\2t|\5\30\r"+ + "\2u|\5\30\r\2v|\5B\"\2w|\5\36\20\2xy\5\16\b\2yz\7\4\2\2z|\3\2\2\2{k\3"+ + "\2\2\2{n\3\2\2\2{q\3\2\2\2{t\3\2\2\2{u\3\2\2\2{v\3\2\2\2{w\3\2\2\2{x\3"+ + "\2\2\2|\r\3\2\2\2}~\7\5\2\2~\177\5\22\n\2\177\17\3\2\2\2\u0080\u0082\5"+ + " \21\2\u0081\u0080\3\2\2\2\u0082\u0085\3\2\2\2\u0083\u0081\3\2\2\2\u0083"+ + "\u0084\3\2\2\2\u0084\u0086\3\2\2\2\u0085\u0083\3\2\2\2\u0086\u008a\5,"+ + "\27\2\u0087\u0089\5 \21\2\u0088\u0087\3\2\2\2\u0089\u008c\3\2\2\2\u008a"+ + "\u0088\3\2\2\2\u008a\u008b\3\2\2\2\u008b\21\3\2\2\2\u008c\u008a\3\2\2"+ + "\2\u008d\u008e\5\20\t\2\u008e\u008f\5\24\13\2\u008f\23\3\2\2\2\u0090\u0091"+ + "\b\13\1\2\u0091\u0092\5\26\f\2\u0092\u0098\3\2\2\2\u0093\u0094\f\3\2\2"+ + "\u0094\u0095\7\6\2\2\u0095\u0097\5\26\f\2\u0096\u0093\3\2\2\2\u0097\u009a"+ + "\3\2\2\2\u0098\u0096\3\2\2\2\u0098\u0099\3\2\2\2\u0099\25\3\2\2\2\u009a"+ + "\u0098\3\2\2\2\u009b\u009e\7c\2\2\u009c\u009d\7\7\2\2\u009d\u009f\5> "+ + "\2\u009e\u009c\3\2\2\2\u009e\u009f\3\2\2\2\u009f\u00a6\3\2\2\2\u00a0\u00a3"+ + "\7c\2\2\u00a1\u00a2\7\7\2\2\u00a2\u00a4\5B\"\2\u00a3\u00a1\3\2\2\2\u00a3"+ + "\u00a4\3\2\2\2\u00a4\u00a6\3\2\2\2\u00a5\u009b\3\2\2\2\u00a5\u00a0\3\2"+ + "\2\2\u00a6\27\3\2\2\2\u00a7\u00a8\5\20\t\2\u00a8\u00a9\7c\2\2\u00a9\u00ab"+ + "\7\b\2\2\u00aa\u00ac\5\32\16\2\u00ab\u00aa\3\2\2\2\u00ab\u00ac\3\2\2\2"+ + "\u00ac\u00ad\3\2\2\2\u00ad\u00ae\7\t\2\2\u00ae\u00b0\7\n\2\2\u00af\u00b1"+ + "\5$\23\2\u00b0\u00af\3\2\2\2\u00b0\u00b1\3\2\2\2\u00b1\u00b2\3\2\2\2\u00b2"+ + "\u00b3\7\13\2\2\u00b3\31\3\2\2\2\u00b4\u00b9\5\34\17\2\u00b5\u00b6\7\6"+ + "\2\2\u00b6\u00b8\5\34\17\2\u00b7\u00b5\3\2\2\2\u00b8\u00bb\3\2\2\2\u00b9"+ + "\u00b7\3\2\2\2\u00b9\u00ba\3\2\2\2\u00ba\33\3\2\2\2\u00bb\u00b9\3\2\2"+ + "\2\u00bc\u00bd\5\20\t\2\u00bd\u00be\7c\2\2\u00be\u00c1\3\2\2\2\u00bf\u00c1"+ + "\7V\2\2\u00c0\u00bc\3\2\2\2\u00c0\u00bf\3\2\2\2\u00c1\35\3\2\2\2\u00c2"+ + "\u00c3\7\f\2\2\u00c3\u00cf\5\"\22\2\u00c4\u00c5\7\f\2\2\u00c5\u00c6\7"+ + "\r\2\2\u00c6\u00c7\7\b\2\2\u00c7\u00c8\7Z\2\2\u00c8\u00cf\7\t\2\2\u00c9"+ + "\u00ca\7\f\2\2\u00ca\u00cb\7\16\2\2\u00cb\u00cc\7\b\2\2\u00cc\u00cd\7"+ + "c\2\2\u00cd\u00cf\7\t\2\2\u00ce\u00c2\3\2\2\2\u00ce\u00c4\3\2\2\2\u00ce"+ + "\u00c9\3\2\2\2\u00cf\37\3\2\2\2\u00d0\u00e4\7\17\2\2\u00d1\u00e4\7\20"+ + "\2\2\u00d2\u00d3\7\21\2\2\u00d3\u00d4\7\b\2\2\u00d4\u00d5\7Z\2\2\u00d5"+ + "\u00e4\7\t\2\2\u00d6\u00d7\7\22\2\2\u00d7\u00d8\7\b\2\2\u00d8\u00d9\7"+ + "c\2\2\u00d9\u00e4\7\t\2\2\u00da\u00e4\7\23\2\2\u00db\u00e4\7\24\2\2\u00dc"+ + "\u00e0\7\25\2\2\u00dd\u00de\7\b\2\2\u00de\u00df\7c\2\2\u00df\u00e1\7\t"+ + "\2\2\u00e0\u00dd\3\2\2\2\u00e0\u00e1\3\2\2\2\u00e1\u00e4\3\2\2\2\u00e2"+ + "\u00e4\5\"\22\2\u00e3\u00d0\3\2\2\2\u00e3\u00d1\3\2\2\2\u00e3\u00d2\3"+ + "\2\2\2\u00e3\u00d6\3\2\2\2\u00e3\u00da\3\2\2\2\u00e3\u00db\3\2\2\2\u00e3"+ + "\u00dc\3\2\2\2\u00e3\u00e2\3\2\2\2\u00e4!\3\2\2\2\u00e5\u00e6\7\26\2\2"+ + "\u00e6\u00e7\7\b\2\2\u00e7\u00ec\7Z\2\2\u00e8\u00e9\7\6\2\2\u00e9\u00eb"+ + "\7Z\2\2\u00ea\u00e8\3\2\2\2\u00eb\u00ee\3\2\2\2\u00ec\u00ea\3\2\2\2\u00ec"+ + "\u00ed\3\2\2\2\u00ed\u00ef\3\2\2\2\u00ee\u00ec\3\2\2\2\u00ef\u00f0\7\t"+ + "\2\2\u00f0#\3\2\2\2\u00f1\u00f3\5&\24\2\u00f2\u00f1\3\2\2\2\u00f3\u00f4"+ + "\3\2\2\2\u00f4\u00f2\3\2\2\2\u00f4\u00f5\3\2\2\2\u00f5%\3\2\2\2\u00f6"+ + "\u00f7\5\22\n\2\u00f7\u00f8\7\4\2\2\u00f8\u0143\3\2\2\2\u00f9\u00fb\7"+ + "\n\2\2\u00fa\u00fc\5$\23\2\u00fb\u00fa\3\2\2\2\u00fb\u00fc\3\2\2\2\u00fc"+ + "\u00fd\3\2\2\2\u00fd\u0143\7\13\2\2\u00fe\u00ff\5<\37\2\u00ff\u0100\7"+ + "\4\2\2\u0100\u0143\3\2\2\2\u0101\u0102\7\27\2\2\u0102\u0103\7\b\2\2\u0103"+ + "\u0104\5<\37\2\u0104\u0105\7\t\2\2\u0105\u0108\5&\24\2\u0106\u0107\7\30"+ + "\2\2\u0107\u0109\5&\24\2\u0108\u0106\3\2\2\2\u0108\u0109\3\2\2\2\u0109"+ + "\u0143\3\2\2\2\u010a\u010c\5 \21\2\u010b\u010a\3\2\2\2\u010c\u010f\3\2"+ + "\2\2\u010d\u010b\3\2\2\2\u010d\u010e\3\2\2\2\u010e\u0110\3\2\2\2\u010f"+ + "\u010d\3\2\2\2\u0110\u0111\7\31\2\2\u0111\u0112\7\b\2\2\u0112\u0113\5"+ + "<\37\2\u0113\u0114\7\t\2\2\u0114\u0115\5&\24\2\u0115\u0143\3\2\2\2\u0116"+ + "\u0118\5 \21\2\u0117\u0116\3\2\2\2\u0118\u011b\3\2\2\2\u0119\u0117\3\2"+ + "\2\2\u0119\u011a\3\2\2\2\u011a\u011c\3\2\2\2\u011b\u0119\3\2\2\2\u011c"+ + "\u011d\7\32\2\2\u011d\u011e\5&\24\2\u011e\u011f\7\31\2\2\u011f\u0120\7"+ + "\b\2\2\u0120\u0121\5<\37\2\u0121\u0122\7\t\2\2\u0122\u0123\7\4\2\2\u0123"+ + "\u0143\3\2\2\2\u0124\u0126\5 \21\2\u0125\u0124\3\2\2\2\u0126\u0129\3\2"+ + "\2\2\u0127\u0125\3\2\2\2\u0127\u0128\3\2\2\2\u0128\u012a\3\2\2\2\u0129"+ + "\u0127\3\2\2\2\u012a\u012b\7\33\2\2\u012b\u012c\7\b\2\2\u012c\u012d\5"+ + "(\25\2\u012d\u012e\7\t\2\2\u012e\u012f\5&\24\2\u012f\u0143\3\2\2\2\u0130"+ + "\u0132\7\34\2\2\u0131\u0133\5<\37\2\u0132\u0131\3\2\2\2\u0132\u0133\3"+ + "\2\2\2\u0133\u0134\3\2\2\2\u0134\u0143\7\4\2\2\u0135\u0136\7\35\2\2\u0136"+ + "\u0143\7\4\2\2\u0137\u0138\7\36\2\2\u0138\u0143\7\4\2\2\u0139\u013b\7"+ + "\37\2\2\u013a\u013c\5D#\2\u013b\u013a\3\2\2\2\u013b\u013c\3\2\2\2\u013c"+ + "\u013d\3\2\2\2\u013d\u013e\7\n\2\2\u013e\u013f\5H%\2\u013f\u0140\7\13"+ + "\2\2\u0140\u0143\3\2\2\2\u0141\u0143\5B\"\2\u0142\u00f6\3\2\2\2\u0142"+ + "\u00f9\3\2\2\2\u0142\u00fe\3\2\2\2\u0142\u0101\3\2\2\2\u0142\u010d\3\2"+ + "\2\2\u0142\u0119\3\2\2\2\u0142\u0127\3\2\2\2\u0142\u0130\3\2\2\2\u0142"+ + "\u0135\3\2\2\2\u0142\u0137\3\2\2\2\u0142\u0139\3\2\2\2\u0142\u0141\3\2"+ + "\2\2\u0143\'\3\2\2\2\u0144\u0145\5*\26\2\u0145\u0146\7\4\2\2\u0146\u0147"+ + "\5<\37\2\u0147\u0149\7\4\2\2\u0148\u014a\5<\37\2\u0149\u0148\3\2\2\2\u0149"+ + "\u014a\3\2\2\2\u014a\u0155\3\2\2\2\u014b\u014d\5\20\t\2\u014c\u014b\3"+ + "\2\2\2\u014c\u014d\3\2\2\2\u014d\u014e\3\2\2\2\u014e\u014f\7c\2\2\u014f"+ + "\u0150\7 \2\2\u0150\u0151\5> \2\u0151\u0152\7!\2\2\u0152\u0153\5> \2\u0153"+ + "\u0155\3\2\2\2\u0154\u0144\3\2\2\2\u0154\u014c\3\2\2\2\u0155)\3\2\2\2"+ + "\u0156\u0158\5\22\n\2\u0157\u0156\3\2\2\2\u0157\u0158\3\2\2\2\u0158\u015b"+ + "\3\2\2\2\u0159\u015b\5<\37\2\u015a\u0157\3\2\2\2\u015a\u0159\3\2\2\2\u015b"+ + "+\3\2\2\2\u015c\u015d\b\27\1\2\u015d\u015e\7\b\2\2\u015e\u015f\5,\27\2"+ + "\u015f\u0160\7\t\2\2\u0160\u016c\3\2\2\2\u0161\u016c\7V\2\2\u0162\u0164"+ + "\t\2\2\2\u0163\u0165\7V\2\2\u0164\u0163\3\2\2\2\u0164\u0165\3\2\2\2\u0165"+ + "\u016c\3\2\2\2\u0166\u016c\5\60\31\2\u0167\u016c\5.\30\2\u0168\u016c\5"+ + "\66\34\2\u0169\u016c\5\64\33\2\u016a\u016c\7c\2\2\u016b\u015c\3\2\2\2"+ + "\u016b\u0161\3\2\2\2\u016b\u0162\3\2\2\2\u016b\u0166\3\2\2\2\u016b\u0167"+ + "\3\2\2\2\u016b\u0168\3\2\2\2\u016b\u0169\3\2\2\2\u016b\u016a\3\2\2\2\u016c"+ + "\u017a\3\2\2\2\u016d\u016e\f\n\2\2\u016e\u0179\7$\2\2\u016f\u0170\f\t"+ + "\2\2\u0170\u0172\7%\2\2\u0171\u0173\5> \2\u0172\u0171\3\2\2\2\u0172\u0173"+ + "\3\2\2\2\u0173\u0174\3\2\2\2\u0174\u0179\7&\2\2\u0175\u0176\f\b\2\2\u0176"+ + "\u0177\7\b\2\2\u0177\u0179\7\t\2\2\u0178\u016d\3\2\2\2\u0178\u016f\3\2"+ + "\2\2\u0178\u0175\3\2\2\2\u0179\u017c\3\2\2\2\u017a\u0178\3\2\2\2\u017a"+ + "\u017b\3\2\2\2\u017b-\3\2\2\2\u017c\u017a\3\2\2\2\u017d\u017e\7\'\2\2"+ + "\u017e\u017f\7c\2\2\u017f/\3\2\2\2\u0180\u0182\7\'\2\2\u0181\u0183\7c"+ + "\2\2\u0182\u0181\3\2\2\2\u0182\u0183\3\2\2\2\u0183\u0184\3\2\2\2\u0184"+ + "\u0186\7\n\2\2\u0185\u0187\5\62\32\2\u0186\u0185\3\2\2\2\u0187\u0188\3"+ + "\2\2\2\u0188\u0186\3\2\2\2\u0188\u0189\3\2\2\2\u0189\u018a\3\2\2\2\u018a"+ + "\u018b\7\13\2\2\u018b\61\3\2\2\2\u018c\u018d\5\22\n\2\u018d\u018e\7\4"+ + "\2\2\u018e\63\3\2\2\2\u018f\u0190\7(\2\2\u0190\u0191\7c\2\2\u0191\65\3"+ + "\2\2\2\u0192\u0194\7(\2\2\u0193\u0195\7c\2\2\u0194\u0193\3\2\2\2\u0194"+ + "\u0195\3\2\2\2\u0195\u0196\3\2\2\2\u0196\u0197\7\n\2\2\u0197\u0198\58"+ + "\35\2\u0198\u0199\7\13\2\2\u0199\67\3\2\2\2\u019a\u019b\b\35\1\2\u019b"+ + "\u019c\5:\36\2\u019c\u01a2\3\2\2\2\u019d\u019e\f\3\2\2\u019e\u019f\7\6"+ + "\2\2\u019f\u01a1\5:\36\2\u01a0\u019d\3\2\2\2\u01a1\u01a4\3\2\2\2\u01a2"+ + "\u01a0\3\2\2\2\u01a2\u01a3\3\2\2\2\u01a39\3\2\2\2\u01a4\u01a2\3\2\2\2"+ + "\u01a5\u01a8\7c\2\2\u01a6\u01a7\7\7\2\2\u01a7\u01a9\5> \2\u01a8\u01a6"+ + "\3\2\2\2\u01a8\u01a9\3\2\2\2\u01a9;\3\2\2\2\u01aa\u01ab\b\37\1\2\u01ab"+ + "\u01ac\5> \2\u01ac\u01b2\3\2\2\2\u01ad\u01ae\f\3\2\2\u01ae\u01af\7\6\2"+ + "\2\u01af\u01b1\5> \2\u01b0\u01ad\3\2\2\2\u01b1\u01b4\3\2\2\2\u01b2\u01b0"+ + "\3\2\2\2\u01b2\u01b3\3\2\2\2\u01b3=\3\2\2\2\u01b4\u01b2\3\2\2\2\u01b5"+ + "\u01b6\b \1\2\u01b6\u01b7\7\b\2\2\u01b7\u01b8\5<\37\2\u01b8\u01b9\7\t"+ + "\2\2\u01b9\u01ec\3\2\2\2\u01ba\u01bb\7+\2\2\u01bb\u01be\7\b\2\2\u01bc"+ + "\u01bf\5> \2\u01bd\u01bf\5,\27\2\u01be\u01bc\3\2\2\2\u01be\u01bd\3\2\2"+ + "\2\u01bf\u01c0\3\2\2\2\u01c0\u01c1\7\t\2\2\u01c1\u01ec\3\2\2\2\u01c2\u01c3"+ + "\7,\2\2\u01c3\u01c6\7\b\2\2\u01c4\u01c7\5> \2\u01c5\u01c7\5,\27\2\u01c6"+ + "\u01c4\3\2\2\2\u01c6\u01c5\3\2\2\2\u01c7\u01c8\3\2\2\2\u01c8\u01c9\7\t"+ + "\2\2\u01c9\u01ec\3\2\2\2\u01ca\u01cb\7\b\2\2\u01cb\u01cc\5,\27\2\u01cc"+ + "\u01cd\7\t\2\2\u01cd\u01ce\5> \32\u01ce\u01ec\3\2\2\2\u01cf\u01d0\t\3"+ + "\2\2\u01d0\u01ec\5> \31\u01d1\u01d2\7$\2\2\u01d2\u01ec\5> \27\u01d3\u01d4"+ + "\t\4\2\2\u01d4\u01ec\5> \26\u01d5\u01d6\t\5\2\2\u01d6\u01ec\5> \22\u01d7"+ + "\u01d8\7\n\2\2\u01d8\u01dd\5> \2\u01d9\u01da\7\6\2\2\u01da\u01dc\5> \2"+ + "\u01db\u01d9\3\2\2\2\u01dc\u01df\3\2\2\2\u01dd\u01db\3\2\2\2\u01dd\u01de"+ + "\3\2\2\2\u01de\u01e0\3\2\2\2\u01df\u01dd\3\2\2\2\u01e0\u01e1\7\13\2\2"+ + "\u01e1\u01ec\3\2\2\2\u01e2\u01ec\7c\2\2\u01e3\u01ec\7Z\2\2\u01e4\u01e6"+ + "\7W\2\2\u01e5\u01e4\3\2\2\2\u01e6\u01e7\3\2\2\2\u01e7\u01e5\3\2\2\2\u01e7"+ + "\u01e8\3\2\2\2\u01e8\u01ec\3\2\2\2\u01e9\u01ec\7X\2\2\u01ea\u01ec\7Y\2"+ + "\2\u01eb\u01b5\3\2\2\2\u01eb\u01ba\3\2\2\2\u01eb\u01c2\3\2\2\2\u01eb\u01ca"+ + "\3\2\2\2\u01eb\u01cf\3\2\2\2\u01eb\u01d1\3\2\2\2\u01eb\u01d3\3\2\2\2\u01eb"+ + "\u01d5\3\2\2\2\u01eb\u01d7\3\2\2\2\u01eb\u01e2\3\2\2\2\u01eb\u01e3\3\2"+ + "\2\2\u01eb\u01e5\3\2\2\2\u01eb\u01e9\3\2\2\2\u01eb\u01ea\3\2\2\2\u01ec"+ + "\u0229\3\2\2\2\u01ed\u01ee\f\25\2\2\u01ee\u01ef\t\6\2\2\u01ef\u0228\5"+ + "> \26\u01f0\u01f1\f\24\2\2\u01f1\u01f2\t\7\2\2\u01f2\u0228\5> \25\u01f3"+ + "\u01f4\f\23\2\2\u01f4\u01f5\t\b\2\2\u01f5\u0228\5> \24\u01f6\u01f7\f\21"+ + "\2\2\u01f7\u01f8\t\t\2\2\u01f8\u0228\5> \22\u01f9\u01fa\f\20\2\2\u01fa"+ + "\u01fb\7\62\2\2\u01fb\u0228\5> \21\u01fc\u01fd\f\17\2\2\u01fd\u01fe\7"+ + ">\2\2\u01fe\u0228\5> \20\u01ff\u0200\f\16\2\2\u0200\u0201\7?\2\2\u0201"+ + "\u0228\5> \17\u0202\u0203\f\r\2\2\u0203\u0204\7@\2\2\u0204\u0228\5> \16"+ + "\u0205\u0206\f\f\2\2\u0206\u0207\7A\2\2\u0207\u0228\5> \r\u0208\u0209"+ + "\f\13\2\2\u0209\u020a\7B\2\2\u020a\u020b\5> \2\u020b\u020c\7 \2\2\u020c"+ + "\u020d\5> \f\u020d\u0228\3\2\2\2\u020e\u020f\f\n\2\2\u020f\u0210\7\7\2"+ + "\2\u0210\u0228\5> \n\u0211\u0212\f\t\2\2\u0212\u0213\t\n\2\2\u0213\u0228"+ + "\5> \t\u0214\u0215\f \2\2\u0215\u0216\7)\2\2\u0216\u0228\7c\2\2\u0217"+ + "\u0218\f\37\2\2\u0218\u0219\7*\2\2\u0219\u0228\7c\2\2\u021a\u021b\f\36"+ + "\2\2\u021b\u021d\7\b\2\2\u021c\u021e\5@!\2\u021d\u021c\3\2\2\2\u021d\u021e"+ + "\3\2\2\2\u021e\u021f\3\2\2\2\u021f\u0228\7\t\2\2\u0220\u0221\f\33\2\2"+ + "\u0221\u0222\7%\2\2\u0222\u0223\5<\37\2\u0223\u0224\7&\2\2\u0224\u0228"+ + "\3\2\2\2\u0225\u0226\f\30\2\2\u0226\u0228\t\3\2\2\u0227\u01ed\3\2\2\2"+ + "\u0227\u01f0\3\2\2\2\u0227\u01f3\3\2\2\2\u0227\u01f6\3\2\2\2\u0227\u01f9"+ + "\3\2\2\2\u0227\u01fc\3\2\2\2\u0227\u01ff\3\2\2\2\u0227\u0202\3\2\2\2\u0227"+ + "\u0205\3\2\2\2\u0227\u0208\3\2\2\2\u0227\u020e\3\2\2\2\u0227\u0211\3\2"+ + "\2\2\u0227\u0214\3\2\2\2\u0227\u0217\3\2\2\2\u0227\u021a\3\2\2\2\u0227"+ + "\u0220\3\2\2\2\u0227\u0225\3\2\2\2\u0228\u022b\3\2\2\2\u0229\u0227\3\2"+ + "\2\2\u0229\u022a\3\2\2\2\u022a?\3\2\2\2\u022b\u0229\3\2\2\2\u022c\u0231"+ + "\5> \2\u022d\u022e\7\6\2\2\u022e\u0230\5> \2\u022f\u022d\3\2\2\2\u0230"+ + "\u0233\3\2\2\2\u0231\u022f\3\2\2\2\u0231\u0232\3\2\2\2\u0232A\3\2\2\2"+ + "\u0233\u0231\3\2\2\2\u0234\u0236\7M\2\2\u0235\u0237\5D#\2\u0236\u0235"+ + "\3\2\2\2\u0236\u0237\3\2\2\2\u0237\u0238\3\2\2\2\u0238\u0239\7U\2\2\u0239"+ + "C\3\2\2\2\u023a\u023b\7\b\2\2\u023b\u0240\5F$\2\u023c\u023d\7\6\2\2\u023d"+ + "\u023f\5F$\2\u023e\u023c\3\2\2\2\u023f\u0242\3\2\2\2\u0240\u023e\3\2\2"+ + "\2\u0240\u0241\3\2\2\2\u0241\u0243\3\2\2\2\u0242\u0240\3\2\2\2\u0243\u0244"+ + "\7\t\2\2\u0244E\3\2\2\2\u0245\u0246\7N\2\2\u0246\u0255\7W\2\2\u0247\u0248"+ + "\7O\2\2\u0248\u0255\7c\2\2\u0249\u024a\7P\2\2\u024a\u0255\7W\2\2\u024b"+ + "\u024c\7Q\2\2\u024c\u0255\5> \2\u024d\u024e\7R\2\2\u024e\u0255\5> \2\u024f"+ + "\u0252\7\r\2\2\u0250\u0253\7\23\2\2\u0251\u0253\5> \2\u0252\u0250\3\2"+ + "\2\2\u0252\u0251\3\2\2\2\u0253\u0255\3\2\2\2\u0254\u0245\3\2\2\2\u0254"+ + "\u0247\3\2\2\2\u0254\u0249\3\2\2\2\u0254\u024b\3\2\2\2\u0254\u024d\3\2"+ + "\2\2\u0254\u024f\3\2\2\2\u0255G\3\2\2\2\u0256\u0258\5J&\2\u0257\u0256"+ + "\3\2\2\2\u0258\u025b\3\2\2\2\u0259\u0257\3\2\2\2\u0259\u025a\3\2\2\2\u025a"+ + "I\3\2\2\2\u025b\u0259\3\2\2\2\u025c\u0260\5L\'\2\u025d\u0260\5N(\2\u025e"+ + "\u0260\5P)\2\u025f\u025c\3\2\2\2\u025f\u025d\3\2\2\2\u025f\u025e\3\2\2"+ + "\2\u0260K\3\2\2\2\u0261\u0262\7c\2\2\u0262\u0269\7 \2\2\u0263\u0265\7"+ + "\61\2\2\u0264\u0266\7c\2\2\u0265\u0264\3\2\2\2\u0265\u0266\3\2\2\2\u0266"+ + "\u0267\3\2\2\2\u0267\u0269\7 \2\2\u0268\u0261\3\2\2\2\u0268\u0263\3\2"+ + "\2\2\u0269M\3\2\2\2\u026a\u026c\7T\2\2\u026b\u026d\5R*\2\u026c\u026b\3"+ + "\2\2\2\u026c\u026d\3\2\2\2\u026dO\3\2\2\2\u026e\u026f\7S\2\2\u026f\u0274"+ + "\5T+\2\u0270\u0271\7\6\2\2\u0271\u0273\5T+\2\u0272\u0270\3\2\2\2\u0273"+ + "\u0276\3\2\2\2\u0274\u0272\3\2\2\2\u0274\u0275\3\2\2\2\u0275Q\3\2\2\2"+ + "\u0276\u0274\3\2\2\2\u0277\u028f\5T+\2\u0278\u0279\7\f\2\2\u0279\u028f"+ + "\5T+\2\u027a\u027b\5T+\2\u027b\u027c\7\6\2\2\u027c\u027d\7c\2\2\u027d"+ + "\u028f\3\2\2\2\u027e\u027f\7\b\2\2\u027f\u0280\5T+\2\u0280\u0281\7\t\2"+ + "\2\u0281\u0282\7\6\2\2\u0282\u0283\7c\2\2\u0283\u028f\3\2\2\2\u0284\u0285"+ + "\7\b\2\2\u0285\u0286\5T+\2\u0286\u0287\7\6\2\2\u0287\u0288\7c\2\2\u0288"+ + "\u0289\7\t\2\2\u0289\u028f\3\2\2\2\u028a\u028b\7\b\2\2\u028b\u028c\5T"+ + "+\2\u028c\u028d\7\t\2\2\u028d\u028f\3\2\2\2\u028e\u0277\3\2\2\2\u028e"+ + "\u0278\3\2\2\2\u028e\u027a\3\2\2\2\u028e\u027e\3\2\2\2\u028e\u0284\3\2"+ + "\2\2\u028e\u028a\3\2\2\2\u028fS\3\2\2\2\u0290\u0291\b+\1\2\u0291\u0292"+ + "\7%\2\2\u0292\u0293\5T+\2\u0293\u0294\7&\2\2\u0294\u029f\3\2\2\2\u0295"+ + "\u0296\t\13\2\2\u0296\u029f\5T+\n\u0297\u029f\7c\2\2\u0298\u029f\7d\2"+ + "\2\u0299\u029a\7\n\2\2\u029a\u029b\7c\2\2\u029b\u029f\7\13\2\2\u029c\u029f"+ + "\7Z\2\2\u029d\u029f\7X\2\2\u029e\u0290\3\2\2\2\u029e\u0295\3\2\2\2\u029e"+ + "\u0297\3\2\2\2\u029e\u0298\3\2\2\2\u029e\u0299\3\2\2\2\u029e\u029c\3\2"+ + "\2\2\u029e\u029d\3\2\2\2\u029f\u02ae\3\2\2\2\u02a0\u02a1\f\f\2\2\u02a1"+ + "\u02a2\7)\2\2\u02a2\u02ad\5T+\r\u02a3\u02a4\f\13\2\2\u02a4\u02a5\t\6\2"+ + "\2\u02a5\u02ad\5T+\f\u02a6\u02a7\f\t\2\2\u02a7\u02a8\t\f\2\2\u02a8\u02ad"+ + "\5T+\n\u02a9\u02aa\f\b\2\2\u02aa\u02ab\t\b\2\2\u02ab\u02ad\5T+\t\u02ac"+ + "\u02a0\3\2\2\2\u02ac\u02a3\3\2\2\2\u02ac\u02a6\3\2\2\2\u02ac\u02a9\3\2"+ + "\2\2\u02ad\u02b0\3\2\2\2\u02ae\u02ac\3\2\2\2\u02ae\u02af\3\2\2\2\u02af"+ + "U\3\2\2\2\u02b0\u02ae\3\2\2\2C`i{\u0083\u008a\u0098\u009e\u00a3\u00a5"+ + "\u00ab\u00b0\u00b9\u00c0\u00ce\u00e0\u00e3\u00ec\u00f4\u00fb\u0108\u010d"+ + "\u0119\u0127\u0132\u013b\u0142\u0149\u014c\u0154\u0157\u015a\u0164\u016b"+ + "\u0172\u0178\u017a\u0182\u0188\u0194\u01a2\u01a8\u01b2\u01be\u01c6\u01dd"+ + "\u01e7\u01eb\u021d\u0227\u0229\u0231\u0236\u0240\u0252\u0254\u0259\u025f"+ + "\u0265\u0268\u026c\u0274\u028e\u029e\u02ac\u02ae"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCVisitor.java b/src/main/java/dk/camelot64/kickc/parser/KickCVisitor.java index 77b730fd4..fff9c94c6 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCVisitor.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCVisitor.java @@ -1,4 +1,4 @@ -// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickC.g4 by ANTLR 4.7 +// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickC.g4 by ANTLR 4.7 package dk.camelot64.kickc.parser; import org.antlr.v4.runtime.tree.ParseTreeVisitor; @@ -71,11 +71,19 @@ public interface KickCVisitor extends ParseTreeVisitor { */ T visitDeclVariableList(KickCParser.DeclVariableListContext ctx); /** - * Visit a parse tree produced by {@link KickCParser#declVariableInit}. + * Visit a parse tree produced by the {@code declVariableInitExpr} + * labeled alternative in {@link KickCParser#declVariableInit}. * @param ctx the parse tree * @return the visitor result */ - T visitDeclVariableInit(KickCParser.DeclVariableInitContext ctx); + T visitDeclVariableInitExpr(KickCParser.DeclVariableInitExprContext ctx); + /** + * Visit a parse tree produced by the {@code declVariableInitKasm} + * labeled alternative in {@link KickCParser#declVariableInit}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitDeclVariableInitKasm(KickCParser.DeclVariableInitKasmContext ctx); /** * Visit a parse tree produced by {@link KickCParser#declFunction}. * @param ctx the parse tree diff --git a/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java b/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java index 0df7822b7..4fb7401c3 100644 --- a/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java +++ b/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java @@ -4,6 +4,7 @@ import dk.camelot64.kickc.Compiler; import dk.camelot64.kickc.NumberParser; import dk.camelot64.kickc.asm.AsmClobber; import dk.camelot64.kickc.model.*; +import dk.camelot64.kickc.model.InternalError; import dk.camelot64.kickc.model.operators.*; import dk.camelot64.kickc.model.statements.*; import dk.camelot64.kickc.model.symbols.*; @@ -496,28 +497,11 @@ public class Pass0GenerateStatementSequence extends KickCBaseVisitor { } @Override - public Object visitDeclVariableInit(KickCParser.DeclVariableInitContext ctx) { - List directives = declVarDirectives; + public Object visitDeclVariableInitExpr(KickCParser.DeclVariableInitExprContext ctx) { + String varName = ctx.NAME().getText(); + VariableUnversioned lValue = visitDeclVariableInit(varName, ctx); SymbolType type = declVarType; List comments = declVarComments; - - String varName = ctx.NAME().getText(); - VariableUnversioned lValue; - try { - lValue = getCurrentScope().addVariable(varName, type); - } catch(CompileError e) { - throw new CompileError(e.getMessage(), new StatementSource(ctx)); - } - // Add directives - addDirectives(lValue, type, directives, new StatementSource(ctx)); - // Array / String variables are implicitly constant - if(type instanceof SymbolTypeArray || type.equals(SymbolType.STRING)) { - lValue.setDeclaredConstant(true); - } - if(lValue.isDeclaredConstant()) { - // Add comments to constant - lValue.setComments(ensureUnusedComments(comments)); - } KickCParser.ExprContext initializer = ctx.expr(); if(declVarStructMember || declVarTypeDef) { if(initializer != null) { @@ -537,15 +521,44 @@ public class Pass0GenerateStatementSequence extends KickCBaseVisitor { return null; } + @Override + public Object visitDeclVariableInitKasm(KickCParser.DeclVariableInitKasmContext ctx) { + throw new InternalError("Not implemented"); + } + + private VariableUnversioned visitDeclVariableInit(String varName, KickCParser.DeclVariableInitContext ctx) { + List directives = declVarDirectives; + SymbolType type = declVarType; + List comments = declVarComments; + + VariableUnversioned lValue; + try { + lValue = getCurrentScope().addVariable(varName, type); + } catch(CompileError e) { + throw new CompileError(e.getMessage(), new StatementSource(ctx)); + } + // Add directives + addDirectives(lValue, type, directives, new StatementSource(ctx)); + // Array / String variables are implicitly constant + if(type instanceof SymbolTypeArray || type.equals(SymbolType.STRING)) { + lValue.setDeclaredConstant(true); + } + if(lValue.isDeclaredConstant()) { + // Add comments to constant + lValue.setComments(ensureUnusedComments(comments)); + } + return lValue; + } + /** * Create a statement that initializes a variable with the default (zero) value. The statement has to be added to the program by the caller. - * @param lValue The variable to initialize + * @param varRef The variable to initialize * @param type The type of the variable * @param statementSource The source line * @param comments Any comments to add to the output * @return The new statement */ - public static Statement createDefaultInitializationStatement(VariableRef varRef, SymbolType type, StatementSource statementSource, List comments) { + static Statement createDefaultInitializationStatement(VariableRef varRef, SymbolType type, StatementSource statementSource, List comments) { Statement initStmt; if(type instanceof SymbolTypeIntegerFixed) { // Add an zero value initializer