From c10d646a5da474371fd39ba02ddaa414aa3e612b Mon Sep 17 00:00:00 2001
From: jespergravgaard
Date: Sun, 11 Aug 2019 23:32:24 +0200
Subject: [PATCH] Added syntax for switch-statement. #170
---
.../java/dk/camelot64/kickc/parser/KickC.g4 | 10 +
.../dk/camelot64/kickc/parser/KickC.tokens | 160 +-
.../kickc/parser/KickCBaseListener.java | 36 +
.../kickc/parser/KickCBaseVisitor.java | 21 +
.../dk/camelot64/kickc/parser/KickCLexer.java | 840 +++---
.../camelot64/kickc/parser/KickCLexer.tokens | 160 +-
.../camelot64/kickc/parser/KickCListener.java | 32 +
.../camelot64/kickc/parser/KickCParser.java | 2489 +++++++++--------
.../camelot64/kickc/parser/KickCVisitor.java | 19 +
9 files changed, 2049 insertions(+), 1718 deletions(-)
diff --git a/src/main/java/dk/camelot64/kickc/parser/KickC.g4 b/src/main/java/dk/camelot64/kickc/parser/KickC.g4
index a90f5d04d..6ddf1e7c9 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickC.g4
+++ b/src/main/java/dk/camelot64/kickc/parser/KickC.g4
@@ -99,6 +99,7 @@ stmt
| directive* 'while' '(' commaExpr ')' stmt #stmtWhile
| directive* 'do' stmt 'while' '(' commaExpr ')' ';' #stmtDoWhile
| directive* 'for' '(' forLoop ')' stmt #stmtFor
+ | 'switch' '(' commaExpr ')' '{' switchCases '}' #stmtSwitch
| 'return' commaExpr? ';' #stmtReturn
| 'break' ';' #stmtBreak
| 'continue' ';' #stmtContinue
@@ -106,6 +107,15 @@ stmt
| declKasm #stmtDeclKasm
;
+switchCases:
+ switchCase+ ( 'default:' stmtSeq? )
+ ;
+
+switchCase:
+ 'case' expr ':' stmtSeq?
+ ;
+
+
forLoop
: forClassicInit ';' commaExpr ';' commaExpr? #forClassic
| declTypes? NAME ':' expr ( '..' ) expr #forRange
diff --git a/src/main/java/dk/camelot64/kickc/parser/KickC.tokens b/src/main/java/dk/camelot64/kickc/parser/KickC.tokens
index d074a4438..5d97bde5a 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickC.tokens
+++ b/src/main/java/dk/camelot64/kickc/parser/KickC.tokens
@@ -89,26 +89,29 @@ T__87=88
T__88=89
T__89=90
T__90=91
-MNEMONIC=92
-KICKASM=93
-SIMPLETYPE=94
-STRING=95
-CHAR=96
-BOOLEAN=97
-NUMBER=98
-NUMFLOAT=99
-BINFLOAT=100
-DECFLOAT=101
-HEXFLOAT=102
-NUMINT=103
-BININTEGER=104
-DECINTEGER=105
-HEXINTEGER=106
-NAME=107
-ASMREL=108
-WS=109
-COMMENT_LINE=110
-COMMENT_BLOCK=111
+T__91=92
+T__92=93
+T__93=94
+MNEMONIC=95
+KICKASM=96
+SIMPLETYPE=97
+STRING=98
+CHAR=99
+BOOLEAN=100
+NUMBER=101
+NUMFLOAT=102
+BINFLOAT=103
+DECFLOAT=104
+HEXFLOAT=105
+NUMINT=106
+BININTEGER=107
+DECINTEGER=108
+HEXINTEGER=109
+NAME=110
+ASMREL=111
+WS=112
+COMMENT_LINE=113
+COMMENT_BLOCK=114
'import'=1
';'=2
'typedef'=3
@@ -143,60 +146,63 @@ COMMENT_BLOCK=111
'while'=32
'do'=33
'for'=34
-'return'=35
-'break'=36
-'continue'=37
-'asm'=38
-':'=39
-'..'=40
-'signed'=41
-'unsigned'=42
-'*'=43
-'['=44
-']'=45
-'struct'=46
-'enum'=47
-'.'=48
-'->'=49
-'sizeof'=50
-'typeid'=51
-'--'=52
-'++'=53
-'+'=54
-'-'=55
-'!'=56
-'&'=57
-'~'=58
-'>>'=59
-'<<'=60
-'/'=61
-'%'=62
-'<'=63
-'>'=64
-'=='=65
-'!='=66
-'<='=67
-'>='=68
-'^'=69
-'|'=70
-'&&'=71
-'||'=72
-'?'=73
-'+='=74
-'-='=75
-'*='=76
-'/='=77
-'%='=78
-'<<='=79
-'>>='=80
-'&='=81
-'|='=82
-'^='=83
-'kickasm'=84
-'resource'=85
-'uses'=86
-'clobbers'=87
-'bytes'=88
-'cycles'=89
-'.byte'=90
-'#'=91
+'switch'=35
+'return'=36
+'break'=37
+'continue'=38
+'asm'=39
+'default:'=40
+'case'=41
+':'=42
+'..'=43
+'signed'=44
+'unsigned'=45
+'*'=46
+'['=47
+']'=48
+'struct'=49
+'enum'=50
+'.'=51
+'->'=52
+'sizeof'=53
+'typeid'=54
+'--'=55
+'++'=56
+'+'=57
+'-'=58
+'!'=59
+'&'=60
+'~'=61
+'>>'=62
+'<<'=63
+'/'=64
+'%'=65
+'<'=66
+'>'=67
+'=='=68
+'!='=69
+'<='=70
+'>='=71
+'^'=72
+'|'=73
+'&&'=74
+'||'=75
+'?'=76
+'+='=77
+'-='=78
+'*='=79
+'/='=80
+'%='=81
+'<<='=82
+'>>='=83
+'&='=84
+'|='=85
+'^='=86
+'kickasm'=87
+'resource'=88
+'uses'=89
+'clobbers'=90
+'bytes'=91
+'cycles'=92
+'.byte'=93
+'#'=94
diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCBaseListener.java b/src/main/java/dk/camelot64/kickc/parser/KickCBaseListener.java
index 078feae9a..ae2f35152 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickCBaseListener.java
+++ b/src/main/java/dk/camelot64/kickc/parser/KickCBaseListener.java
@@ -491,6 +491,18 @@ public class KickCBaseListener implements KickCListener {
* The default implementation does nothing.
*/
@Override public void exitStmtFor(KickCParser.StmtForContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void enterStmtSwitch(KickCParser.StmtSwitchContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void exitStmtSwitch(KickCParser.StmtSwitchContext ctx) { }
/**
* {@inheritDoc}
*
@@ -551,6 +563,30 @@ public class KickCBaseListener implements KickCListener {
* The default implementation does nothing.
*/
@Override public void exitStmtDeclKasm(KickCParser.StmtDeclKasmContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void enterSwitchCases(KickCParser.SwitchCasesContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void exitSwitchCases(KickCParser.SwitchCasesContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void enterSwitchCase(KickCParser.SwitchCaseContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void exitSwitchCase(KickCParser.SwitchCaseContext 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 ee23bc796..b0a181a9c 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickCBaseVisitor.java
+++ b/src/main/java/dk/camelot64/kickc/parser/KickCBaseVisitor.java
@@ -291,6 +291,13 @@ public class KickCBaseVisitor extends AbstractParseTreeVisitor implements
* {@link #visitChildren} on {@code ctx}.
*/
@Override public T visitStmtFor(KickCParser.StmtForContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation returns the result of calling
+ * {@link #visitChildren} on {@code ctx}.
+ */
+ @Override public T visitStmtSwitch(KickCParser.StmtSwitchContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
@@ -326,6 +333,20 @@ public class KickCBaseVisitor extends AbstractParseTreeVisitor implements
* {@link #visitChildren} on {@code ctx}.
*/
@Override public T visitStmtDeclKasm(KickCParser.StmtDeclKasmContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation returns the result of calling
+ * {@link #visitChildren} on {@code ctx}.
+ */
+ @Override public T visitSwitchCases(KickCParser.SwitchCasesContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation returns the result of calling
+ * {@link #visitChildren} on {@code ctx}.
+ */
+ @Override public T visitSwitchCase(KickCParser.SwitchCaseContext 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 6f463fc71..d380c7c4b 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java
+++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java
@@ -29,10 +29,11 @@ public class KickCLexer extends Lexer {
T__66=67, T__67=68, T__68=69, T__69=70, T__70=71, T__71=72, T__72=73,
T__73=74, T__74=75, T__75=76, T__76=77, T__77=78, T__78=79, T__79=80,
T__80=81, T__81=82, T__82=83, T__83=84, T__84=85, T__85=86, T__86=87,
- T__87=88, T__88=89, T__89=90, T__90=91, MNEMONIC=92, KICKASM=93, SIMPLETYPE=94,
- STRING=95, CHAR=96, BOOLEAN=97, NUMBER=98, NUMFLOAT=99, BINFLOAT=100,
- DECFLOAT=101, HEXFLOAT=102, NUMINT=103, BININTEGER=104, DECINTEGER=105,
- HEXINTEGER=106, NAME=107, ASMREL=108, WS=109, COMMENT_LINE=110, COMMENT_BLOCK=111;
+ T__87=88, T__88=89, T__89=90, T__90=91, T__91=92, T__92=93, T__93=94,
+ MNEMONIC=95, KICKASM=96, SIMPLETYPE=97, STRING=98, CHAR=99, BOOLEAN=100,
+ NUMBER=101, NUMFLOAT=102, BINFLOAT=103, DECFLOAT=104, HEXFLOAT=105, NUMINT=106,
+ BININTEGER=107, DECINTEGER=108, HEXINTEGER=109, NAME=110, ASMREL=111,
+ WS=112, COMMENT_LINE=113, COMMENT_BLOCK=114;
public static String[] channelNames = {
"DEFAULT_TOKEN_CHANNEL", "HIDDEN"
};
@@ -53,10 +54,11 @@ public class KickCLexer extends Lexer {
"T__65", "T__66", "T__67", "T__68", "T__69", "T__70", "T__71", "T__72",
"T__73", "T__74", "T__75", "T__76", "T__77", "T__78", "T__79", "T__80",
"T__81", "T__82", "T__83", "T__84", "T__85", "T__86", "T__87", "T__88",
- "T__89", "T__90", "MNEMONIC", "KICKASM", "SIMPLETYPE", "STRING", "CHAR",
- "BOOLEAN", "NUMBER", "NUMFLOAT", "BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT",
- "BININTEGER", "DECINTEGER", "HEXINTEGER", "BINDIGIT", "DECDIGIT", "HEXDIGIT",
- "NAME", "NAME_START", "NAME_CHAR", "ASMREL", "WS", "COMMENT_LINE", "COMMENT_BLOCK"
+ "T__89", "T__90", "T__91", "T__92", "T__93", "MNEMONIC", "KICKASM", "SIMPLETYPE",
+ "STRING", "CHAR", "BOOLEAN", "NUMBER", "NUMFLOAT", "BINFLOAT", "DECFLOAT",
+ "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER", "BINDIGIT",
+ "DECDIGIT", "HEXDIGIT", "NAME", "NAME_START", "NAME_CHAR", "ASMREL", "WS",
+ "COMMENT_LINE", "COMMENT_BLOCK"
};
private static final String[] _LITERAL_NAMES = {
@@ -65,13 +67,14 @@ public class KickCLexer extends Lexer {
"'#target'", "'link'", "'code_seg'", "'data_seg'", "'encoding'", "'#encoding'",
"'const'", "'extern'", "'export'", "'align'", "'register'", "'inline'",
"'volatile'", "'interrupt'", "'if'", "'else'", "'while'", "'do'", "'for'",
- "'return'", "'break'", "'continue'", "'asm'", "':'", "'..'", "'signed'",
- "'unsigned'", "'*'", "'['", "']'", "'struct'", "'enum'", "'.'", "'->'",
- "'sizeof'", "'typeid'", "'--'", "'++'", "'+'", "'-'", "'!'", "'&'", "'~'",
- "'>>'", "'<<'", "'/'", "'%'", "'<'", "'>'", "'=='", "'!='", "'<='", "'>='",
- "'^'", "'|'", "'&&'", "'||'", "'?'", "'+='", "'-='", "'*='", "'/='", "'%='",
- "'<<='", "'>>='", "'&='", "'|='", "'^='", "'kickasm'", "'resource'", "'uses'",
- "'clobbers'", "'bytes'", "'cycles'", "'.byte'", "'#'"
+ "'switch'", "'return'", "'break'", "'continue'", "'asm'", "'default:'",
+ "'case'", "':'", "'..'", "'signed'", "'unsigned'", "'*'", "'['", "']'",
+ "'struct'", "'enum'", "'.'", "'->'", "'sizeof'", "'typeid'", "'--'", "'++'",
+ "'+'", "'-'", "'!'", "'&'", "'~'", "'>>'", "'<<'", "'/'", "'%'", "'<'",
+ "'>'", "'=='", "'!='", "'<='", "'>='", "'^'", "'|'", "'&&'", "'||'", "'?'",
+ "'+='", "'-='", "'*='", "'/='", "'%='", "'<<='", "'>>='", "'&='", "'|='",
+ "'^='", "'kickasm'", "'resource'", "'uses'", "'clobbers'", "'bytes'",
+ "'cycles'", "'.byte'", "'#'"
};
private static final String[] _SYMBOLIC_NAMES = {
null, null, null, null, null, null, null, null, null, null, null, null,
@@ -81,10 +84,10 @@ public class KickCLexer extends Lexer {
null, null, null, null, null, null, null, null, null, null, null, null,
null, null, null, null, null, null, null, null, null, null, null, null,
null, null, null, null, null, null, null, null, null, null, null, null,
- null, null, null, null, null, null, null, null, "MNEMONIC", "KICKASM",
- "SIMPLETYPE", "STRING", "CHAR", "BOOLEAN", "NUMBER", "NUMFLOAT", "BINFLOAT",
- "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER",
- "NAME", "ASMREL", "WS", "COMMENT_LINE", "COMMENT_BLOCK"
+ null, null, null, null, null, null, null, null, null, null, null, "MNEMONIC",
+ "KICKASM", "SIMPLETYPE", "STRING", "CHAR", "BOOLEAN", "NUMBER", "NUMFLOAT",
+ "BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER",
+ "HEXINTEGER", "NAME", "ASMREL", "WS", "COMMENT_LINE", "COMMENT_BLOCK"
};
public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES);
@@ -144,7 +147,7 @@ public class KickCLexer extends Lexer {
public ATN getATN() { return _ATN; }
public static final String _serializedATN =
- "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2q\u046f\b\1\4\2\t"+
+ "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2t\u048a\b\1\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"+
@@ -156,400 +159,409 @@ public class KickCLexer extends Lexer {
"\tI\4J\tJ\4K\tK\4L\tL\4M\tM\4N\tN\4O\tO\4P\tP\4Q\tQ\4R\tR\4S\tS\4T\tT"+
"\4U\tU\4V\tV\4W\tW\4X\tX\4Y\tY\4Z\tZ\4[\t[\4\\\t\\\4]\t]\4^\t^\4_\t_\4"+
"`\t`\4a\ta\4b\tb\4c\tc\4d\td\4e\te\4f\tf\4g\tg\4h\th\4i\ti\4j\tj\4k\t"+
- "k\4l\tl\4m\tm\4n\tn\4o\to\4p\tp\4q\tq\4r\tr\4s\ts\4t\tt\4u\tu\3\2\3\2"+
- "\3\2\3\2\3\2\3\2\3\2\3\3\3\3\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3\5\3\5\3"+
- "\6\3\6\3\7\3\7\3\b\3\b\3\t\3\t\3\n\3\n\3\13\3\13\3\13\3\13\3\13\3\13\3"+
- "\13\3\13\3\f\3\f\3\f\3\f\3\f\3\f\3\f\3\f\3\r\3\r\3\r\3\r\3\r\3\r\3\r\3"+
- "\r\3\r\3\16\3\16\3\16\3\17\3\17\3\17\3\17\3\20\3\20\3\20\3\20\3\20\3\20"+
- "\3\20\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\22\3\22\3\22\3\22\3\22"+
- "\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\24\3\24\3\24\3\24\3\24"+
- "\3\24\3\24\3\24\3\24\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\25\3\26"+
- "\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3\27\3\27\3\27\3\27\3\27"+
- "\3\27\3\30\3\30\3\30\3\30\3\30\3\30\3\30\3\31\3\31\3\31\3\31\3\31\3\31"+
- "\3\31\3\32\3\32\3\32\3\32\3\32\3\32\3\33\3\33\3\33\3\33\3\33\3\33\3\33"+
- "\3\33\3\33\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\35\3\35\3\35\3\35\3\35"+
- "\3\35\3\35\3\35\3\35\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36\3\36"+
- "\3\37\3\37\3\37\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)\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\60\3\60\3\60\3\60"+
- "\3\60\3\61\3\61\3\62\3\62\3\62\3\63\3\63\3\63\3\63\3\63\3\63\3\63\3\64"+
- "\3\64\3\64\3\64\3\64\3\64\3\64\3\65\3\65\3\65\3\66\3\66\3\66\3\67\3\67"+
- "\38\38\39\39\3:\3:\3;\3;\3<\3<\3<\3=\3=\3=\3>\3>\3?\3?\3@\3@\3A\3A\3B"+
- "\3B\3B\3C\3C\3C\3D\3D\3D\3E\3E\3E\3F\3F\3G\3G\3H\3H\3H\3I\3I\3I\3J\3J"+
- "\3K\3K\3K\3L\3L\3L\3M\3M\3M\3N\3N\3N\3O\3O\3O\3P\3P\3P\3P\3Q\3Q\3Q\3Q"+
- "\3R\3R\3R\3S\3S\3S\3T\3T\3T\3U\3U\3U\3U\3U\3U\3U\3U\3V\3V\3V\3V\3V\3V"+
- "\3V\3V\3V\3W\3W\3W\3W\3W\3X\3X\3X\3X\3X\3X\3X\3X\3X\3Y\3Y\3Y\3Y\3Y\3Y"+
- "\3Z\3Z\3Z\3Z\3Z\3Z\3Z\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]\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]\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]\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]\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]\u0370\n]\3^\3^\3^\3^\7^\u0376\n^\f^\16^\u0379"+
- "\13^\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_\u03a3\n_\3"+
- "`\3`\3`\3`\7`\u03a9\n`\f`\16`\u03ac\13`\3`\3`\5`\u03b0\n`\3`\3`\5`\u03b4"+
- "\n`\5`\u03b6\n`\3`\5`\u03b9\n`\3a\3a\3a\3a\5a\u03bf\na\3a\3a\3b\3b\3b"+
- "\3b\3b\3b\3b\3b\3b\5b\u03cc\nb\3c\3c\5c\u03d0\nc\3d\3d\3d\5d\u03d5\nd"+
- "\3e\3e\3e\3e\3e\5e\u03dc\ne\3e\7e\u03df\ne\fe\16e\u03e2\13e\3e\3e\6e\u03e6"+
- "\ne\re\16e\u03e7\3f\7f\u03eb\nf\ff\16f\u03ee\13f\3f\3f\6f\u03f2\nf\rf"+
- "\16f\u03f3\3g\3g\3g\3g\3g\5g\u03fb\ng\3g\7g\u03fe\ng\fg\16g\u0401\13g"+
- "\3g\3g\6g\u0405\ng\rg\16g\u0406\3h\3h\3h\5h\u040c\nh\3h\3h\3h\5h\u0411"+
- "\nh\3i\3i\3i\6i\u0416\ni\ri\16i\u0417\3i\3i\6i\u041c\ni\ri\16i\u041d\5"+
- "i\u0420\ni\3j\6j\u0423\nj\rj\16j\u0424\3k\3k\3k\3k\3k\5k\u042c\nk\3k\6"+
- "k\u042f\nk\rk\16k\u0430\3l\3l\3m\3m\3n\3n\3o\3o\7o\u043b\no\fo\16o\u043e"+
- "\13o\3p\3p\3q\3q\3r\3r\7r\u0446\nr\fr\16r\u0449\13r\3r\6r\u044c\nr\rr"+
- "\16r\u044d\3s\6s\u0451\ns\rs\16s\u0452\3s\3s\3t\3t\3t\3t\7t\u045b\nt\f"+
- "t\16t\u045e\13t\3t\3t\3u\3u\3u\3u\7u\u0466\nu\fu\16u\u0469\13u\3u\3u\3"+
- "u\3u\3u\4\u0377\u0467\2v\3\3\5\4\7\5\t\6\13\7\r\b\17\t\21\n\23\13\25\f"+
- "\27\r\31\16\33\17\35\20\37\21!\22#\23%\24\'\25)\26+\27-\30/\31\61\32\63"+
- "\33\65\34\67\359\36;\37= ?!A\"C#E$G%I&K\'M(O)Q*S+U,W-Y.[/]\60_\61a\62"+
- "c\63e\64g\65i\66k\67m8o9q:s;u{?}@\177A\u0081B\u0083C\u0085D\u0087"+
- "E\u0089F\u008bG\u008dH\u008fI\u0091J\u0093K\u0095L\u0097M\u0099N\u009b"+
- "O\u009dP\u009fQ\u00a1R\u00a3S\u00a5T\u00a7U\u00a9V\u00abW\u00adX\u00af"+
- "Y\u00b1Z\u00b3[\u00b5\\\u00b7]\u00b9^\u00bb_\u00bd`\u00bfa\u00c1b\u00c3"+
- "c\u00c5d\u00c7e\u00c9f\u00cbg\u00cdh\u00cfi\u00d1j\u00d3k\u00d5l\u00d7"+
- "\2\u00d9\2\u00db\2\u00ddm\u00df\2\u00e1\2\u00e3n\u00e5o\u00e7p\u00e9q"+
- "\3\2\22\3\2$$\3\2||\4\2rruu\4\2ooww\3\2))\4\2uuww\7\2dfkknnuuyy\4\2DD"+
- "dd\3\2\62\63\3\2\62;\5\2\62;CHch\5\2C\\aac|\6\2\62;C\\aac|\4\2--//\6\2"+
- "\13\f\17\17\"\"\u00a2\u00a2\4\2\f\f\17\17\2\u04e1\2\3\3\2\2\2\2\5\3\2"+
- "\2\2\2\7\3\2\2\2\2\t\3\2\2\2\2\13\3\2\2\2\2\r\3\2\2\2\2\17\3\2\2\2\2\21"+
- "\3\2\2\2\2\23\3\2\2\2\2\25\3\2\2\2\2\27\3\2\2\2\2\31\3\2\2\2\2\33\3\2"+
- "\2\2\2\35\3\2\2\2\2\37\3\2\2\2\2!\3\2\2\2\2#\3\2\2\2\2%\3\2\2\2\2\'\3"+
- "\2\2\2\2)\3\2\2\2\2+\3\2\2\2\2-\3\2\2\2\2/\3\2\2\2\2\61\3\2\2\2\2\63\3"+
- "\2\2\2\2\65\3\2\2\2\2\67\3\2\2\2\29\3\2\2\2\2;\3\2\2\2\2=\3\2\2\2\2?\3"+
- "\2\2\2\2A\3\2\2\2\2C\3\2\2\2\2E\3\2\2\2\2G\3\2\2\2\2I\3\2\2\2\2K\3\2\2"+
- "\2\2M\3\2\2\2\2O\3\2\2\2\2Q\3\2\2\2\2S\3\2\2\2\2U\3\2\2\2\2W\3\2\2\2\2"+
- "Y\3\2\2\2\2[\3\2\2\2\2]\3\2\2\2\2_\3\2\2\2\2a\3\2\2\2\2c\3\2\2\2\2e\3"+
- "\2\2\2\2g\3\2\2\2\2i\3\2\2\2\2k\3\2\2\2\2m\3\2\2\2\2o\3\2\2\2\2q\3\2\2"+
- "\2\2s\3\2\2\2\2u\3\2\2\2\2w\3\2\2\2\2y\3\2\2\2\2{\3\2\2\2\2}\3\2\2\2\2"+
- "\177\3\2\2\2\2\u0081\3\2\2\2\2\u0083\3\2\2\2\2\u0085\3\2\2\2\2\u0087\3"+
- "\2\2\2\2\u0089\3\2\2\2\2\u008b\3\2\2\2\2\u008d\3\2\2\2\2\u008f\3\2\2\2"+
- "\2\u0091\3\2\2\2\2\u0093\3\2\2\2\2\u0095\3\2\2\2\2\u0097\3\2\2\2\2\u0099"+
- "\3\2\2\2\2\u009b\3\2\2\2\2\u009d\3\2\2\2\2\u009f\3\2\2\2\2\u00a1\3\2\2"+
- "\2\2\u00a3\3\2\2\2\2\u00a5\3\2\2\2\2\u00a7\3\2\2\2\2\u00a9\3\2\2\2\2\u00ab"+
- "\3\2\2\2\2\u00ad\3\2\2\2\2\u00af\3\2\2\2\2\u00b1\3\2\2\2\2\u00b3\3\2\2"+
- "\2\2\u00b5\3\2\2\2\2\u00b7\3\2\2\2\2\u00b9\3\2\2\2\2\u00bb\3\2\2\2\2\u00bd"+
- "\3\2\2\2\2\u00bf\3\2\2\2\2\u00c1\3\2\2\2\2\u00c3\3\2\2\2\2\u00c5\3\2\2"+
- "\2\2\u00c7\3\2\2\2\2\u00c9\3\2\2\2\2\u00cb\3\2\2\2\2\u00cd\3\2\2\2\2\u00cf"+
- "\3\2\2\2\2\u00d1\3\2\2\2\2\u00d3\3\2\2\2\2\u00d5\3\2\2\2\2\u00dd\3\2\2"+
- "\2\2\u00e3\3\2\2\2\2\u00e5\3\2\2\2\2\u00e7\3\2\2\2\2\u00e9\3\2\2\2\3\u00eb"+
- "\3\2\2\2\5\u00f2\3\2\2\2\7\u00f4\3\2\2\2\t\u00fc\3\2\2\2\13\u00fe\3\2"+
- "\2\2\r\u0100\3\2\2\2\17\u0102\3\2\2\2\21\u0104\3\2\2\2\23\u0106\3\2\2"+
- "\2\25\u0108\3\2\2\2\27\u0110\3\2\2\2\31\u0118\3\2\2\2\33\u0121\3\2\2\2"+
- "\35\u0124\3\2\2\2\37\u0128\3\2\2\2!\u012f\3\2\2\2#\u0137\3\2\2\2%\u013c"+
- "\3\2\2\2\'\u0145\3\2\2\2)\u014e\3\2\2\2+\u0157\3\2\2\2-\u0161\3\2\2\2"+
- "/\u0167\3\2\2\2\61\u016e\3\2\2\2\63\u0175\3\2\2\2\65\u017b\3\2\2\2\67"+
- "\u0184\3\2\2\29\u018b\3\2\2\2;\u0194\3\2\2\2=\u019e\3\2\2\2?\u01a1\3\2"+
- "\2\2A\u01a6\3\2\2\2C\u01ac\3\2\2\2E\u01af\3\2\2\2G\u01b3\3\2\2\2I\u01ba"+
- "\3\2\2\2K\u01c0\3\2\2\2M\u01c9\3\2\2\2O\u01cd\3\2\2\2Q\u01cf\3\2\2\2S"+
- "\u01d2\3\2\2\2U\u01d9\3\2\2\2W\u01e2\3\2\2\2Y\u01e4\3\2\2\2[\u01e6\3\2"+
- "\2\2]\u01e8\3\2\2\2_\u01ef\3\2\2\2a\u01f4\3\2\2\2c\u01f6\3\2\2\2e\u01f9"+
- "\3\2\2\2g\u0200\3\2\2\2i\u0207\3\2\2\2k\u020a\3\2\2\2m\u020d\3\2\2\2o"+
- "\u020f\3\2\2\2q\u0211\3\2\2\2s\u0213\3\2\2\2u\u0215\3\2\2\2w\u0217\3\2"+
- "\2\2y\u021a\3\2\2\2{\u021d\3\2\2\2}\u021f\3\2\2\2\177\u0221\3\2\2\2\u0081"+
- "\u0223\3\2\2\2\u0083\u0225\3\2\2\2\u0085\u0228\3\2\2\2\u0087\u022b\3\2"+
- "\2\2\u0089\u022e\3\2\2\2\u008b\u0231\3\2\2\2\u008d\u0233\3\2\2\2\u008f"+
- "\u0235\3\2\2\2\u0091\u0238\3\2\2\2\u0093\u023b\3\2\2\2\u0095\u023d\3\2"+
- "\2\2\u0097\u0240\3\2\2\2\u0099\u0243\3\2\2\2\u009b\u0246\3\2\2\2\u009d"+
- "\u0249\3\2\2\2\u009f\u024c\3\2\2\2\u00a1\u0250\3\2\2\2\u00a3\u0254\3\2"+
- "\2\2\u00a5\u0257\3\2\2\2\u00a7\u025a\3\2\2\2\u00a9\u025d\3\2\2\2\u00ab"+
- "\u0265\3\2\2\2\u00ad\u026e\3\2\2\2\u00af\u0273\3\2\2\2\u00b1\u027c\3\2"+
- "\2\2\u00b3\u0282\3\2\2\2\u00b5\u0289\3\2\2\2\u00b7\u028f\3\2\2\2\u00b9"+
- "\u036f\3\2\2\2\u00bb\u0371\3\2\2\2\u00bd\u03a2\3\2\2\2\u00bf\u03a4\3\2"+
- "\2\2\u00c1\u03ba\3\2\2\2\u00c3\u03cb\3\2\2\2\u00c5\u03cf\3\2\2\2\u00c7"+
- "\u03d4\3\2\2\2\u00c9\u03db\3\2\2\2\u00cb\u03ec\3\2\2\2\u00cd\u03fa\3\2"+
- "\2\2\u00cf\u040b\3\2\2\2\u00d1\u041f\3\2\2\2\u00d3\u0422\3\2\2\2\u00d5"+
- "\u042b\3\2\2\2\u00d7\u0432\3\2\2\2\u00d9\u0434\3\2\2\2\u00db\u0436\3\2"+
- "\2\2\u00dd\u0438\3\2\2\2\u00df\u043f\3\2\2\2\u00e1\u0441\3\2\2\2\u00e3"+
- "\u0443\3\2\2\2\u00e5\u0450\3\2\2\2\u00e7\u0456\3\2\2\2\u00e9\u0461\3\2"+
- "\2\2\u00eb\u00ec\7k\2\2\u00ec\u00ed\7o\2\2\u00ed\u00ee\7r\2\2\u00ee\u00ef"+
- "\7q\2\2\u00ef\u00f0\7t\2\2\u00f0\u00f1\7v\2\2\u00f1\4\3\2\2\2\u00f2\u00f3"+
- "\7=\2\2\u00f3\6\3\2\2\2\u00f4\u00f5\7v\2\2\u00f5\u00f6\7{\2\2\u00f6\u00f7"+
- "\7r\2\2\u00f7\u00f8\7g\2\2\u00f8\u00f9\7f\2\2\u00f9\u00fa\7g\2\2\u00fa"+
- "\u00fb\7h\2\2\u00fb\b\3\2\2\2\u00fc\u00fd\7.\2\2\u00fd\n\3\2\2\2\u00fe"+
- "\u00ff\7?\2\2\u00ff\f\3\2\2\2\u0100\u0101\7*\2\2\u0101\16\3\2\2\2\u0102"+
- "\u0103\7+\2\2\u0103\20\3\2\2\2\u0104\u0105\7}\2\2\u0105\22\3\2\2\2\u0106"+
- "\u0107\7\177\2\2\u0107\24\3\2\2\2\u0108\u0109\7%\2\2\u0109\u010a\7r\2"+
- "\2\u010a\u010b\7t\2\2\u010b\u010c\7c\2\2\u010c\u010d\7i\2\2\u010d\u010e"+
- "\7o\2\2\u010e\u010f\7c\2\2\u010f\26\3\2\2\2\u0110\u0111\7t\2\2\u0111\u0112"+
- "\7g\2\2\u0112\u0113\7u\2\2\u0113\u0114\7g\2\2\u0114\u0115\7t\2\2\u0115"+
- "\u0116\7x\2\2\u0116\u0117\7g\2\2\u0117\30\3\2\2\2\u0118\u0119\7%\2\2\u0119"+
- "\u011a\7t\2\2\u011a\u011b\7g\2\2\u011b\u011c\7u\2\2\u011c\u011d\7g\2\2"+
- "\u011d\u011e\7t\2\2\u011e\u011f\7x\2\2\u011f\u0120\7g\2\2\u0120\32\3\2"+
- "\2\2\u0121\u0122\7r\2\2\u0122\u0123\7e\2\2\u0123\34\3\2\2\2\u0124\u0125"+
- "\7%\2\2\u0125\u0126\7r\2\2\u0126\u0127\7e\2\2\u0127\36\3\2\2\2\u0128\u0129"+
- "\7v\2\2\u0129\u012a\7c\2\2\u012a\u012b\7t\2\2\u012b\u012c\7i\2\2\u012c"+
- "\u012d\7g\2\2\u012d\u012e\7v\2\2\u012e \3\2\2\2\u012f\u0130\7%\2\2\u0130"+
- "\u0131\7v\2\2\u0131\u0132\7c\2\2\u0132\u0133\7t\2\2\u0133\u0134\7i\2\2"+
- "\u0134\u0135\7g\2\2\u0135\u0136\7v\2\2\u0136\"\3\2\2\2\u0137\u0138\7n"+
- "\2\2\u0138\u0139\7k\2\2\u0139\u013a\7p\2\2\u013a\u013b\7m\2\2\u013b$\3"+
- "\2\2\2\u013c\u013d\7e\2\2\u013d\u013e\7q\2\2\u013e\u013f\7f\2\2\u013f"+
- "\u0140\7g\2\2\u0140\u0141\7a\2\2\u0141\u0142\7u\2\2\u0142\u0143\7g\2\2"+
- "\u0143\u0144\7i\2\2\u0144&\3\2\2\2\u0145\u0146\7f\2\2\u0146\u0147\7c\2"+
- "\2\u0147\u0148\7v\2\2\u0148\u0149\7c\2\2\u0149\u014a\7a\2\2\u014a\u014b"+
- "\7u\2\2\u014b\u014c\7g\2\2\u014c\u014d\7i\2\2\u014d(\3\2\2\2\u014e\u014f"+
- "\7g\2\2\u014f\u0150\7p\2\2\u0150\u0151\7e\2\2\u0151\u0152\7q\2\2\u0152"+
- "\u0153\7f\2\2\u0153\u0154\7k\2\2\u0154\u0155\7p\2\2\u0155\u0156\7i\2\2"+
- "\u0156*\3\2\2\2\u0157\u0158\7%\2\2\u0158\u0159\7g\2\2\u0159\u015a\7p\2"+
- "\2\u015a\u015b\7e\2\2\u015b\u015c\7q\2\2\u015c\u015d\7f\2\2\u015d\u015e"+
- "\7k\2\2\u015e\u015f\7p\2\2\u015f\u0160\7i\2\2\u0160,\3\2\2\2\u0161\u0162"+
- "\7e\2\2\u0162\u0163\7q\2\2\u0163\u0164\7p\2\2\u0164\u0165\7u\2\2\u0165"+
- "\u0166\7v\2\2\u0166.\3\2\2\2\u0167\u0168\7g\2\2\u0168\u0169\7z\2\2\u0169"+
- "\u016a\7v\2\2\u016a\u016b\7g\2\2\u016b\u016c\7t\2\2\u016c\u016d\7p\2\2"+
- "\u016d\60\3\2\2\2\u016e\u016f\7g\2\2\u016f\u0170\7z\2\2\u0170\u0171\7"+
- "r\2\2\u0171\u0172\7q\2\2\u0172\u0173\7t\2\2\u0173\u0174\7v\2\2\u0174\62"+
- "\3\2\2\2\u0175\u0176\7c\2\2\u0176\u0177\7n\2\2\u0177\u0178\7k\2\2\u0178"+
- "\u0179\7i\2\2\u0179\u017a\7p\2\2\u017a\64\3\2\2\2\u017b\u017c\7t\2\2\u017c"+
- "\u017d\7g\2\2\u017d\u017e\7i\2\2\u017e\u017f\7k\2\2\u017f\u0180\7u\2\2"+
- "\u0180\u0181\7v\2\2\u0181\u0182\7g\2\2\u0182\u0183\7t\2\2\u0183\66\3\2"+
- "\2\2\u0184\u0185\7k\2\2\u0185\u0186\7p\2\2\u0186\u0187\7n\2\2\u0187\u0188"+
- "\7k\2\2\u0188\u0189\7p\2\2\u0189\u018a\7g\2\2\u018a8\3\2\2\2\u018b\u018c"+
- "\7x\2\2\u018c\u018d\7q\2\2\u018d\u018e\7n\2\2\u018e\u018f\7c\2\2\u018f"+
- "\u0190\7v\2\2\u0190\u0191\7k\2\2\u0191\u0192\7n\2\2\u0192\u0193\7g\2\2"+
- "\u0193:\3\2\2\2\u0194\u0195\7k\2\2\u0195\u0196\7p\2\2\u0196\u0197\7v\2"+
- "\2\u0197\u0198\7g\2\2\u0198\u0199\7t\2\2\u0199\u019a\7t\2\2\u019a\u019b"+
- "\7w\2\2\u019b\u019c\7r\2\2\u019c\u019d\7v\2\2\u019d<\3\2\2\2\u019e\u019f"+
- "\7k\2\2\u019f\u01a0\7h\2\2\u01a0>\3\2\2\2\u01a1\u01a2\7g\2\2\u01a2\u01a3"+
- "\7n\2\2\u01a3\u01a4\7u\2\2\u01a4\u01a5\7g\2\2\u01a5@\3\2\2\2\u01a6\u01a7"+
- "\7y\2\2\u01a7\u01a8\7j\2\2\u01a8\u01a9\7k\2\2\u01a9\u01aa\7n\2\2\u01aa"+
- "\u01ab\7g\2\2\u01abB\3\2\2\2\u01ac\u01ad\7f\2\2\u01ad\u01ae\7q\2\2\u01ae"+
- "D\3\2\2\2\u01af\u01b0\7h\2\2\u01b0\u01b1\7q\2\2\u01b1\u01b2\7t\2\2\u01b2"+
- "F\3\2\2\2\u01b3\u01b4\7t\2\2\u01b4\u01b5\7g\2\2\u01b5\u01b6\7v\2\2\u01b6"+
- "\u01b7\7w\2\2\u01b7\u01b8\7t\2\2\u01b8\u01b9\7p\2\2\u01b9H\3\2\2\2\u01ba"+
- "\u01bb\7d\2\2\u01bb\u01bc\7t\2\2\u01bc\u01bd\7g\2\2\u01bd\u01be\7c\2\2"+
- "\u01be\u01bf\7m\2\2\u01bfJ\3\2\2\2\u01c0\u01c1\7e\2\2\u01c1\u01c2\7q\2"+
- "\2\u01c2\u01c3\7p\2\2\u01c3\u01c4\7v\2\2\u01c4\u01c5\7k\2\2\u01c5\u01c6"+
- "\7p\2\2\u01c6\u01c7\7w\2\2\u01c7\u01c8\7g\2\2\u01c8L\3\2\2\2\u01c9\u01ca"+
- "\7c\2\2\u01ca\u01cb\7u\2\2\u01cb\u01cc\7o\2\2\u01ccN\3\2\2\2\u01cd\u01ce"+
- "\7<\2\2\u01ceP\3\2\2\2\u01cf\u01d0\7\60\2\2\u01d0\u01d1\7\60\2\2\u01d1"+
- "R\3\2\2\2\u01d2\u01d3\7u\2\2\u01d3\u01d4\7k\2\2\u01d4\u01d5\7i\2\2\u01d5"+
- "\u01d6\7p\2\2\u01d6\u01d7\7g\2\2\u01d7\u01d8\7f\2\2\u01d8T\3\2\2\2\u01d9"+
- "\u01da\7w\2\2\u01da\u01db\7p\2\2\u01db\u01dc\7u\2\2\u01dc\u01dd\7k\2\2"+
- "\u01dd\u01de\7i\2\2\u01de\u01df\7p\2\2\u01df\u01e0\7g\2\2\u01e0\u01e1"+
- "\7f\2\2\u01e1V\3\2\2\2\u01e2\u01e3\7,\2\2\u01e3X\3\2\2\2\u01e4\u01e5\7"+
- "]\2\2\u01e5Z\3\2\2\2\u01e6\u01e7\7_\2\2\u01e7\\\3\2\2\2\u01e8\u01e9\7"+
- "u\2\2\u01e9\u01ea\7v\2\2\u01ea\u01eb\7t\2\2\u01eb\u01ec\7w\2\2\u01ec\u01ed"+
- "\7e\2\2\u01ed\u01ee\7v\2\2\u01ee^\3\2\2\2\u01ef\u01f0\7g\2\2\u01f0\u01f1"+
- "\7p\2\2\u01f1\u01f2\7w\2\2\u01f2\u01f3\7o\2\2\u01f3`\3\2\2\2\u01f4\u01f5"+
- "\7\60\2\2\u01f5b\3\2\2\2\u01f6\u01f7\7/\2\2\u01f7\u01f8\7@\2\2\u01f8d"+
- "\3\2\2\2\u01f9\u01fa\7u\2\2\u01fa\u01fb\7k\2\2\u01fb\u01fc\7|\2\2\u01fc"+
- "\u01fd\7g\2\2\u01fd\u01fe\7q\2\2\u01fe\u01ff\7h\2\2\u01fff\3\2\2\2\u0200"+
- "\u0201\7v\2\2\u0201\u0202\7{\2\2\u0202\u0203\7r\2\2\u0203\u0204\7g\2\2"+
- "\u0204\u0205\7k\2\2\u0205\u0206\7f\2\2\u0206h\3\2\2\2\u0207\u0208\7/\2"+
- "\2\u0208\u0209\7/\2\2\u0209j\3\2\2\2\u020a\u020b\7-\2\2\u020b\u020c\7"+
- "-\2\2\u020cl\3\2\2\2\u020d\u020e\7-\2\2\u020en\3\2\2\2\u020f\u0210\7/"+
- "\2\2\u0210p\3\2\2\2\u0211\u0212\7#\2\2\u0212r\3\2\2\2\u0213\u0214\7(\2"+
- "\2\u0214t\3\2\2\2\u0215\u0216\7\u0080\2\2\u0216v\3\2\2\2\u0217\u0218\7"+
- "@\2\2\u0218\u0219\7@\2\2\u0219x\3\2\2\2\u021a\u021b\7>\2\2\u021b\u021c"+
- "\7>\2\2\u021cz\3\2\2\2\u021d\u021e\7\61\2\2\u021e|\3\2\2\2\u021f\u0220"+
- "\7\'\2\2\u0220~\3\2\2\2\u0221\u0222\7>\2\2\u0222\u0080\3\2\2\2\u0223\u0224"+
- "\7@\2\2\u0224\u0082\3\2\2\2\u0225\u0226\7?\2\2\u0226\u0227\7?\2\2\u0227"+
- "\u0084\3\2\2\2\u0228\u0229\7#\2\2\u0229\u022a\7?\2\2\u022a\u0086\3\2\2"+
- "\2\u022b\u022c\7>\2\2\u022c\u022d\7?\2\2\u022d\u0088\3\2\2\2\u022e\u022f"+
- "\7@\2\2\u022f\u0230\7?\2\2\u0230\u008a\3\2\2\2\u0231\u0232\7`\2\2\u0232"+
- "\u008c\3\2\2\2\u0233\u0234\7~\2\2\u0234\u008e\3\2\2\2\u0235\u0236\7(\2"+
- "\2\u0236\u0237\7(\2\2\u0237\u0090\3\2\2\2\u0238\u0239\7~\2\2\u0239\u023a"+
- "\7~\2\2\u023a\u0092\3\2\2\2\u023b\u023c\7A\2\2\u023c\u0094\3\2\2\2\u023d"+
- "\u023e\7-\2\2\u023e\u023f\7?\2\2\u023f\u0096\3\2\2\2\u0240\u0241\7/\2"+
- "\2\u0241\u0242\7?\2\2\u0242\u0098\3\2\2\2\u0243\u0244\7,\2\2\u0244\u0245"+
- "\7?\2\2\u0245\u009a\3\2\2\2\u0246\u0247\7\61\2\2\u0247\u0248\7?\2\2\u0248"+
- "\u009c\3\2\2\2\u0249\u024a\7\'\2\2\u024a\u024b\7?\2\2\u024b\u009e\3\2"+
- "\2\2\u024c\u024d\7>\2\2\u024d\u024e\7>\2\2\u024e\u024f\7?\2\2\u024f\u00a0"+
- "\3\2\2\2\u0250\u0251\7@\2\2\u0251\u0252\7@\2\2\u0252\u0253\7?\2\2\u0253"+
- "\u00a2\3\2\2\2\u0254\u0255\7(\2\2\u0255\u0256\7?\2\2\u0256\u00a4\3\2\2"+
- "\2\u0257\u0258\7~\2\2\u0258\u0259\7?\2\2\u0259\u00a6\3\2\2\2\u025a\u025b"+
- "\7`\2\2\u025b\u025c\7?\2\2\u025c\u00a8\3\2\2\2\u025d\u025e\7m\2\2\u025e"+
- "\u025f\7k\2\2\u025f\u0260\7e\2\2\u0260\u0261\7m\2\2\u0261\u0262\7c\2\2"+
- "\u0262\u0263\7u\2\2\u0263\u0264\7o\2\2\u0264\u00aa\3\2\2\2\u0265\u0266"+
- "\7t\2\2\u0266\u0267\7g\2\2\u0267\u0268\7u\2\2\u0268\u0269\7q\2\2\u0269"+
- "\u026a\7w\2\2\u026a\u026b\7t\2\2\u026b\u026c\7e\2\2\u026c\u026d\7g\2\2"+
- "\u026d\u00ac\3\2\2\2\u026e\u026f\7w\2\2\u026f\u0270\7u\2\2\u0270\u0271"+
- "\7g\2\2\u0271\u0272\7u\2\2\u0272\u00ae\3\2\2\2\u0273\u0274\7e\2\2\u0274"+
- "\u0275\7n\2\2\u0275\u0276\7q\2\2\u0276\u0277\7d\2\2\u0277\u0278\7d\2\2"+
- "\u0278\u0279\7g\2\2\u0279\u027a\7t\2\2\u027a\u027b\7u\2\2\u027b\u00b0"+
- "\3\2\2\2\u027c\u027d\7d\2\2\u027d\u027e\7{\2\2\u027e\u027f\7v\2\2\u027f"+
- "\u0280\7g\2\2\u0280\u0281\7u\2\2\u0281\u00b2\3\2\2\2\u0282\u0283\7e\2"+
- "\2\u0283\u0284\7{\2\2\u0284\u0285\7e\2\2\u0285\u0286\7n\2\2\u0286\u0287"+
- "\7g\2\2\u0287\u0288\7u\2\2\u0288\u00b4\3\2\2\2\u0289\u028a\7\60\2\2\u028a"+
- "\u028b\7d\2\2\u028b\u028c\7{\2\2\u028c\u028d\7v\2\2\u028d\u028e\7g\2\2"+
- "\u028e\u00b6\3\2\2\2\u028f\u0290\7%\2\2\u0290\u00b8\3\2\2\2\u0291\u0292"+
- "\7d\2\2\u0292\u0293\7t\2\2\u0293\u0370\7m\2\2\u0294\u0295\7q\2\2\u0295"+
- "\u0296\7t\2\2\u0296\u0370\7c\2\2\u0297\u0298\7m\2\2\u0298\u0299\7k\2\2"+
- "\u0299\u0370\7n\2\2\u029a\u029b\7u\2\2\u029b\u029c\7n\2\2\u029c\u0370"+
- "\7q\2\2\u029d\u029e\7p\2\2\u029e\u029f\7q\2\2\u029f\u0370\7r\2\2\u02a0"+
- "\u02a1\7c\2\2\u02a1\u02a2\7u\2\2\u02a2\u0370\7n\2\2\u02a3\u02a4\7r\2\2"+
- "\u02a4\u02a5\7j\2\2\u02a5\u0370\7r\2\2\u02a6\u02a7\7c\2\2\u02a7\u02a8"+
- "\7p\2\2\u02a8\u0370\7e\2\2\u02a9\u02aa\7d\2\2\u02aa\u02ab\7r\2\2\u02ab"+
- "\u0370\7n\2\2\u02ac\u02ad\7e\2\2\u02ad\u02ae\7n\2\2\u02ae\u0370\7e\2\2"+
- "\u02af\u02b0\7l\2\2\u02b0\u02b1\7u\2\2\u02b1\u0370\7t\2\2\u02b2\u02b3"+
- "\7c\2\2\u02b3\u02b4\7p\2\2\u02b4\u0370\7f\2\2\u02b5\u02b6\7t\2\2\u02b6"+
- "\u02b7\7n\2\2\u02b7\u0370\7c\2\2\u02b8\u02b9\7d\2\2\u02b9\u02ba\7k\2\2"+
- "\u02ba\u0370\7v\2\2\u02bb\u02bc\7t\2\2\u02bc\u02bd\7q\2\2\u02bd\u0370"+
- "\7n\2\2\u02be\u02bf\7r\2\2\u02bf\u02c0\7n\2\2\u02c0\u0370\7c\2\2\u02c1"+
- "\u02c2\7r\2\2\u02c2\u02c3\7n\2\2\u02c3\u0370\7r\2\2\u02c4\u02c5\7d\2\2"+
- "\u02c5\u02c6\7o\2\2\u02c6\u0370\7k\2\2\u02c7\u02c8\7u\2\2\u02c8\u02c9"+
- "\7g\2\2\u02c9\u0370\7e\2\2\u02ca\u02cb\7t\2\2\u02cb\u02cc\7v\2\2\u02cc"+
- "\u0370\7k\2\2\u02cd\u02ce\7g\2\2\u02ce\u02cf\7q\2\2\u02cf\u0370\7t\2\2"+
- "\u02d0\u02d1\7u\2\2\u02d1\u02d2\7t\2\2\u02d2\u0370\7g\2\2\u02d3\u02d4"+
- "\7n\2\2\u02d4\u02d5\7u\2\2\u02d5\u0370\7t\2\2\u02d6\u02d7\7r\2\2\u02d7"+
- "\u02d8\7j\2\2\u02d8\u0370\7c\2\2\u02d9\u02da\7c\2\2\u02da\u02db\7n\2\2"+
- "\u02db\u0370\7t\2\2\u02dc\u02dd\7l\2\2\u02dd\u02de\7o\2\2\u02de\u0370"+
- "\7r\2\2\u02df\u02e0\7d\2\2\u02e0\u02e1\7x\2\2\u02e1\u0370\7e\2\2\u02e2"+
- "\u02e3\7e\2\2\u02e3\u02e4\7n\2\2\u02e4\u0370\7k\2\2\u02e5\u02e6\7t\2\2"+
- "\u02e6\u02e7\7v\2\2\u02e7\u0370\7u\2\2\u02e8\u02e9\7c\2\2\u02e9\u02ea"+
- "\7f\2\2\u02ea\u0370\7e\2\2\u02eb\u02ec\7t\2\2\u02ec\u02ed\7t\2\2\u02ed"+
- "\u0370\7c\2\2\u02ee\u02ef\7d\2\2\u02ef\u02f0\7x\2\2\u02f0\u0370\7u\2\2"+
- "\u02f1\u02f2\7u\2\2\u02f2\u02f3\7g\2\2\u02f3\u0370\7k\2\2\u02f4\u02f5"+
- "\7u\2\2\u02f5\u02f6\7c\2\2\u02f6\u0370\7z\2\2\u02f7\u02f8\7u\2\2\u02f8"+
- "\u02f9\7v\2\2\u02f9\u0370\7{\2\2\u02fa\u02fb\7u\2\2\u02fb\u02fc\7v\2\2"+
- "\u02fc\u0370\7c\2\2\u02fd\u02fe\7u\2\2\u02fe\u02ff\7v\2\2\u02ff\u0370"+
- "\7z\2\2\u0300\u0301\7f\2\2\u0301\u0302\7g\2\2\u0302\u0370\7{\2\2\u0303"+
- "\u0304\7v\2\2\u0304\u0305\7z\2\2\u0305\u0370\7c\2\2\u0306\u0307\7z\2\2"+
- "\u0307\u0308\7c\2\2\u0308\u0370\7c\2\2\u0309\u030a\7d\2\2\u030a\u030b"+
- "\7e\2\2\u030b\u0370\7e\2\2\u030c\u030d\7c\2\2\u030d\u030e\7j\2\2\u030e"+
- "\u0370\7z\2\2\u030f\u0310\7v\2\2\u0310\u0311\7{\2\2\u0311\u0370\7c\2\2"+
- "\u0312\u0313\7v\2\2\u0313\u0314\7z\2\2\u0314\u0370\7u\2\2\u0315\u0316"+
- "\7v\2\2\u0316\u0317\7c\2\2\u0317\u0370\7u\2\2\u0318\u0319\7u\2\2\u0319"+
- "\u031a\7j\2\2\u031a\u0370\7{\2\2\u031b\u031c\7u\2\2\u031c\u031d\7j\2\2"+
- "\u031d\u0370\7z\2\2\u031e\u031f\7n\2\2\u031f\u0320\7f\2\2\u0320\u0370"+
- "\7{\2\2\u0321\u0322\7n\2\2\u0322\u0323\7f\2\2\u0323\u0370\7c\2\2\u0324"+
- "\u0325\7n\2\2\u0325\u0326\7f\2\2\u0326\u0370\7z\2\2\u0327\u0328\7n\2\2"+
- "\u0328\u0329\7c\2\2\u0329\u0370\7z\2\2\u032a\u032b\7v\2\2\u032b\u032c"+
- "\7c\2\2\u032c\u0370\7{\2\2\u032d\u032e\7v\2\2\u032e\u032f\7c\2\2\u032f"+
- "\u0370\7z\2\2\u0330\u0331\7d\2\2\u0331\u0332\7e\2\2\u0332\u0370\7u\2\2"+
- "\u0333\u0334\7e\2\2\u0334\u0335\7n\2\2\u0335\u0370\7x\2\2\u0336\u0337"+
- "\7v\2\2\u0337\u0338\7u\2\2\u0338\u0370\7z\2\2\u0339\u033a\7n\2\2\u033a"+
- "\u033b\7c\2\2\u033b\u0370\7u\2\2\u033c\u033d\7e\2\2\u033d\u033e\7r\2\2"+
- "\u033e\u0370\7{\2\2\u033f\u0340\7e\2\2\u0340\u0341\7o\2\2\u0341\u0370"+
- "\7r\2\2\u0342\u0343\7e\2\2\u0343\u0344\7r\2\2\u0344\u0370\7z\2\2\u0345"+
- "\u0346\7f\2\2\u0346\u0347\7e\2\2\u0347\u0370\7r\2\2\u0348\u0349\7f\2\2"+
- "\u0349\u034a\7g\2\2\u034a\u0370\7e\2\2\u034b\u034c\7k\2\2\u034c\u034d"+
- "\7p\2\2\u034d\u0370\7e\2\2\u034e\u034f\7c\2\2\u034f\u0350\7z\2\2\u0350"+
- "\u0370\7u\2\2\u0351\u0352\7d\2\2\u0352\u0353\7p\2\2\u0353\u0370\7g\2\2"+
- "\u0354\u0355\7e\2\2\u0355\u0356\7n\2\2\u0356\u0370\7f\2\2\u0357\u0358"+
- "\7u\2\2\u0358\u0359\7d\2\2\u0359\u0370\7e\2\2\u035a\u035b\7k\2\2\u035b"+
- "\u035c\7u\2\2\u035c\u0370\7e\2\2\u035d\u035e\7k\2\2\u035e\u035f\7p\2\2"+
- "\u035f\u0370\7z\2\2\u0360\u0361\7d\2\2\u0361\u0362\7g\2\2\u0362\u0370"+
- "\7s\2\2\u0363\u0364\7u\2\2\u0364\u0365\7g\2\2\u0365\u0370\7f\2\2\u0366"+
- "\u0367\7f\2\2\u0367\u0368\7g\2\2\u0368\u0370\7z\2\2\u0369\u036a\7k\2\2"+
- "\u036a\u036b\7p\2\2\u036b\u0370\7{\2\2\u036c\u036d\7t\2\2\u036d\u036e"+
- "\7q\2\2\u036e\u0370\7t\2\2\u036f\u0291\3\2\2\2\u036f\u0294\3\2\2\2\u036f"+
- "\u0297\3\2\2\2\u036f\u029a\3\2\2\2\u036f\u029d\3\2\2\2\u036f\u02a0\3\2"+
- "\2\2\u036f\u02a3\3\2\2\2\u036f\u02a6\3\2\2\2\u036f\u02a9\3\2\2\2\u036f"+
- "\u02ac\3\2\2\2\u036f\u02af\3\2\2\2\u036f\u02b2\3\2\2\2\u036f\u02b5\3\2"+
- "\2\2\u036f\u02b8\3\2\2\2\u036f\u02bb\3\2\2\2\u036f\u02be\3\2\2\2\u036f"+
- "\u02c1\3\2\2\2\u036f\u02c4\3\2\2\2\u036f\u02c7\3\2\2\2\u036f\u02ca\3\2"+
- "\2\2\u036f\u02cd\3\2\2\2\u036f\u02d0\3\2\2\2\u036f\u02d3\3\2\2\2\u036f"+
- "\u02d6\3\2\2\2\u036f\u02d9\3\2\2\2\u036f\u02dc\3\2\2\2\u036f\u02df\3\2"+
- "\2\2\u036f\u02e2\3\2\2\2\u036f\u02e5\3\2\2\2\u036f\u02e8\3\2\2\2\u036f"+
- "\u02eb\3\2\2\2\u036f\u02ee\3\2\2\2\u036f\u02f1\3\2\2\2\u036f\u02f4\3\2"+
- "\2\2\u036f\u02f7\3\2\2\2\u036f\u02fa\3\2\2\2\u036f\u02fd\3\2\2\2\u036f"+
- "\u0300\3\2\2\2\u036f\u0303\3\2\2\2\u036f\u0306\3\2\2\2\u036f\u0309\3\2"+
- "\2\2\u036f\u030c\3\2\2\2\u036f\u030f\3\2\2\2\u036f\u0312\3\2\2\2\u036f"+
- "\u0315\3\2\2\2\u036f\u0318\3\2\2\2\u036f\u031b\3\2\2\2\u036f\u031e\3\2"+
- "\2\2\u036f\u0321\3\2\2\2\u036f\u0324\3\2\2\2\u036f\u0327\3\2\2\2\u036f"+
- "\u032a\3\2\2\2\u036f\u032d\3\2\2\2\u036f\u0330\3\2\2\2\u036f\u0333\3\2"+
- "\2\2\u036f\u0336\3\2\2\2\u036f\u0339\3\2\2\2\u036f\u033c\3\2\2\2\u036f"+
- "\u033f\3\2\2\2\u036f\u0342\3\2\2\2\u036f\u0345\3\2\2\2\u036f\u0348\3\2"+
- "\2\2\u036f\u034b\3\2\2\2\u036f\u034e\3\2\2\2\u036f\u0351\3\2\2\2\u036f"+
- "\u0354\3\2\2\2\u036f\u0357\3\2\2\2\u036f\u035a\3\2\2\2\u036f\u035d\3\2"+
- "\2\2\u036f\u0360\3\2\2\2\u036f\u0363\3\2\2\2\u036f\u0366\3\2\2\2\u036f"+
- "\u0369\3\2\2\2\u036f\u036c\3\2\2\2\u0370\u00ba\3\2\2\2\u0371\u0372\7}"+
- "\2\2\u0372\u0373\7}\2\2\u0373\u0377\3\2\2\2\u0374\u0376\13\2\2\2\u0375"+
- "\u0374\3\2\2\2\u0376\u0379\3\2\2\2\u0377\u0378\3\2\2\2\u0377\u0375\3\2"+
- "\2\2\u0378\u037a\3\2\2\2\u0379\u0377\3\2\2\2\u037a\u037b\7\177\2\2\u037b"+
- "\u037c\7\177\2\2\u037c\u00bc\3\2\2\2\u037d\u037e\7d\2\2\u037e\u037f\7"+
- "{\2\2\u037f\u0380\7v\2\2\u0380\u03a3\7g\2\2\u0381\u0382\7y\2\2\u0382\u0383"+
- "\7q\2\2\u0383\u0384\7t\2\2\u0384\u03a3\7f\2\2\u0385\u0386\7f\2\2\u0386"+
- "\u0387\7y\2\2\u0387\u0388\7q\2\2\u0388\u0389\7t\2\2\u0389\u03a3\7f\2\2"+
- "\u038a\u038b\7d\2\2\u038b\u038c\7q\2\2\u038c\u038d\7q\2\2\u038d\u03a3"+
- "\7n\2\2\u038e\u038f\7e\2\2\u038f\u0390\7j\2\2\u0390\u0391\7c\2\2\u0391"+
- "\u03a3\7t\2\2\u0392\u0393\7u\2\2\u0393\u0394\7j\2\2\u0394\u0395\7q\2\2"+
- "\u0395\u0396\7t\2\2\u0396\u03a3\7v\2\2\u0397\u0398\7k\2\2\u0398\u0399"+
- "\7p\2\2\u0399\u03a3\7v\2\2\u039a\u039b\7n\2\2\u039b\u039c\7q\2\2\u039c"+
- "\u039d\7p\2\2\u039d\u03a3\7i\2\2\u039e\u039f\7x\2\2\u039f\u03a0\7q\2\2"+
- "\u03a0\u03a1\7k\2\2\u03a1\u03a3\7f\2\2\u03a2\u037d\3\2\2\2\u03a2\u0381"+
- "\3\2\2\2\u03a2\u0385\3\2\2\2\u03a2\u038a\3\2\2\2\u03a2\u038e\3\2\2\2\u03a2"+
- "\u0392\3\2\2\2\u03a2\u0397\3\2\2\2\u03a2\u039a\3\2\2\2\u03a2\u039e\3\2"+
- "\2\2\u03a3\u00be\3\2\2\2\u03a4\u03aa\7$\2\2\u03a5\u03a6\7^\2\2\u03a6\u03a9"+
- "\7$\2\2\u03a7\u03a9\n\2\2\2\u03a8\u03a5\3\2\2\2\u03a8\u03a7\3\2\2\2\u03a9"+
- "\u03ac\3\2\2\2\u03aa\u03a8\3\2\2\2\u03aa\u03ab\3\2\2\2\u03ab\u03ad\3\2"+
- "\2\2\u03ac\u03aa\3\2\2\2\u03ad\u03af\7$\2\2\u03ae\u03b0\t\3\2\2\u03af"+
- "\u03ae\3\2\2\2\u03af\u03b0\3\2\2\2\u03b0\u03b5\3\2\2\2\u03b1\u03b3\t\4"+
- "\2\2\u03b2\u03b4\t\5\2\2\u03b3\u03b2\3\2\2\2\u03b3\u03b4\3\2\2\2\u03b4"+
- "\u03b6\3\2\2\2\u03b5\u03b1\3\2\2\2\u03b5\u03b6\3\2\2\2\u03b6\u03b8\3\2"+
- "\2\2\u03b7\u03b9\t\3\2\2\u03b8\u03b7\3\2\2\2\u03b8\u03b9\3\2\2\2\u03b9"+
- "\u00c0\3\2\2\2\u03ba\u03be\7)\2\2\u03bb\u03bc\7^\2\2\u03bc\u03bf\7)\2"+
- "\2\u03bd\u03bf\n\6\2\2\u03be\u03bb\3\2\2\2\u03be\u03bd\3\2\2\2\u03bf\u03c0"+
- "\3\2\2\2\u03c0\u03c1\7)\2\2\u03c1\u00c2\3\2\2\2\u03c2\u03c3\7v\2\2\u03c3"+
- "\u03c4\7t\2\2\u03c4\u03c5\7w\2\2\u03c5\u03cc\7g\2\2\u03c6\u03c7\7h\2\2"+
- "\u03c7\u03c8\7c\2\2\u03c8\u03c9\7n\2\2\u03c9\u03ca\7u\2\2\u03ca\u03cc"+
- "\7g\2\2\u03cb\u03c2\3\2\2\2\u03cb\u03c6\3\2\2\2\u03cc\u00c4\3\2\2\2\u03cd"+
- "\u03d0\5\u00c7d\2\u03ce\u03d0\5\u00cfh\2\u03cf\u03cd\3\2\2\2\u03cf\u03ce"+
- "\3\2\2\2\u03d0\u00c6\3\2\2\2\u03d1\u03d5\5\u00c9e\2\u03d2\u03d5\5\u00cb"+
- "f\2\u03d3\u03d5\5\u00cdg\2\u03d4\u03d1\3\2\2\2\u03d4\u03d2\3\2\2\2\u03d4"+
- "\u03d3\3\2\2\2\u03d5\u00c8\3\2\2\2\u03d6\u03dc\7\'\2\2\u03d7\u03d8\7\62"+
- "\2\2\u03d8\u03dc\7d\2\2\u03d9\u03da\7\62\2\2\u03da\u03dc\7D\2\2\u03db"+
- "\u03d6\3\2\2\2\u03db\u03d7\3\2\2\2\u03db\u03d9\3\2\2\2\u03dc\u03e0\3\2"+
- "\2\2\u03dd\u03df\5\u00d7l\2\u03de\u03dd\3\2\2\2\u03df\u03e2\3\2\2\2\u03e0"+
- "\u03de\3\2\2\2\u03e0\u03e1\3\2\2\2\u03e1\u03e3\3\2\2\2\u03e2\u03e0\3\2"+
- "\2\2\u03e3\u03e5\7\60\2\2\u03e4\u03e6\5\u00d7l\2\u03e5\u03e4\3\2\2\2\u03e6"+
- "\u03e7\3\2\2\2\u03e7\u03e5\3\2\2\2\u03e7\u03e8\3\2\2\2\u03e8\u00ca\3\2"+
- "\2\2\u03e9\u03eb\5\u00d9m\2\u03ea\u03e9\3\2\2\2\u03eb\u03ee\3\2\2\2\u03ec"+
- "\u03ea\3\2\2\2\u03ec\u03ed\3\2\2\2\u03ed\u03ef\3\2\2\2\u03ee\u03ec\3\2"+
- "\2\2\u03ef\u03f1\7\60\2\2\u03f0\u03f2\5\u00d9m\2\u03f1\u03f0\3\2\2\2\u03f2"+
- "\u03f3\3\2\2\2\u03f3\u03f1\3\2\2\2\u03f3\u03f4\3\2\2\2\u03f4\u00cc\3\2"+
- "\2\2\u03f5\u03fb\7&\2\2\u03f6\u03f7\7\62\2\2\u03f7\u03fb\7z\2\2\u03f8"+
- "\u03f9\7\62\2\2\u03f9\u03fb\7Z\2\2\u03fa\u03f5\3\2\2\2\u03fa\u03f6\3\2"+
- "\2\2\u03fa\u03f8\3\2\2\2\u03fb\u03ff\3\2\2\2\u03fc\u03fe\5\u00dbn\2\u03fd"+
- "\u03fc\3\2\2\2\u03fe\u0401\3\2\2\2\u03ff\u03fd\3\2\2\2\u03ff\u0400\3\2"+
- "\2\2\u0400\u0402\3\2\2\2\u0401\u03ff\3\2\2\2\u0402\u0404\7\60\2\2\u0403"+
- "\u0405\5\u00dbn\2\u0404\u0403\3\2\2\2\u0405\u0406\3\2\2\2\u0406\u0404"+
- "\3\2\2\2\u0406\u0407\3\2\2\2\u0407\u00ce\3\2\2\2\u0408\u040c\5\u00d3j"+
- "\2\u0409\u040c\5\u00d5k\2\u040a\u040c\5\u00d1i\2\u040b\u0408\3\2\2\2\u040b"+
- "\u0409\3\2\2\2\u040b\u040a\3\2\2\2\u040c\u0410\3\2\2\2\u040d\u040e\t\7"+
- "\2\2\u040e\u0411\t\b\2\2\u040f\u0411\7n\2\2\u0410\u040d\3\2\2\2\u0410"+
- "\u040f\3\2\2\2\u0410\u0411\3\2\2\2\u0411\u00d0\3\2\2\2\u0412\u0413\7\62"+
- "\2\2\u0413\u0415\t\t\2\2\u0414\u0416\5\u00d7l\2\u0415\u0414\3\2\2\2\u0416"+
- "\u0417\3\2\2\2\u0417\u0415\3\2\2\2\u0417\u0418\3\2\2\2\u0418\u0420\3\2"+
- "\2\2\u0419\u041b\7\'\2\2\u041a\u041c\5\u00d7l\2\u041b\u041a\3\2\2\2\u041c"+
- "\u041d\3\2\2\2\u041d\u041b\3\2\2\2\u041d\u041e\3\2\2\2\u041e\u0420\3\2"+
- "\2\2\u041f\u0412\3\2\2\2\u041f\u0419\3\2\2\2\u0420\u00d2\3\2\2\2\u0421"+
- "\u0423\5\u00d9m\2\u0422\u0421\3\2\2\2\u0423\u0424\3\2\2\2\u0424\u0422"+
- "\3\2\2\2\u0424\u0425\3\2\2\2\u0425\u00d4\3\2\2\2\u0426\u042c\7&\2\2\u0427"+
- "\u0428\7\62\2\2\u0428\u042c\7z\2\2\u0429\u042a\7\62\2\2\u042a\u042c\7"+
- "Z\2\2\u042b\u0426\3\2\2\2\u042b\u0427\3\2\2\2\u042b\u0429\3\2\2\2\u042c"+
- "\u042e\3\2\2\2\u042d\u042f\5\u00dbn\2\u042e\u042d\3\2\2\2\u042f\u0430"+
- "\3\2\2\2\u0430\u042e\3\2\2\2\u0430\u0431\3\2\2\2\u0431\u00d6\3\2\2\2\u0432"+
- "\u0433\t\n\2\2\u0433\u00d8\3\2\2\2\u0434\u0435\t\13\2\2\u0435\u00da\3"+
- "\2\2\2\u0436\u0437\t\f\2\2\u0437\u00dc\3\2\2\2\u0438\u043c\5\u00dfp\2"+
- "\u0439\u043b\5\u00e1q\2\u043a\u0439\3\2\2\2\u043b\u043e\3\2\2\2\u043c"+
- "\u043a\3\2\2\2\u043c\u043d\3\2\2\2\u043d\u00de\3\2\2\2\u043e\u043c\3\2"+
- "\2\2\u043f\u0440\t\r\2\2\u0440\u00e0\3\2\2\2\u0441\u0442\t\16\2\2\u0442"+
- "\u00e2\3\2\2\2\u0443\u0447\7#\2\2\u0444\u0446\5\u00e1q\2\u0445\u0444\3"+
- "\2\2\2\u0446\u0449\3\2\2\2\u0447\u0445\3\2\2\2\u0447\u0448\3\2\2\2\u0448"+
- "\u044b\3\2\2\2\u0449\u0447\3\2\2\2\u044a\u044c\t\17\2\2\u044b\u044a\3"+
- "\2\2\2\u044c\u044d\3\2\2\2\u044d\u044b\3\2\2\2\u044d\u044e\3\2\2\2\u044e"+
- "\u00e4\3\2\2\2\u044f\u0451\t\20\2\2\u0450\u044f\3\2\2\2\u0451\u0452\3"+
- "\2\2\2\u0452\u0450\3\2\2\2\u0452\u0453\3\2\2\2\u0453\u0454\3\2\2\2\u0454"+
- "\u0455\bs\2\2\u0455\u00e6\3\2\2\2\u0456\u0457\7\61\2\2\u0457\u0458\7\61"+
- "\2\2\u0458\u045c\3\2\2\2\u0459\u045b\n\21\2\2\u045a\u0459\3\2\2\2\u045b"+
- "\u045e\3\2\2\2\u045c\u045a\3\2\2\2\u045c\u045d\3\2\2\2\u045d\u045f\3\2"+
- "\2\2\u045e\u045c\3\2\2\2\u045f\u0460\bt\3\2\u0460\u00e8\3\2\2\2\u0461"+
- "\u0462\7\61\2\2\u0462\u0463\7,\2\2\u0463\u0467\3\2\2\2\u0464\u0466\13"+
- "\2\2\2\u0465\u0464\3\2\2\2\u0466\u0469\3\2\2\2\u0467\u0468\3\2\2\2\u0467"+
- "\u0465\3\2\2\2\u0468\u046a\3\2\2\2\u0469\u0467\3\2\2\2\u046a\u046b\7,"+
- "\2\2\u046b\u046c\7\61\2\2\u046c\u046d\3\2\2\2\u046d\u046e\bu\3\2\u046e"+
- "\u00ea\3\2\2\2&\2\u036f\u0377\u03a2\u03a8\u03aa\u03af\u03b3\u03b5\u03b8"+
- "\u03be\u03cb\u03cf\u03d4\u03db\u03e0\u03e7\u03ec\u03f3\u03fa\u03ff\u0406"+
- "\u040b\u0410\u0417\u041d\u041f\u0424\u042b\u0430\u043c\u0447\u044d\u0452"+
- "\u045c\u0467\4\2\3\2\2\4\2";
+ "k\4l\tl\4m\tm\4n\tn\4o\to\4p\tp\4q\tq\4r\tr\4s\ts\4t\tt\4u\tu\4v\tv\4"+
+ "w\tw\4x\tx\3\2\3\2\3\2\3\2\3\2\3\2\3\2\3\3\3\3\3\4\3\4\3\4\3\4\3\4\3\4"+
+ "\3\4\3\4\3\5\3\5\3\6\3\6\3\7\3\7\3\b\3\b\3\t\3\t\3\n\3\n\3\13\3\13\3\13"+
+ "\3\13\3\13\3\13\3\13\3\13\3\f\3\f\3\f\3\f\3\f\3\f\3\f\3\f\3\r\3\r\3\r"+
+ "\3\r\3\r\3\r\3\r\3\r\3\r\3\16\3\16\3\16\3\17\3\17\3\17\3\17\3\20\3\20"+
+ "\3\20\3\20\3\20\3\20\3\20\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\22"+
+ "\3\22\3\22\3\22\3\22\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\24"+
+ "\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\24\3\25\3\25\3\25\3\25\3\25\3\25"+
+ "\3\25\3\25\3\25\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3\26\3\27"+
+ "\3\27\3\27\3\27\3\27\3\27\3\30\3\30\3\30\3\30\3\30\3\30\3\30\3\31\3\31"+
+ "\3\31\3\31\3\31\3\31\3\31\3\32\3\32\3\32\3\32\3\32\3\32\3\33\3\33\3\33"+
+ "\3\33\3\33\3\33\3\33\3\33\3\33\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\35"+
+ "\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\36\3\36\3\36\3\36\3\36\3\36"+
+ "\3\36\3\36\3\36\3\36\3\37\3\37\3\37\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(\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\60\3\60\3\61\3\61\3\62\3\62\3\62"+
+ "\3\62\3\62\3\62\3\62\3\63\3\63\3\63\3\63\3\63\3\64\3\64\3\65\3\65\3\65"+
+ "\3\66\3\66\3\66\3\66\3\66\3\66\3\66\3\67\3\67\3\67\3\67\3\67\3\67\3\67"+
+ "\38\38\38\39\39\39\3:\3:\3;\3;\3<\3<\3=\3=\3>\3>\3?\3?\3?\3@\3@\3@\3A"+
+ "\3A\3B\3B\3C\3C\3D\3D\3E\3E\3E\3F\3F\3F\3G\3G\3G\3H\3H\3H\3I\3I\3J\3J"+
+ "\3K\3K\3K\3L\3L\3L\3M\3M\3N\3N\3N\3O\3O\3O\3P\3P\3P\3Q\3Q\3Q\3R\3R\3R"+
+ "\3S\3S\3S\3S\3T\3T\3T\3T\3U\3U\3U\3V\3V\3V\3W\3W\3W\3X\3X\3X\3X\3X\3X"+
+ "\3X\3X\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Z\3Z\3Z\3Z\3Z\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`\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`\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`\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`\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`\3`\3`\3`\3`\3`\3`\3`\3`\3`\3`\3`\3`\5`\u038b\n`\3a\3a"+
+ "\3a\3a\7a\u0391\na\fa\16a\u0394\13a\3a\3a\3a\3b\3b\3b\3b\3b\3b\3b\3b\3"+
+ "b\3b\3b\3b\3b\3b\3b\3b\3b\3b\3b\3b\3b\3b\3b\3b\3b\3b\3b\3b\3b\3b\3b\3"+
+ "b\3b\3b\3b\3b\3b\5b\u03be\nb\3c\3c\3c\3c\7c\u03c4\nc\fc\16c\u03c7\13c"+
+ "\3c\3c\5c\u03cb\nc\3c\3c\5c\u03cf\nc\5c\u03d1\nc\3c\5c\u03d4\nc\3d\3d"+
+ "\3d\3d\5d\u03da\nd\3d\3d\3e\3e\3e\3e\3e\3e\3e\3e\3e\5e\u03e7\ne\3f\3f"+
+ "\5f\u03eb\nf\3g\3g\3g\5g\u03f0\ng\3h\3h\3h\3h\3h\5h\u03f7\nh\3h\7h\u03fa"+
+ "\nh\fh\16h\u03fd\13h\3h\3h\6h\u0401\nh\rh\16h\u0402\3i\7i\u0406\ni\fi"+
+ "\16i\u0409\13i\3i\3i\6i\u040d\ni\ri\16i\u040e\3j\3j\3j\3j\3j\5j\u0416"+
+ "\nj\3j\7j\u0419\nj\fj\16j\u041c\13j\3j\3j\6j\u0420\nj\rj\16j\u0421\3k"+
+ "\3k\3k\5k\u0427\nk\3k\3k\3k\5k\u042c\nk\3l\3l\3l\6l\u0431\nl\rl\16l\u0432"+
+ "\3l\3l\6l\u0437\nl\rl\16l\u0438\5l\u043b\nl\3m\6m\u043e\nm\rm\16m\u043f"+
+ "\3n\3n\3n\3n\3n\5n\u0447\nn\3n\6n\u044a\nn\rn\16n\u044b\3o\3o\3p\3p\3"+
+ "q\3q\3r\3r\7r\u0456\nr\fr\16r\u0459\13r\3s\3s\3t\3t\3u\3u\7u\u0461\nu"+
+ "\fu\16u\u0464\13u\3u\6u\u0467\nu\ru\16u\u0468\3v\6v\u046c\nv\rv\16v\u046d"+
+ "\3v\3v\3w\3w\3w\3w\7w\u0476\nw\fw\16w\u0479\13w\3w\3w\3x\3x\3x\3x\7x\u0481"+
+ "\nx\fx\16x\u0484\13x\3x\3x\3x\3x\3x\4\u0392\u0482\2y\3\3\5\4\7\5\t\6\13"+
+ "\7\r\b\17\t\21\n\23\13\25\f\27\r\31\16\33\17\35\20\37\21!\22#\23%\24\'"+
+ "\25)\26+\27-\30/\31\61\32\63\33\65\34\67\359\36;\37= ?!A\"C#E$G%I&K\'"+
+ "M(O)Q*S+U,W-Y.[/]\60_\61a\62c\63e\64g\65i\66k\67m8o9q:s;u{?}@\177"+
+ "A\u0081B\u0083C\u0085D\u0087E\u0089F\u008bG\u008dH\u008fI\u0091J\u0093"+
+ "K\u0095L\u0097M\u0099N\u009bO\u009dP\u009fQ\u00a1R\u00a3S\u00a5T\u00a7"+
+ "U\u00a9V\u00abW\u00adX\u00afY\u00b1Z\u00b3[\u00b5\\\u00b7]\u00b9^\u00bb"+
+ "_\u00bd`\u00bfa\u00c1b\u00c3c\u00c5d\u00c7e\u00c9f\u00cbg\u00cdh\u00cf"+
+ "i\u00d1j\u00d3k\u00d5l\u00d7m\u00d9n\u00dbo\u00dd\2\u00df\2\u00e1\2\u00e3"+
+ "p\u00e5\2\u00e7\2\u00e9q\u00ebr\u00eds\u00eft\3\2\22\3\2$$\3\2||\4\2r"+
+ "ruu\4\2ooww\3\2))\4\2uuww\7\2dfkknnuuyy\4\2DDdd\3\2\62\63\3\2\62;\5\2"+
+ "\62;CHch\5\2C\\aac|\6\2\62;C\\aac|\4\2--//\6\2\13\f\17\17\"\"\u00a2\u00a2"+
+ "\4\2\f\f\17\17\2\u04fc\2\3\3\2\2\2\2\5\3\2\2\2\2\7\3\2\2\2\2\t\3\2\2\2"+
+ "\2\13\3\2\2\2\2\r\3\2\2\2\2\17\3\2\2\2\2\21\3\2\2\2\2\23\3\2\2\2\2\25"+
+ "\3\2\2\2\2\27\3\2\2\2\2\31\3\2\2\2\2\33\3\2\2\2\2\35\3\2\2\2\2\37\3\2"+
+ "\2\2\2!\3\2\2\2\2#\3\2\2\2\2%\3\2\2\2\2\'\3\2\2\2\2)\3\2\2\2\2+\3\2\2"+
+ "\2\2-\3\2\2\2\2/\3\2\2\2\2\61\3\2\2\2\2\63\3\2\2\2\2\65\3\2\2\2\2\67\3"+
+ "\2\2\2\29\3\2\2\2\2;\3\2\2\2\2=\3\2\2\2\2?\3\2\2\2\2A\3\2\2\2\2C\3\2\2"+
+ "\2\2E\3\2\2\2\2G\3\2\2\2\2I\3\2\2\2\2K\3\2\2\2\2M\3\2\2\2\2O\3\2\2\2\2"+
+ "Q\3\2\2\2\2S\3\2\2\2\2U\3\2\2\2\2W\3\2\2\2\2Y\3\2\2\2\2[\3\2\2\2\2]\3"+
+ "\2\2\2\2_\3\2\2\2\2a\3\2\2\2\2c\3\2\2\2\2e\3\2\2\2\2g\3\2\2\2\2i\3\2\2"+
+ "\2\2k\3\2\2\2\2m\3\2\2\2\2o\3\2\2\2\2q\3\2\2\2\2s\3\2\2\2\2u\3\2\2\2\2"+
+ "w\3\2\2\2\2y\3\2\2\2\2{\3\2\2\2\2}\3\2\2\2\2\177\3\2\2\2\2\u0081\3\2\2"+
+ "\2\2\u0083\3\2\2\2\2\u0085\3\2\2\2\2\u0087\3\2\2\2\2\u0089\3\2\2\2\2\u008b"+
+ "\3\2\2\2\2\u008d\3\2\2\2\2\u008f\3\2\2\2\2\u0091\3\2\2\2\2\u0093\3\2\2"+
+ "\2\2\u0095\3\2\2\2\2\u0097\3\2\2\2\2\u0099\3\2\2\2\2\u009b\3\2\2\2\2\u009d"+
+ "\3\2\2\2\2\u009f\3\2\2\2\2\u00a1\3\2\2\2\2\u00a3\3\2\2\2\2\u00a5\3\2\2"+
+ "\2\2\u00a7\3\2\2\2\2\u00a9\3\2\2\2\2\u00ab\3\2\2\2\2\u00ad\3\2\2\2\2\u00af"+
+ "\3\2\2\2\2\u00b1\3\2\2\2\2\u00b3\3\2\2\2\2\u00b5\3\2\2\2\2\u00b7\3\2\2"+
+ "\2\2\u00b9\3\2\2\2\2\u00bb\3\2\2\2\2\u00bd\3\2\2\2\2\u00bf\3\2\2\2\2\u00c1"+
+ "\3\2\2\2\2\u00c3\3\2\2\2\2\u00c5\3\2\2\2\2\u00c7\3\2\2\2\2\u00c9\3\2\2"+
+ "\2\2\u00cb\3\2\2\2\2\u00cd\3\2\2\2\2\u00cf\3\2\2\2\2\u00d1\3\2\2\2\2\u00d3"+
+ "\3\2\2\2\2\u00d5\3\2\2\2\2\u00d7\3\2\2\2\2\u00d9\3\2\2\2\2\u00db\3\2\2"+
+ "\2\2\u00e3\3\2\2\2\2\u00e9\3\2\2\2\2\u00eb\3\2\2\2\2\u00ed\3\2\2\2\2\u00ef"+
+ "\3\2\2\2\3\u00f1\3\2\2\2\5\u00f8\3\2\2\2\7\u00fa\3\2\2\2\t\u0102\3\2\2"+
+ "\2\13\u0104\3\2\2\2\r\u0106\3\2\2\2\17\u0108\3\2\2\2\21\u010a\3\2\2\2"+
+ "\23\u010c\3\2\2\2\25\u010e\3\2\2\2\27\u0116\3\2\2\2\31\u011e\3\2\2\2\33"+
+ "\u0127\3\2\2\2\35\u012a\3\2\2\2\37\u012e\3\2\2\2!\u0135\3\2\2\2#\u013d"+
+ "\3\2\2\2%\u0142\3\2\2\2\'\u014b\3\2\2\2)\u0154\3\2\2\2+\u015d\3\2\2\2"+
+ "-\u0167\3\2\2\2/\u016d\3\2\2\2\61\u0174\3\2\2\2\63\u017b\3\2\2\2\65\u0181"+
+ "\3\2\2\2\67\u018a\3\2\2\29\u0191\3\2\2\2;\u019a\3\2\2\2=\u01a4\3\2\2\2"+
+ "?\u01a7\3\2\2\2A\u01ac\3\2\2\2C\u01b2\3\2\2\2E\u01b5\3\2\2\2G\u01b9\3"+
+ "\2\2\2I\u01c0\3\2\2\2K\u01c7\3\2\2\2M\u01cd\3\2\2\2O\u01d6\3\2\2\2Q\u01da"+
+ "\3\2\2\2S\u01e3\3\2\2\2U\u01e8\3\2\2\2W\u01ea\3\2\2\2Y\u01ed\3\2\2\2["+
+ "\u01f4\3\2\2\2]\u01fd\3\2\2\2_\u01ff\3\2\2\2a\u0201\3\2\2\2c\u0203\3\2"+
+ "\2\2e\u020a\3\2\2\2g\u020f\3\2\2\2i\u0211\3\2\2\2k\u0214\3\2\2\2m\u021b"+
+ "\3\2\2\2o\u0222\3\2\2\2q\u0225\3\2\2\2s\u0228\3\2\2\2u\u022a\3\2\2\2w"+
+ "\u022c\3\2\2\2y\u022e\3\2\2\2{\u0230\3\2\2\2}\u0232\3\2\2\2\177\u0235"+
+ "\3\2\2\2\u0081\u0238\3\2\2\2\u0083\u023a\3\2\2\2\u0085\u023c\3\2\2\2\u0087"+
+ "\u023e\3\2\2\2\u0089\u0240\3\2\2\2\u008b\u0243\3\2\2\2\u008d\u0246\3\2"+
+ "\2\2\u008f\u0249\3\2\2\2\u0091\u024c\3\2\2\2\u0093\u024e\3\2\2\2\u0095"+
+ "\u0250\3\2\2\2\u0097\u0253\3\2\2\2\u0099\u0256\3\2\2\2\u009b\u0258\3\2"+
+ "\2\2\u009d\u025b\3\2\2\2\u009f\u025e\3\2\2\2\u00a1\u0261\3\2\2\2\u00a3"+
+ "\u0264\3\2\2\2\u00a5\u0267\3\2\2\2\u00a7\u026b\3\2\2\2\u00a9\u026f\3\2"+
+ "\2\2\u00ab\u0272\3\2\2\2\u00ad\u0275\3\2\2\2\u00af\u0278\3\2\2\2\u00b1"+
+ "\u0280\3\2\2\2\u00b3\u0289\3\2\2\2\u00b5\u028e\3\2\2\2\u00b7\u0297\3\2"+
+ "\2\2\u00b9\u029d\3\2\2\2\u00bb\u02a4\3\2\2\2\u00bd\u02aa\3\2\2\2\u00bf"+
+ "\u038a\3\2\2\2\u00c1\u038c\3\2\2\2\u00c3\u03bd\3\2\2\2\u00c5\u03bf\3\2"+
+ "\2\2\u00c7\u03d5\3\2\2\2\u00c9\u03e6\3\2\2\2\u00cb\u03ea\3\2\2\2\u00cd"+
+ "\u03ef\3\2\2\2\u00cf\u03f6\3\2\2\2\u00d1\u0407\3\2\2\2\u00d3\u0415\3\2"+
+ "\2\2\u00d5\u0426\3\2\2\2\u00d7\u043a\3\2\2\2\u00d9\u043d\3\2\2\2\u00db"+
+ "\u0446\3\2\2\2\u00dd\u044d\3\2\2\2\u00df\u044f\3\2\2\2\u00e1\u0451\3\2"+
+ "\2\2\u00e3\u0453\3\2\2\2\u00e5\u045a\3\2\2\2\u00e7\u045c\3\2\2\2\u00e9"+
+ "\u045e\3\2\2\2\u00eb\u046b\3\2\2\2\u00ed\u0471\3\2\2\2\u00ef\u047c\3\2"+
+ "\2\2\u00f1\u00f2\7k\2\2\u00f2\u00f3\7o\2\2\u00f3\u00f4\7r\2\2\u00f4\u00f5"+
+ "\7q\2\2\u00f5\u00f6\7t\2\2\u00f6\u00f7\7v\2\2\u00f7\4\3\2\2\2\u00f8\u00f9"+
+ "\7=\2\2\u00f9\6\3\2\2\2\u00fa\u00fb\7v\2\2\u00fb\u00fc\7{\2\2\u00fc\u00fd"+
+ "\7r\2\2\u00fd\u00fe\7g\2\2\u00fe\u00ff\7f\2\2\u00ff\u0100\7g\2\2\u0100"+
+ "\u0101\7h\2\2\u0101\b\3\2\2\2\u0102\u0103\7.\2\2\u0103\n\3\2\2\2\u0104"+
+ "\u0105\7?\2\2\u0105\f\3\2\2\2\u0106\u0107\7*\2\2\u0107\16\3\2\2\2\u0108"+
+ "\u0109\7+\2\2\u0109\20\3\2\2\2\u010a\u010b\7}\2\2\u010b\22\3\2\2\2\u010c"+
+ "\u010d\7\177\2\2\u010d\24\3\2\2\2\u010e\u010f\7%\2\2\u010f\u0110\7r\2"+
+ "\2\u0110\u0111\7t\2\2\u0111\u0112\7c\2\2\u0112\u0113\7i\2\2\u0113\u0114"+
+ "\7o\2\2\u0114\u0115\7c\2\2\u0115\26\3\2\2\2\u0116\u0117\7t\2\2\u0117\u0118"+
+ "\7g\2\2\u0118\u0119\7u\2\2\u0119\u011a\7g\2\2\u011a\u011b\7t\2\2\u011b"+
+ "\u011c\7x\2\2\u011c\u011d\7g\2\2\u011d\30\3\2\2\2\u011e\u011f\7%\2\2\u011f"+
+ "\u0120\7t\2\2\u0120\u0121\7g\2\2\u0121\u0122\7u\2\2\u0122\u0123\7g\2\2"+
+ "\u0123\u0124\7t\2\2\u0124\u0125\7x\2\2\u0125\u0126\7g\2\2\u0126\32\3\2"+
+ "\2\2\u0127\u0128\7r\2\2\u0128\u0129\7e\2\2\u0129\34\3\2\2\2\u012a\u012b"+
+ "\7%\2\2\u012b\u012c\7r\2\2\u012c\u012d\7e\2\2\u012d\36\3\2\2\2\u012e\u012f"+
+ "\7v\2\2\u012f\u0130\7c\2\2\u0130\u0131\7t\2\2\u0131\u0132\7i\2\2\u0132"+
+ "\u0133\7g\2\2\u0133\u0134\7v\2\2\u0134 \3\2\2\2\u0135\u0136\7%\2\2\u0136"+
+ "\u0137\7v\2\2\u0137\u0138\7c\2\2\u0138\u0139\7t\2\2\u0139\u013a\7i\2\2"+
+ "\u013a\u013b\7g\2\2\u013b\u013c\7v\2\2\u013c\"\3\2\2\2\u013d\u013e\7n"+
+ "\2\2\u013e\u013f\7k\2\2\u013f\u0140\7p\2\2\u0140\u0141\7m\2\2\u0141$\3"+
+ "\2\2\2\u0142\u0143\7e\2\2\u0143\u0144\7q\2\2\u0144\u0145\7f\2\2\u0145"+
+ "\u0146\7g\2\2\u0146\u0147\7a\2\2\u0147\u0148\7u\2\2\u0148\u0149\7g\2\2"+
+ "\u0149\u014a\7i\2\2\u014a&\3\2\2\2\u014b\u014c\7f\2\2\u014c\u014d\7c\2"+
+ "\2\u014d\u014e\7v\2\2\u014e\u014f\7c\2\2\u014f\u0150\7a\2\2\u0150\u0151"+
+ "\7u\2\2\u0151\u0152\7g\2\2\u0152\u0153\7i\2\2\u0153(\3\2\2\2\u0154\u0155"+
+ "\7g\2\2\u0155\u0156\7p\2\2\u0156\u0157\7e\2\2\u0157\u0158\7q\2\2\u0158"+
+ "\u0159\7f\2\2\u0159\u015a\7k\2\2\u015a\u015b\7p\2\2\u015b\u015c\7i\2\2"+
+ "\u015c*\3\2\2\2\u015d\u015e\7%\2\2\u015e\u015f\7g\2\2\u015f\u0160\7p\2"+
+ "\2\u0160\u0161\7e\2\2\u0161\u0162\7q\2\2\u0162\u0163\7f\2\2\u0163\u0164"+
+ "\7k\2\2\u0164\u0165\7p\2\2\u0165\u0166\7i\2\2\u0166,\3\2\2\2\u0167\u0168"+
+ "\7e\2\2\u0168\u0169\7q\2\2\u0169\u016a\7p\2\2\u016a\u016b\7u\2\2\u016b"+
+ "\u016c\7v\2\2\u016c.\3\2\2\2\u016d\u016e\7g\2\2\u016e\u016f\7z\2\2\u016f"+
+ "\u0170\7v\2\2\u0170\u0171\7g\2\2\u0171\u0172\7t\2\2\u0172\u0173\7p\2\2"+
+ "\u0173\60\3\2\2\2\u0174\u0175\7g\2\2\u0175\u0176\7z\2\2\u0176\u0177\7"+
+ "r\2\2\u0177\u0178\7q\2\2\u0178\u0179\7t\2\2\u0179\u017a\7v\2\2\u017a\62"+
+ "\3\2\2\2\u017b\u017c\7c\2\2\u017c\u017d\7n\2\2\u017d\u017e\7k\2\2\u017e"+
+ "\u017f\7i\2\2\u017f\u0180\7p\2\2\u0180\64\3\2\2\2\u0181\u0182\7t\2\2\u0182"+
+ "\u0183\7g\2\2\u0183\u0184\7i\2\2\u0184\u0185\7k\2\2\u0185\u0186\7u\2\2"+
+ "\u0186\u0187\7v\2\2\u0187\u0188\7g\2\2\u0188\u0189\7t\2\2\u0189\66\3\2"+
+ "\2\2\u018a\u018b\7k\2\2\u018b\u018c\7p\2\2\u018c\u018d\7n\2\2\u018d\u018e"+
+ "\7k\2\2\u018e\u018f\7p\2\2\u018f\u0190\7g\2\2\u01908\3\2\2\2\u0191\u0192"+
+ "\7x\2\2\u0192\u0193\7q\2\2\u0193\u0194\7n\2\2\u0194\u0195\7c\2\2\u0195"+
+ "\u0196\7v\2\2\u0196\u0197\7k\2\2\u0197\u0198\7n\2\2\u0198\u0199\7g\2\2"+
+ "\u0199:\3\2\2\2\u019a\u019b\7k\2\2\u019b\u019c\7p\2\2\u019c\u019d\7v\2"+
+ "\2\u019d\u019e\7g\2\2\u019e\u019f\7t\2\2\u019f\u01a0\7t\2\2\u01a0\u01a1"+
+ "\7w\2\2\u01a1\u01a2\7r\2\2\u01a2\u01a3\7v\2\2\u01a3<\3\2\2\2\u01a4\u01a5"+
+ "\7k\2\2\u01a5\u01a6\7h\2\2\u01a6>\3\2\2\2\u01a7\u01a8\7g\2\2\u01a8\u01a9"+
+ "\7n\2\2\u01a9\u01aa\7u\2\2\u01aa\u01ab\7g\2\2\u01ab@\3\2\2\2\u01ac\u01ad"+
+ "\7y\2\2\u01ad\u01ae\7j\2\2\u01ae\u01af\7k\2\2\u01af\u01b0\7n\2\2\u01b0"+
+ "\u01b1\7g\2\2\u01b1B\3\2\2\2\u01b2\u01b3\7f\2\2\u01b3\u01b4\7q\2\2\u01b4"+
+ "D\3\2\2\2\u01b5\u01b6\7h\2\2\u01b6\u01b7\7q\2\2\u01b7\u01b8\7t\2\2\u01b8"+
+ "F\3\2\2\2\u01b9\u01ba\7u\2\2\u01ba\u01bb\7y\2\2\u01bb\u01bc\7k\2\2\u01bc"+
+ "\u01bd\7v\2\2\u01bd\u01be\7e\2\2\u01be\u01bf\7j\2\2\u01bfH\3\2\2\2\u01c0"+
+ "\u01c1\7t\2\2\u01c1\u01c2\7g\2\2\u01c2\u01c3\7v\2\2\u01c3\u01c4\7w\2\2"+
+ "\u01c4\u01c5\7t\2\2\u01c5\u01c6\7p\2\2\u01c6J\3\2\2\2\u01c7\u01c8\7d\2"+
+ "\2\u01c8\u01c9\7t\2\2\u01c9\u01ca\7g\2\2\u01ca\u01cb\7c\2\2\u01cb\u01cc"+
+ "\7m\2\2\u01ccL\3\2\2\2\u01cd\u01ce\7e\2\2\u01ce\u01cf\7q\2\2\u01cf\u01d0"+
+ "\7p\2\2\u01d0\u01d1\7v\2\2\u01d1\u01d2\7k\2\2\u01d2\u01d3\7p\2\2\u01d3"+
+ "\u01d4\7w\2\2\u01d4\u01d5\7g\2\2\u01d5N\3\2\2\2\u01d6\u01d7\7c\2\2\u01d7"+
+ "\u01d8\7u\2\2\u01d8\u01d9\7o\2\2\u01d9P\3\2\2\2\u01da\u01db\7f\2\2\u01db"+
+ "\u01dc\7g\2\2\u01dc\u01dd\7h\2\2\u01dd\u01de\7c\2\2\u01de\u01df\7w\2\2"+
+ "\u01df\u01e0\7n\2\2\u01e0\u01e1\7v\2\2\u01e1\u01e2\7<\2\2\u01e2R\3\2\2"+
+ "\2\u01e3\u01e4\7e\2\2\u01e4\u01e5\7c\2\2\u01e5\u01e6\7u\2\2\u01e6\u01e7"+
+ "\7g\2\2\u01e7T\3\2\2\2\u01e8\u01e9\7<\2\2\u01e9V\3\2\2\2\u01ea\u01eb\7"+
+ "\60\2\2\u01eb\u01ec\7\60\2\2\u01ecX\3\2\2\2\u01ed\u01ee\7u\2\2\u01ee\u01ef"+
+ "\7k\2\2\u01ef\u01f0\7i\2\2\u01f0\u01f1\7p\2\2\u01f1\u01f2\7g\2\2\u01f2"+
+ "\u01f3\7f\2\2\u01f3Z\3\2\2\2\u01f4\u01f5\7w\2\2\u01f5\u01f6\7p\2\2\u01f6"+
+ "\u01f7\7u\2\2\u01f7\u01f8\7k\2\2\u01f8\u01f9\7i\2\2\u01f9\u01fa\7p\2\2"+
+ "\u01fa\u01fb\7g\2\2\u01fb\u01fc\7f\2\2\u01fc\\\3\2\2\2\u01fd\u01fe\7,"+
+ "\2\2\u01fe^\3\2\2\2\u01ff\u0200\7]\2\2\u0200`\3\2\2\2\u0201\u0202\7_\2"+
+ "\2\u0202b\3\2\2\2\u0203\u0204\7u\2\2\u0204\u0205\7v\2\2\u0205\u0206\7"+
+ "t\2\2\u0206\u0207\7w\2\2\u0207\u0208\7e\2\2\u0208\u0209\7v\2\2\u0209d"+
+ "\3\2\2\2\u020a\u020b\7g\2\2\u020b\u020c\7p\2\2\u020c\u020d\7w\2\2\u020d"+
+ "\u020e\7o\2\2\u020ef\3\2\2\2\u020f\u0210\7\60\2\2\u0210h\3\2\2\2\u0211"+
+ "\u0212\7/\2\2\u0212\u0213\7@\2\2\u0213j\3\2\2\2\u0214\u0215\7u\2\2\u0215"+
+ "\u0216\7k\2\2\u0216\u0217\7|\2\2\u0217\u0218\7g\2\2\u0218\u0219\7q\2\2"+
+ "\u0219\u021a\7h\2\2\u021al\3\2\2\2\u021b\u021c\7v\2\2\u021c\u021d\7{\2"+
+ "\2\u021d\u021e\7r\2\2\u021e\u021f\7g\2\2\u021f\u0220\7k\2\2\u0220\u0221"+
+ "\7f\2\2\u0221n\3\2\2\2\u0222\u0223\7/\2\2\u0223\u0224\7/\2\2\u0224p\3"+
+ "\2\2\2\u0225\u0226\7-\2\2\u0226\u0227\7-\2\2\u0227r\3\2\2\2\u0228\u0229"+
+ "\7-\2\2\u0229t\3\2\2\2\u022a\u022b\7/\2\2\u022bv\3\2\2\2\u022c\u022d\7"+
+ "#\2\2\u022dx\3\2\2\2\u022e\u022f\7(\2\2\u022fz\3\2\2\2\u0230\u0231\7\u0080"+
+ "\2\2\u0231|\3\2\2\2\u0232\u0233\7@\2\2\u0233\u0234\7@\2\2\u0234~\3\2\2"+
+ "\2\u0235\u0236\7>\2\2\u0236\u0237\7>\2\2\u0237\u0080\3\2\2\2\u0238\u0239"+
+ "\7\61\2\2\u0239\u0082\3\2\2\2\u023a\u023b\7\'\2\2\u023b\u0084\3\2\2\2"+
+ "\u023c\u023d\7>\2\2\u023d\u0086\3\2\2\2\u023e\u023f\7@\2\2\u023f\u0088"+
+ "\3\2\2\2\u0240\u0241\7?\2\2\u0241\u0242\7?\2\2\u0242\u008a\3\2\2\2\u0243"+
+ "\u0244\7#\2\2\u0244\u0245\7?\2\2\u0245\u008c\3\2\2\2\u0246\u0247\7>\2"+
+ "\2\u0247\u0248\7?\2\2\u0248\u008e\3\2\2\2\u0249\u024a\7@\2\2\u024a\u024b"+
+ "\7?\2\2\u024b\u0090\3\2\2\2\u024c\u024d\7`\2\2\u024d\u0092\3\2\2\2\u024e"+
+ "\u024f\7~\2\2\u024f\u0094\3\2\2\2\u0250\u0251\7(\2\2\u0251\u0252\7(\2"+
+ "\2\u0252\u0096\3\2\2\2\u0253\u0254\7~\2\2\u0254\u0255\7~\2\2\u0255\u0098"+
+ "\3\2\2\2\u0256\u0257\7A\2\2\u0257\u009a\3\2\2\2\u0258\u0259\7-\2\2\u0259"+
+ "\u025a\7?\2\2\u025a\u009c\3\2\2\2\u025b\u025c\7/\2\2\u025c\u025d\7?\2"+
+ "\2\u025d\u009e\3\2\2\2\u025e\u025f\7,\2\2\u025f\u0260\7?\2\2\u0260\u00a0"+
+ "\3\2\2\2\u0261\u0262\7\61\2\2\u0262\u0263\7?\2\2\u0263\u00a2\3\2\2\2\u0264"+
+ "\u0265\7\'\2\2\u0265\u0266\7?\2\2\u0266\u00a4\3\2\2\2\u0267\u0268\7>\2"+
+ "\2\u0268\u0269\7>\2\2\u0269\u026a\7?\2\2\u026a\u00a6\3\2\2\2\u026b\u026c"+
+ "\7@\2\2\u026c\u026d\7@\2\2\u026d\u026e\7?\2\2\u026e\u00a8\3\2\2\2\u026f"+
+ "\u0270\7(\2\2\u0270\u0271\7?\2\2\u0271\u00aa\3\2\2\2\u0272\u0273\7~\2"+
+ "\2\u0273\u0274\7?\2\2\u0274\u00ac\3\2\2\2\u0275\u0276\7`\2\2\u0276\u0277"+
+ "\7?\2\2\u0277\u00ae\3\2\2\2\u0278\u0279\7m\2\2\u0279\u027a\7k\2\2\u027a"+
+ "\u027b\7e\2\2\u027b\u027c\7m\2\2\u027c\u027d\7c\2\2\u027d\u027e\7u\2\2"+
+ "\u027e\u027f\7o\2\2\u027f\u00b0\3\2\2\2\u0280\u0281\7t\2\2\u0281\u0282"+
+ "\7g\2\2\u0282\u0283\7u\2\2\u0283\u0284\7q\2\2\u0284\u0285\7w\2\2\u0285"+
+ "\u0286\7t\2\2\u0286\u0287\7e\2\2\u0287\u0288\7g\2\2\u0288\u00b2\3\2\2"+
+ "\2\u0289\u028a\7w\2\2\u028a\u028b\7u\2\2\u028b\u028c\7g\2\2\u028c\u028d"+
+ "\7u\2\2\u028d\u00b4\3\2\2\2\u028e\u028f\7e\2\2\u028f\u0290\7n\2\2\u0290"+
+ "\u0291\7q\2\2\u0291\u0292\7d\2\2\u0292\u0293\7d\2\2\u0293\u0294\7g\2\2"+
+ "\u0294\u0295\7t\2\2\u0295\u0296\7u\2\2\u0296\u00b6\3\2\2\2\u0297\u0298"+
+ "\7d\2\2\u0298\u0299\7{\2\2\u0299\u029a\7v\2\2\u029a\u029b\7g\2\2\u029b"+
+ "\u029c\7u\2\2\u029c\u00b8\3\2\2\2\u029d\u029e\7e\2\2\u029e\u029f\7{\2"+
+ "\2\u029f\u02a0\7e\2\2\u02a0\u02a1\7n\2\2\u02a1\u02a2\7g\2\2\u02a2\u02a3"+
+ "\7u\2\2\u02a3\u00ba\3\2\2\2\u02a4\u02a5\7\60\2\2\u02a5\u02a6\7d\2\2\u02a6"+
+ "\u02a7\7{\2\2\u02a7\u02a8\7v\2\2\u02a8\u02a9\7g\2\2\u02a9\u00bc\3\2\2"+
+ "\2\u02aa\u02ab\7%\2\2\u02ab\u00be\3\2\2\2\u02ac\u02ad\7d\2\2\u02ad\u02ae"+
+ "\7t\2\2\u02ae\u038b\7m\2\2\u02af\u02b0\7q\2\2\u02b0\u02b1\7t\2\2\u02b1"+
+ "\u038b\7c\2\2\u02b2\u02b3\7m\2\2\u02b3\u02b4\7k\2\2\u02b4\u038b\7n\2\2"+
+ "\u02b5\u02b6\7u\2\2\u02b6\u02b7\7n\2\2\u02b7\u038b\7q\2\2\u02b8\u02b9"+
+ "\7p\2\2\u02b9\u02ba\7q\2\2\u02ba\u038b\7r\2\2\u02bb\u02bc\7c\2\2\u02bc"+
+ "\u02bd\7u\2\2\u02bd\u038b\7n\2\2\u02be\u02bf\7r\2\2\u02bf\u02c0\7j\2\2"+
+ "\u02c0\u038b\7r\2\2\u02c1\u02c2\7c\2\2\u02c2\u02c3\7p\2\2\u02c3\u038b"+
+ "\7e\2\2\u02c4\u02c5\7d\2\2\u02c5\u02c6\7r\2\2\u02c6\u038b\7n\2\2\u02c7"+
+ "\u02c8\7e\2\2\u02c8\u02c9\7n\2\2\u02c9\u038b\7e\2\2\u02ca\u02cb\7l\2\2"+
+ "\u02cb\u02cc\7u\2\2\u02cc\u038b\7t\2\2\u02cd\u02ce\7c\2\2\u02ce\u02cf"+
+ "\7p\2\2\u02cf\u038b\7f\2\2\u02d0\u02d1\7t\2\2\u02d1\u02d2\7n\2\2\u02d2"+
+ "\u038b\7c\2\2\u02d3\u02d4\7d\2\2\u02d4\u02d5\7k\2\2\u02d5\u038b\7v\2\2"+
+ "\u02d6\u02d7\7t\2\2\u02d7\u02d8\7q\2\2\u02d8\u038b\7n\2\2\u02d9\u02da"+
+ "\7r\2\2\u02da\u02db\7n\2\2\u02db\u038b\7c\2\2\u02dc\u02dd\7r\2\2\u02dd"+
+ "\u02de\7n\2\2\u02de\u038b\7r\2\2\u02df\u02e0\7d\2\2\u02e0\u02e1\7o\2\2"+
+ "\u02e1\u038b\7k\2\2\u02e2\u02e3\7u\2\2\u02e3\u02e4\7g\2\2\u02e4\u038b"+
+ "\7e\2\2\u02e5\u02e6\7t\2\2\u02e6\u02e7\7v\2\2\u02e7\u038b\7k\2\2\u02e8"+
+ "\u02e9\7g\2\2\u02e9\u02ea\7q\2\2\u02ea\u038b\7t\2\2\u02eb\u02ec\7u\2\2"+
+ "\u02ec\u02ed\7t\2\2\u02ed\u038b\7g\2\2\u02ee\u02ef\7n\2\2\u02ef\u02f0"+
+ "\7u\2\2\u02f0\u038b\7t\2\2\u02f1\u02f2\7r\2\2\u02f2\u02f3\7j\2\2\u02f3"+
+ "\u038b\7c\2\2\u02f4\u02f5\7c\2\2\u02f5\u02f6\7n\2\2\u02f6\u038b\7t\2\2"+
+ "\u02f7\u02f8\7l\2\2\u02f8\u02f9\7o\2\2\u02f9\u038b\7r\2\2\u02fa\u02fb"+
+ "\7d\2\2\u02fb\u02fc\7x\2\2\u02fc\u038b\7e\2\2\u02fd\u02fe\7e\2\2\u02fe"+
+ "\u02ff\7n\2\2\u02ff\u038b\7k\2\2\u0300\u0301\7t\2\2\u0301\u0302\7v\2\2"+
+ "\u0302\u038b\7u\2\2\u0303\u0304\7c\2\2\u0304\u0305\7f\2\2\u0305\u038b"+
+ "\7e\2\2\u0306\u0307\7t\2\2\u0307\u0308\7t\2\2\u0308\u038b\7c\2\2\u0309"+
+ "\u030a\7d\2\2\u030a\u030b\7x\2\2\u030b\u038b\7u\2\2\u030c\u030d\7u\2\2"+
+ "\u030d\u030e\7g\2\2\u030e\u038b\7k\2\2\u030f\u0310\7u\2\2\u0310\u0311"+
+ "\7c\2\2\u0311\u038b\7z\2\2\u0312\u0313\7u\2\2\u0313\u0314\7v\2\2\u0314"+
+ "\u038b\7{\2\2\u0315\u0316\7u\2\2\u0316\u0317\7v\2\2\u0317\u038b\7c\2\2"+
+ "\u0318\u0319\7u\2\2\u0319\u031a\7v\2\2\u031a\u038b\7z\2\2\u031b\u031c"+
+ "\7f\2\2\u031c\u031d\7g\2\2\u031d\u038b\7{\2\2\u031e\u031f\7v\2\2\u031f"+
+ "\u0320\7z\2\2\u0320\u038b\7c\2\2\u0321\u0322\7z\2\2\u0322\u0323\7c\2\2"+
+ "\u0323\u038b\7c\2\2\u0324\u0325\7d\2\2\u0325\u0326\7e\2\2\u0326\u038b"+
+ "\7e\2\2\u0327\u0328\7c\2\2\u0328\u0329\7j\2\2\u0329\u038b\7z\2\2\u032a"+
+ "\u032b\7v\2\2\u032b\u032c\7{\2\2\u032c\u038b\7c\2\2\u032d\u032e\7v\2\2"+
+ "\u032e\u032f\7z\2\2\u032f\u038b\7u\2\2\u0330\u0331\7v\2\2\u0331\u0332"+
+ "\7c\2\2\u0332\u038b\7u\2\2\u0333\u0334\7u\2\2\u0334\u0335\7j\2\2\u0335"+
+ "\u038b\7{\2\2\u0336\u0337\7u\2\2\u0337\u0338\7j\2\2\u0338\u038b\7z\2\2"+
+ "\u0339\u033a\7n\2\2\u033a\u033b\7f\2\2\u033b\u038b\7{\2\2\u033c\u033d"+
+ "\7n\2\2\u033d\u033e\7f\2\2\u033e\u038b\7c\2\2\u033f\u0340\7n\2\2\u0340"+
+ "\u0341\7f\2\2\u0341\u038b\7z\2\2\u0342\u0343\7n\2\2\u0343\u0344\7c\2\2"+
+ "\u0344\u038b\7z\2\2\u0345\u0346\7v\2\2\u0346\u0347\7c\2\2\u0347\u038b"+
+ "\7{\2\2\u0348\u0349\7v\2\2\u0349\u034a\7c\2\2\u034a\u038b\7z\2\2\u034b"+
+ "\u034c\7d\2\2\u034c\u034d\7e\2\2\u034d\u038b\7u\2\2\u034e\u034f\7e\2\2"+
+ "\u034f\u0350\7n\2\2\u0350\u038b\7x\2\2\u0351\u0352\7v\2\2\u0352\u0353"+
+ "\7u\2\2\u0353\u038b\7z\2\2\u0354\u0355\7n\2\2\u0355\u0356\7c\2\2\u0356"+
+ "\u038b\7u\2\2\u0357\u0358\7e\2\2\u0358\u0359\7r\2\2\u0359\u038b\7{\2\2"+
+ "\u035a\u035b\7e\2\2\u035b\u035c\7o\2\2\u035c\u038b\7r\2\2\u035d\u035e"+
+ "\7e\2\2\u035e\u035f\7r\2\2\u035f\u038b\7z\2\2\u0360\u0361\7f\2\2\u0361"+
+ "\u0362\7e\2\2\u0362\u038b\7r\2\2\u0363\u0364\7f\2\2\u0364\u0365\7g\2\2"+
+ "\u0365\u038b\7e\2\2\u0366\u0367\7k\2\2\u0367\u0368\7p\2\2\u0368\u038b"+
+ "\7e\2\2\u0369\u036a\7c\2\2\u036a\u036b\7z\2\2\u036b\u038b\7u\2\2\u036c"+
+ "\u036d\7d\2\2\u036d\u036e\7p\2\2\u036e\u038b\7g\2\2\u036f\u0370\7e\2\2"+
+ "\u0370\u0371\7n\2\2\u0371\u038b\7f\2\2\u0372\u0373\7u\2\2\u0373\u0374"+
+ "\7d\2\2\u0374\u038b\7e\2\2\u0375\u0376\7k\2\2\u0376\u0377\7u\2\2\u0377"+
+ "\u038b\7e\2\2\u0378\u0379\7k\2\2\u0379\u037a\7p\2\2\u037a\u038b\7z\2\2"+
+ "\u037b\u037c\7d\2\2\u037c\u037d\7g\2\2\u037d\u038b\7s\2\2\u037e\u037f"+
+ "\7u\2\2\u037f\u0380\7g\2\2\u0380\u038b\7f\2\2\u0381\u0382\7f\2\2\u0382"+
+ "\u0383\7g\2\2\u0383\u038b\7z\2\2\u0384\u0385\7k\2\2\u0385\u0386\7p\2\2"+
+ "\u0386\u038b\7{\2\2\u0387\u0388\7t\2\2\u0388\u0389\7q\2\2\u0389\u038b"+
+ "\7t\2\2\u038a\u02ac\3\2\2\2\u038a\u02af\3\2\2\2\u038a\u02b2\3\2\2\2\u038a"+
+ "\u02b5\3\2\2\2\u038a\u02b8\3\2\2\2\u038a\u02bb\3\2\2\2\u038a\u02be\3\2"+
+ "\2\2\u038a\u02c1\3\2\2\2\u038a\u02c4\3\2\2\2\u038a\u02c7\3\2\2\2\u038a"+
+ "\u02ca\3\2\2\2\u038a\u02cd\3\2\2\2\u038a\u02d0\3\2\2\2\u038a\u02d3\3\2"+
+ "\2\2\u038a\u02d6\3\2\2\2\u038a\u02d9\3\2\2\2\u038a\u02dc\3\2\2\2\u038a"+
+ "\u02df\3\2\2\2\u038a\u02e2\3\2\2\2\u038a\u02e5\3\2\2\2\u038a\u02e8\3\2"+
+ "\2\2\u038a\u02eb\3\2\2\2\u038a\u02ee\3\2\2\2\u038a\u02f1\3\2\2\2\u038a"+
+ "\u02f4\3\2\2\2\u038a\u02f7\3\2\2\2\u038a\u02fa\3\2\2\2\u038a\u02fd\3\2"+
+ "\2\2\u038a\u0300\3\2\2\2\u038a\u0303\3\2\2\2\u038a\u0306\3\2\2\2\u038a"+
+ "\u0309\3\2\2\2\u038a\u030c\3\2\2\2\u038a\u030f\3\2\2\2\u038a\u0312\3\2"+
+ "\2\2\u038a\u0315\3\2\2\2\u038a\u0318\3\2\2\2\u038a\u031b\3\2\2\2\u038a"+
+ "\u031e\3\2\2\2\u038a\u0321\3\2\2\2\u038a\u0324\3\2\2\2\u038a\u0327\3\2"+
+ "\2\2\u038a\u032a\3\2\2\2\u038a\u032d\3\2\2\2\u038a\u0330\3\2\2\2\u038a"+
+ "\u0333\3\2\2\2\u038a\u0336\3\2\2\2\u038a\u0339\3\2\2\2\u038a\u033c\3\2"+
+ "\2\2\u038a\u033f\3\2\2\2\u038a\u0342\3\2\2\2\u038a\u0345\3\2\2\2\u038a"+
+ "\u0348\3\2\2\2\u038a\u034b\3\2\2\2\u038a\u034e\3\2\2\2\u038a\u0351\3\2"+
+ "\2\2\u038a\u0354\3\2\2\2\u038a\u0357\3\2\2\2\u038a\u035a\3\2\2\2\u038a"+
+ "\u035d\3\2\2\2\u038a\u0360\3\2\2\2\u038a\u0363\3\2\2\2\u038a\u0366\3\2"+
+ "\2\2\u038a\u0369\3\2\2\2\u038a\u036c\3\2\2\2\u038a\u036f\3\2\2\2\u038a"+
+ "\u0372\3\2\2\2\u038a\u0375\3\2\2\2\u038a\u0378\3\2\2\2\u038a\u037b\3\2"+
+ "\2\2\u038a\u037e\3\2\2\2\u038a\u0381\3\2\2\2\u038a\u0384\3\2\2\2\u038a"+
+ "\u0387\3\2\2\2\u038b\u00c0\3\2\2\2\u038c\u038d\7}\2\2\u038d\u038e\7}\2"+
+ "\2\u038e\u0392\3\2\2\2\u038f\u0391\13\2\2\2\u0390\u038f\3\2\2\2\u0391"+
+ "\u0394\3\2\2\2\u0392\u0393\3\2\2\2\u0392\u0390\3\2\2\2\u0393\u0395\3\2"+
+ "\2\2\u0394\u0392\3\2\2\2\u0395\u0396\7\177\2\2\u0396\u0397\7\177\2\2\u0397"+
+ "\u00c2\3\2\2\2\u0398\u0399\7d\2\2\u0399\u039a\7{\2\2\u039a\u039b\7v\2"+
+ "\2\u039b\u03be\7g\2\2\u039c\u039d\7y\2\2\u039d\u039e\7q\2\2\u039e\u039f"+
+ "\7t\2\2\u039f\u03be\7f\2\2\u03a0\u03a1\7f\2\2\u03a1\u03a2\7y\2\2\u03a2"+
+ "\u03a3\7q\2\2\u03a3\u03a4\7t\2\2\u03a4\u03be\7f\2\2\u03a5\u03a6\7d\2\2"+
+ "\u03a6\u03a7\7q\2\2\u03a7\u03a8\7q\2\2\u03a8\u03be\7n\2\2\u03a9\u03aa"+
+ "\7e\2\2\u03aa\u03ab\7j\2\2\u03ab\u03ac\7c\2\2\u03ac\u03be\7t\2\2\u03ad"+
+ "\u03ae\7u\2\2\u03ae\u03af\7j\2\2\u03af\u03b0\7q\2\2\u03b0\u03b1\7t\2\2"+
+ "\u03b1\u03be\7v\2\2\u03b2\u03b3\7k\2\2\u03b3\u03b4\7p\2\2\u03b4\u03be"+
+ "\7v\2\2\u03b5\u03b6\7n\2\2\u03b6\u03b7\7q\2\2\u03b7\u03b8\7p\2\2\u03b8"+
+ "\u03be\7i\2\2\u03b9\u03ba\7x\2\2\u03ba\u03bb\7q\2\2\u03bb\u03bc\7k\2\2"+
+ "\u03bc\u03be\7f\2\2\u03bd\u0398\3\2\2\2\u03bd\u039c\3\2\2\2\u03bd\u03a0"+
+ "\3\2\2\2\u03bd\u03a5\3\2\2\2\u03bd\u03a9\3\2\2\2\u03bd\u03ad\3\2\2\2\u03bd"+
+ "\u03b2\3\2\2\2\u03bd\u03b5\3\2\2\2\u03bd\u03b9\3\2\2\2\u03be\u00c4\3\2"+
+ "\2\2\u03bf\u03c5\7$\2\2\u03c0\u03c1\7^\2\2\u03c1\u03c4\7$\2\2\u03c2\u03c4"+
+ "\n\2\2\2\u03c3\u03c0\3\2\2\2\u03c3\u03c2\3\2\2\2\u03c4\u03c7\3\2\2\2\u03c5"+
+ "\u03c3\3\2\2\2\u03c5\u03c6\3\2\2\2\u03c6\u03c8\3\2\2\2\u03c7\u03c5\3\2"+
+ "\2\2\u03c8\u03ca\7$\2\2\u03c9\u03cb\t\3\2\2\u03ca\u03c9\3\2\2\2\u03ca"+
+ "\u03cb\3\2\2\2\u03cb\u03d0\3\2\2\2\u03cc\u03ce\t\4\2\2\u03cd\u03cf\t\5"+
+ "\2\2\u03ce\u03cd\3\2\2\2\u03ce\u03cf\3\2\2\2\u03cf\u03d1\3\2\2\2\u03d0"+
+ "\u03cc\3\2\2\2\u03d0\u03d1\3\2\2\2\u03d1\u03d3\3\2\2\2\u03d2\u03d4\t\3"+
+ "\2\2\u03d3\u03d2\3\2\2\2\u03d3\u03d4\3\2\2\2\u03d4\u00c6\3\2\2\2\u03d5"+
+ "\u03d9\7)\2\2\u03d6\u03d7\7^\2\2\u03d7\u03da\7)\2\2\u03d8\u03da\n\6\2"+
+ "\2\u03d9\u03d6\3\2\2\2\u03d9\u03d8\3\2\2\2\u03da\u03db\3\2\2\2\u03db\u03dc"+
+ "\7)\2\2\u03dc\u00c8\3\2\2\2\u03dd\u03de\7v\2\2\u03de\u03df\7t\2\2\u03df"+
+ "\u03e0\7w\2\2\u03e0\u03e7\7g\2\2\u03e1\u03e2\7h\2\2\u03e2\u03e3\7c\2\2"+
+ "\u03e3\u03e4\7n\2\2\u03e4\u03e5\7u\2\2\u03e5\u03e7\7g\2\2\u03e6\u03dd"+
+ "\3\2\2\2\u03e6\u03e1\3\2\2\2\u03e7\u00ca\3\2\2\2\u03e8\u03eb\5\u00cdg"+
+ "\2\u03e9\u03eb\5\u00d5k\2\u03ea\u03e8\3\2\2\2\u03ea\u03e9\3\2\2\2\u03eb"+
+ "\u00cc\3\2\2\2\u03ec\u03f0\5\u00cfh\2\u03ed\u03f0\5\u00d1i\2\u03ee\u03f0"+
+ "\5\u00d3j\2\u03ef\u03ec\3\2\2\2\u03ef\u03ed\3\2\2\2\u03ef\u03ee\3\2\2"+
+ "\2\u03f0\u00ce\3\2\2\2\u03f1\u03f7\7\'\2\2\u03f2\u03f3\7\62\2\2\u03f3"+
+ "\u03f7\7d\2\2\u03f4\u03f5\7\62\2\2\u03f5\u03f7\7D\2\2\u03f6\u03f1\3\2"+
+ "\2\2\u03f6\u03f2\3\2\2\2\u03f6\u03f4\3\2\2\2\u03f7\u03fb\3\2\2\2\u03f8"+
+ "\u03fa\5\u00ddo\2\u03f9\u03f8\3\2\2\2\u03fa\u03fd\3\2\2\2\u03fb\u03f9"+
+ "\3\2\2\2\u03fb\u03fc\3\2\2\2\u03fc\u03fe\3\2\2\2\u03fd\u03fb\3\2\2\2\u03fe"+
+ "\u0400\7\60\2\2\u03ff\u0401\5\u00ddo\2\u0400\u03ff\3\2\2\2\u0401\u0402"+
+ "\3\2\2\2\u0402\u0400\3\2\2\2\u0402\u0403\3\2\2\2\u0403\u00d0\3\2\2\2\u0404"+
+ "\u0406\5\u00dfp\2\u0405\u0404\3\2\2\2\u0406\u0409\3\2\2\2\u0407\u0405"+
+ "\3\2\2\2\u0407\u0408\3\2\2\2\u0408\u040a\3\2\2\2\u0409\u0407\3\2\2\2\u040a"+
+ "\u040c\7\60\2\2\u040b\u040d\5\u00dfp\2\u040c\u040b\3\2\2\2\u040d\u040e"+
+ "\3\2\2\2\u040e\u040c\3\2\2\2\u040e\u040f\3\2\2\2\u040f\u00d2\3\2\2\2\u0410"+
+ "\u0416\7&\2\2\u0411\u0412\7\62\2\2\u0412\u0416\7z\2\2\u0413\u0414\7\62"+
+ "\2\2\u0414\u0416\7Z\2\2\u0415\u0410\3\2\2\2\u0415\u0411\3\2\2\2\u0415"+
+ "\u0413\3\2\2\2\u0416\u041a\3\2\2\2\u0417\u0419\5\u00e1q\2\u0418\u0417"+
+ "\3\2\2\2\u0419\u041c\3\2\2\2\u041a\u0418\3\2\2\2\u041a\u041b\3\2\2\2\u041b"+
+ "\u041d\3\2\2\2\u041c\u041a\3\2\2\2\u041d\u041f\7\60\2\2\u041e\u0420\5"+
+ "\u00e1q\2\u041f\u041e\3\2\2\2\u0420\u0421\3\2\2\2\u0421\u041f\3\2\2\2"+
+ "\u0421\u0422\3\2\2\2\u0422\u00d4\3\2\2\2\u0423\u0427\5\u00d9m\2\u0424"+
+ "\u0427\5\u00dbn\2\u0425\u0427\5\u00d7l\2\u0426\u0423\3\2\2\2\u0426\u0424"+
+ "\3\2\2\2\u0426\u0425\3\2\2\2\u0427\u042b\3\2\2\2\u0428\u0429\t\7\2\2\u0429"+
+ "\u042c\t\b\2\2\u042a\u042c\7n\2\2\u042b\u0428\3\2\2\2\u042b\u042a\3\2"+
+ "\2\2\u042b\u042c\3\2\2\2\u042c\u00d6\3\2\2\2\u042d\u042e\7\62\2\2\u042e"+
+ "\u0430\t\t\2\2\u042f\u0431\5\u00ddo\2\u0430\u042f\3\2\2\2\u0431\u0432"+
+ "\3\2\2\2\u0432\u0430\3\2\2\2\u0432\u0433\3\2\2\2\u0433\u043b\3\2\2\2\u0434"+
+ "\u0436\7\'\2\2\u0435\u0437\5\u00ddo\2\u0436\u0435\3\2\2\2\u0437\u0438"+
+ "\3\2\2\2\u0438\u0436\3\2\2\2\u0438\u0439\3\2\2\2\u0439\u043b\3\2\2\2\u043a"+
+ "\u042d\3\2\2\2\u043a\u0434\3\2\2\2\u043b\u00d8\3\2\2\2\u043c\u043e\5\u00df"+
+ "p\2\u043d\u043c\3\2\2\2\u043e\u043f\3\2\2\2\u043f\u043d\3\2\2\2\u043f"+
+ "\u0440\3\2\2\2\u0440\u00da\3\2\2\2\u0441\u0447\7&\2\2\u0442\u0443\7\62"+
+ "\2\2\u0443\u0447\7z\2\2\u0444\u0445\7\62\2\2\u0445\u0447\7Z\2\2\u0446"+
+ "\u0441\3\2\2\2\u0446\u0442\3\2\2\2\u0446\u0444\3\2\2\2\u0447\u0449\3\2"+
+ "\2\2\u0448\u044a\5\u00e1q\2\u0449\u0448\3\2\2\2\u044a\u044b\3\2\2\2\u044b"+
+ "\u0449\3\2\2\2\u044b\u044c\3\2\2\2\u044c\u00dc\3\2\2\2\u044d\u044e\t\n"+
+ "\2\2\u044e\u00de\3\2\2\2\u044f\u0450\t\13\2\2\u0450\u00e0\3\2\2\2\u0451"+
+ "\u0452\t\f\2\2\u0452\u00e2\3\2\2\2\u0453\u0457\5\u00e5s\2\u0454\u0456"+
+ "\5\u00e7t\2\u0455\u0454\3\2\2\2\u0456\u0459\3\2\2\2\u0457\u0455\3\2\2"+
+ "\2\u0457\u0458\3\2\2\2\u0458\u00e4\3\2\2\2\u0459\u0457\3\2\2\2\u045a\u045b"+
+ "\t\r\2\2\u045b\u00e6\3\2\2\2\u045c\u045d\t\16\2\2\u045d\u00e8\3\2\2\2"+
+ "\u045e\u0462\7#\2\2\u045f\u0461\5\u00e7t\2\u0460\u045f\3\2\2\2\u0461\u0464"+
+ "\3\2\2\2\u0462\u0460\3\2\2\2\u0462\u0463\3\2\2\2\u0463\u0466\3\2\2\2\u0464"+
+ "\u0462\3\2\2\2\u0465\u0467\t\17\2\2\u0466\u0465\3\2\2\2\u0467\u0468\3"+
+ "\2\2\2\u0468\u0466\3\2\2\2\u0468\u0469\3\2\2\2\u0469\u00ea\3\2\2\2\u046a"+
+ "\u046c\t\20\2\2\u046b\u046a\3\2\2\2\u046c\u046d\3\2\2\2\u046d\u046b\3"+
+ "\2\2\2\u046d\u046e\3\2\2\2\u046e\u046f\3\2\2\2\u046f\u0470\bv\2\2\u0470"+
+ "\u00ec\3\2\2\2\u0471\u0472\7\61\2\2\u0472\u0473\7\61\2\2\u0473\u0477\3"+
+ "\2\2\2\u0474\u0476\n\21\2\2\u0475\u0474\3\2\2\2\u0476\u0479\3\2\2\2\u0477"+
+ "\u0475\3\2\2\2\u0477\u0478\3\2\2\2\u0478\u047a\3\2\2\2\u0479\u0477\3\2"+
+ "\2\2\u047a\u047b\bw\3\2\u047b\u00ee\3\2\2\2\u047c\u047d\7\61\2\2\u047d"+
+ "\u047e\7,\2\2\u047e\u0482\3\2\2\2\u047f\u0481\13\2\2\2\u0480\u047f\3\2"+
+ "\2\2\u0481\u0484\3\2\2\2\u0482\u0483\3\2\2\2\u0482\u0480\3\2\2\2\u0483"+
+ "\u0485\3\2\2\2\u0484\u0482\3\2\2\2\u0485\u0486\7,\2\2\u0486\u0487\7\61"+
+ "\2\2\u0487\u0488\3\2\2\2\u0488\u0489\bx\3\2\u0489\u00f0\3\2\2\2&\2\u038a"+
+ "\u0392\u03bd\u03c3\u03c5\u03ca\u03ce\u03d0\u03d3\u03d9\u03e6\u03ea\u03ef"+
+ "\u03f6\u03fb\u0402\u0407\u040e\u0415\u041a\u0421\u0426\u042b\u0432\u0438"+
+ "\u043a\u043f\u0446\u044b\u0457\u0462\u0468\u046d\u0477\u0482\4\2\3\2\2"+
+ "\4\2";
public static final ATN _ATN =
new ATNDeserializer().deserialize(_serializedATN.toCharArray());
static {
diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens
index d074a4438..5d97bde5a 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens
+++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens
@@ -89,26 +89,29 @@ T__87=88
T__88=89
T__89=90
T__90=91
-MNEMONIC=92
-KICKASM=93
-SIMPLETYPE=94
-STRING=95
-CHAR=96
-BOOLEAN=97
-NUMBER=98
-NUMFLOAT=99
-BINFLOAT=100
-DECFLOAT=101
-HEXFLOAT=102
-NUMINT=103
-BININTEGER=104
-DECINTEGER=105
-HEXINTEGER=106
-NAME=107
-ASMREL=108
-WS=109
-COMMENT_LINE=110
-COMMENT_BLOCK=111
+T__91=92
+T__92=93
+T__93=94
+MNEMONIC=95
+KICKASM=96
+SIMPLETYPE=97
+STRING=98
+CHAR=99
+BOOLEAN=100
+NUMBER=101
+NUMFLOAT=102
+BINFLOAT=103
+DECFLOAT=104
+HEXFLOAT=105
+NUMINT=106
+BININTEGER=107
+DECINTEGER=108
+HEXINTEGER=109
+NAME=110
+ASMREL=111
+WS=112
+COMMENT_LINE=113
+COMMENT_BLOCK=114
'import'=1
';'=2
'typedef'=3
@@ -143,60 +146,63 @@ COMMENT_BLOCK=111
'while'=32
'do'=33
'for'=34
-'return'=35
-'break'=36
-'continue'=37
-'asm'=38
-':'=39
-'..'=40
-'signed'=41
-'unsigned'=42
-'*'=43
-'['=44
-']'=45
-'struct'=46
-'enum'=47
-'.'=48
-'->'=49
-'sizeof'=50
-'typeid'=51
-'--'=52
-'++'=53
-'+'=54
-'-'=55
-'!'=56
-'&'=57
-'~'=58
-'>>'=59
-'<<'=60
-'/'=61
-'%'=62
-'<'=63
-'>'=64
-'=='=65
-'!='=66
-'<='=67
-'>='=68
-'^'=69
-'|'=70
-'&&'=71
-'||'=72
-'?'=73
-'+='=74
-'-='=75
-'*='=76
-'/='=77
-'%='=78
-'<<='=79
-'>>='=80
-'&='=81
-'|='=82
-'^='=83
-'kickasm'=84
-'resource'=85
-'uses'=86
-'clobbers'=87
-'bytes'=88
-'cycles'=89
-'.byte'=90
-'#'=91
+'switch'=35
+'return'=36
+'break'=37
+'continue'=38
+'asm'=39
+'default:'=40
+'case'=41
+':'=42
+'..'=43
+'signed'=44
+'unsigned'=45
+'*'=46
+'['=47
+']'=48
+'struct'=49
+'enum'=50
+'.'=51
+'->'=52
+'sizeof'=53
+'typeid'=54
+'--'=55
+'++'=56
+'+'=57
+'-'=58
+'!'=59
+'&'=60
+'~'=61
+'>>'=62
+'<<'=63
+'/'=64
+'%'=65
+'<'=66
+'>'=67
+'=='=68
+'!='=69
+'<='=70
+'>='=71
+'^'=72
+'|'=73
+'&&'=74
+'||'=75
+'?'=76
+'+='=77
+'-='=78
+'*='=79
+'/='=80
+'%='=81
+'<<='=82
+'>>='=83
+'&='=84
+'|='=85
+'^='=86
+'kickasm'=87
+'resource'=88
+'uses'=89
+'clobbers'=90
+'bytes'=91
+'cycles'=92
+'.byte'=93
+'#'=94
diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCListener.java b/src/main/java/dk/camelot64/kickc/parser/KickCListener.java
index 78d1b9fb4..d81f700d7 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickCListener.java
+++ b/src/main/java/dk/camelot64/kickc/parser/KickCListener.java
@@ -461,6 +461,18 @@ public interface KickCListener extends ParseTreeListener {
* @param ctx the parse tree
*/
void exitStmtFor(KickCParser.StmtForContext ctx);
+ /**
+ * Enter a parse tree produced by the {@code stmtSwitch}
+ * labeled alternative in {@link KickCParser#stmt}.
+ * @param ctx the parse tree
+ */
+ void enterStmtSwitch(KickCParser.StmtSwitchContext ctx);
+ /**
+ * Exit a parse tree produced by the {@code stmtSwitch}
+ * labeled alternative in {@link KickCParser#stmt}.
+ * @param ctx the parse tree
+ */
+ void exitStmtSwitch(KickCParser.StmtSwitchContext ctx);
/**
* Enter a parse tree produced by the {@code stmtReturn}
* labeled alternative in {@link KickCParser#stmt}.
@@ -521,6 +533,26 @@ public interface KickCListener extends ParseTreeListener {
* @param ctx the parse tree
*/
void exitStmtDeclKasm(KickCParser.StmtDeclKasmContext ctx);
+ /**
+ * Enter a parse tree produced by {@link KickCParser#switchCases}.
+ * @param ctx the parse tree
+ */
+ void enterSwitchCases(KickCParser.SwitchCasesContext ctx);
+ /**
+ * Exit a parse tree produced by {@link KickCParser#switchCases}.
+ * @param ctx the parse tree
+ */
+ void exitSwitchCases(KickCParser.SwitchCasesContext ctx);
+ /**
+ * Enter a parse tree produced by {@link KickCParser#switchCase}.
+ * @param ctx the parse tree
+ */
+ void enterSwitchCase(KickCParser.SwitchCaseContext ctx);
+ /**
+ * Exit a parse tree produced by {@link KickCParser#switchCase}.
+ * @param ctx the parse tree
+ */
+ void exitSwitchCase(KickCParser.SwitchCaseContext ctx);
/**
* Enter a parse tree produced by the {@code forClassic}
* labeled alternative in {@link KickCParser#forLoop}.
diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.java b/src/main/java/dk/camelot64/kickc/parser/KickCParser.java
index fa9016ac2..9b2318943 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.java
+++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.java
@@ -29,32 +29,33 @@ public class KickCParser extends Parser {
T__66=67, T__67=68, T__68=69, T__69=70, T__70=71, T__71=72, T__72=73,
T__73=74, T__74=75, T__75=76, T__76=77, T__77=78, T__78=79, T__79=80,
T__80=81, T__81=82, T__82=83, T__83=84, T__84=85, T__85=86, T__86=87,
- T__87=88, T__88=89, T__89=90, T__90=91, MNEMONIC=92, KICKASM=93, SIMPLETYPE=94,
- STRING=95, CHAR=96, BOOLEAN=97, NUMBER=98, NUMFLOAT=99, BINFLOAT=100,
- DECFLOAT=101, HEXFLOAT=102, NUMINT=103, BININTEGER=104, DECINTEGER=105,
- HEXINTEGER=106, NAME=107, ASMREL=108, WS=109, COMMENT_LINE=110, COMMENT_BLOCK=111;
+ T__87=88, T__88=89, T__89=90, T__90=91, T__91=92, T__92=93, T__93=94,
+ MNEMONIC=95, KICKASM=96, SIMPLETYPE=97, STRING=98, CHAR=99, BOOLEAN=100,
+ NUMBER=101, NUMFLOAT=102, BINFLOAT=103, DECFLOAT=104, HEXFLOAT=105, NUMINT=106,
+ BININTEGER=107, DECINTEGER=108, HEXINTEGER=109, NAME=110, ASMREL=111,
+ WS=112, COMMENT_LINE=113, COMMENT_BLOCK=114;
public static final int
RULE_file = 0, RULE_asmFile = 1, RULE_importSeq = 2, RULE_importDecl = 3,
RULE_declSeq = 4, RULE_decl = 5, RULE_typeDef = 6, RULE_declTypes = 7,
RULE_declVariables = 8, RULE_declVariableList = 9, RULE_declVariableInit = 10,
RULE_declFunction = 11, RULE_parameterListDecl = 12, RULE_parameterDecl = 13,
RULE_globalDirective = 14, RULE_directive = 15, RULE_stmtSeq = 16, RULE_stmt = 17,
- RULE_forLoop = 18, RULE_forClassicInit = 19, RULE_typeDecl = 20, RULE_structRef = 21,
- RULE_structDef = 22, RULE_structMembers = 23, RULE_enumRef = 24, RULE_enumDef = 25,
- RULE_enumMemberList = 26, RULE_enumMember = 27, RULE_commaExpr = 28, RULE_expr = 29,
- RULE_parameterList = 30, RULE_declKasm = 31, RULE_asmDirectives = 32,
- RULE_asmDirective = 33, RULE_asmLines = 34, RULE_asmLine = 35, RULE_asmLabel = 36,
- RULE_asmInstruction = 37, RULE_asmBytes = 38, RULE_asmParamMode = 39,
- RULE_asmExpr = 40;
+ RULE_switchCases = 18, RULE_switchCase = 19, RULE_forLoop = 20, RULE_forClassicInit = 21,
+ RULE_typeDecl = 22, RULE_structRef = 23, RULE_structDef = 24, RULE_structMembers = 25,
+ RULE_enumRef = 26, RULE_enumDef = 27, RULE_enumMemberList = 28, RULE_enumMember = 29,
+ RULE_commaExpr = 30, RULE_expr = 31, RULE_parameterList = 32, RULE_declKasm = 33,
+ RULE_asmDirectives = 34, RULE_asmDirective = 35, RULE_asmLines = 36, RULE_asmLine = 37,
+ RULE_asmLabel = 38, RULE_asmInstruction = 39, RULE_asmBytes = 40, RULE_asmParamMode = 41,
+ RULE_asmExpr = 42;
public static final String[] ruleNames = {
"file", "asmFile", "importSeq", "importDecl", "declSeq", "decl", "typeDef",
"declTypes", "declVariables", "declVariableList", "declVariableInit",
"declFunction", "parameterListDecl", "parameterDecl", "globalDirective",
- "directive", "stmtSeq", "stmt", "forLoop", "forClassicInit", "typeDecl",
- "structRef", "structDef", "structMembers", "enumRef", "enumDef", "enumMemberList",
- "enumMember", "commaExpr", "expr", "parameterList", "declKasm", "asmDirectives",
- "asmDirective", "asmLines", "asmLine", "asmLabel", "asmInstruction", "asmBytes",
- "asmParamMode", "asmExpr"
+ "directive", "stmtSeq", "stmt", "switchCases", "switchCase", "forLoop",
+ "forClassicInit", "typeDecl", "structRef", "structDef", "structMembers",
+ "enumRef", "enumDef", "enumMemberList", "enumMember", "commaExpr", "expr",
+ "parameterList", "declKasm", "asmDirectives", "asmDirective", "asmLines",
+ "asmLine", "asmLabel", "asmInstruction", "asmBytes", "asmParamMode", "asmExpr"
};
private static final String[] _LITERAL_NAMES = {
@@ -63,13 +64,14 @@ public class KickCParser extends Parser {
"'#target'", "'link'", "'code_seg'", "'data_seg'", "'encoding'", "'#encoding'",
"'const'", "'extern'", "'export'", "'align'", "'register'", "'inline'",
"'volatile'", "'interrupt'", "'if'", "'else'", "'while'", "'do'", "'for'",
- "'return'", "'break'", "'continue'", "'asm'", "':'", "'..'", "'signed'",
- "'unsigned'", "'*'", "'['", "']'", "'struct'", "'enum'", "'.'", "'->'",
- "'sizeof'", "'typeid'", "'--'", "'++'", "'+'", "'-'", "'!'", "'&'", "'~'",
- "'>>'", "'<<'", "'/'", "'%'", "'<'", "'>'", "'=='", "'!='", "'<='", "'>='",
- "'^'", "'|'", "'&&'", "'||'", "'?'", "'+='", "'-='", "'*='", "'/='", "'%='",
- "'<<='", "'>>='", "'&='", "'|='", "'^='", "'kickasm'", "'resource'", "'uses'",
- "'clobbers'", "'bytes'", "'cycles'", "'.byte'", "'#'"
+ "'switch'", "'return'", "'break'", "'continue'", "'asm'", "'default:'",
+ "'case'", "':'", "'..'", "'signed'", "'unsigned'", "'*'", "'['", "']'",
+ "'struct'", "'enum'", "'.'", "'->'", "'sizeof'", "'typeid'", "'--'", "'++'",
+ "'+'", "'-'", "'!'", "'&'", "'~'", "'>>'", "'<<'", "'/'", "'%'", "'<'",
+ "'>'", "'=='", "'!='", "'<='", "'>='", "'^'", "'|'", "'&&'", "'||'", "'?'",
+ "'+='", "'-='", "'*='", "'/='", "'%='", "'<<='", "'>>='", "'&='", "'|='",
+ "'^='", "'kickasm'", "'resource'", "'uses'", "'clobbers'", "'bytes'",
+ "'cycles'", "'.byte'", "'#'"
};
private static final String[] _SYMBOLIC_NAMES = {
null, null, null, null, null, null, null, null, null, null, null, null,
@@ -79,10 +81,10 @@ public class KickCParser extends Parser {
null, null, null, null, null, null, null, null, null, null, null, null,
null, null, null, null, null, null, null, null, null, null, null, null,
null, null, null, null, null, null, null, null, null, null, null, null,
- null, null, null, null, null, null, null, null, "MNEMONIC", "KICKASM",
- "SIMPLETYPE", "STRING", "CHAR", "BOOLEAN", "NUMBER", "NUMFLOAT", "BINFLOAT",
- "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER",
- "NAME", "ASMREL", "WS", "COMMENT_LINE", "COMMENT_BLOCK"
+ null, null, null, null, null, null, null, null, null, null, null, "MNEMONIC",
+ "KICKASM", "SIMPLETYPE", "STRING", "CHAR", "BOOLEAN", "NUMBER", "NUMFLOAT",
+ "BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER",
+ "HEXINTEGER", "NAME", "ASMREL", "WS", "COMMENT_LINE", "COMMENT_BLOCK"
};
public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES);
@@ -166,11 +168,11 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(82);
+ setState(86);
importSeq();
- setState(83);
+ setState(87);
declSeq();
- setState(84);
+ setState(88);
match(EOF);
}
}
@@ -215,9 +217,9 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(86);
+ setState(90);
asmLines();
- setState(87);
+ setState(91);
match(EOF);
}
}
@@ -265,17 +267,17 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(92);
+ setState(96);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==T__0) {
{
{
- setState(89);
+ setState(93);
importDecl();
}
}
- setState(94);
+ setState(98);
_errHandler.sync(this);
_la = _input.LA(1);
}
@@ -319,9 +321,9 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(95);
+ setState(99);
match(T__0);
- setState(96);
+ setState(100);
match(STRING);
}
}
@@ -369,20 +371,20 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(99);
+ setState(103);
_errHandler.sync(this);
_la = _input.LA(1);
do {
{
{
- setState(98);
+ setState(102);
decl();
}
}
- setState(101);
+ setState(105);
_errHandler.sync(this);
_la = _input.LA(1);
- } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__2) | (1L << T__5) | (1L << T__9) | (1L << T__10) | (1L << T__11) | (1L << T__13) | (1L << T__15) | (1L << T__20) | (1L << T__21) | (1L << T__22) | (1L << T__23) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__40) | (1L << T__41) | (1L << T__45) | (1L << T__46))) != 0) || ((((_la - 84)) & ~0x3f) == 0 && ((1L << (_la - 84)) & ((1L << (T__83 - 84)) | (1L << (SIMPLETYPE - 84)) | (1L << (NAME - 84)))) != 0) );
+ } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__2) | (1L << T__5) | (1L << T__9) | (1L << T__10) | (1L << T__11) | (1L << T__13) | (1L << T__15) | (1L << T__20) | (1L << T__21) | (1L << T__22) | (1L << T__23) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__43) | (1L << T__44) | (1L << T__48) | (1L << T__49))) != 0) || ((((_la - 87)) & ~0x3f) == 0 && ((1L << (_la - 87)) & ((1L << (T__86 - 87)) | (1L << (SIMPLETYPE - 87)) | (1L << (NAME - 87)))) != 0) );
}
}
catch (RecognitionException re) {
@@ -441,63 +443,63 @@ public class KickCParser extends Parser {
DeclContext _localctx = new DeclContext(_ctx, getState());
enterRule(_localctx, 10, RULE_decl);
try {
- setState(118);
+ setState(122);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,2,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(103);
+ setState(107);
declVariables();
- setState(104);
+ setState(108);
match(T__1);
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(106);
+ setState(110);
structDef();
- setState(107);
+ setState(111);
match(T__1);
}
break;
case 3:
enterOuterAlt(_localctx, 3);
{
- setState(109);
+ setState(113);
enumDef();
- setState(110);
+ setState(114);
match(T__1);
}
break;
case 4:
enterOuterAlt(_localctx, 4);
{
- setState(112);
+ setState(116);
declFunction();
}
break;
case 5:
enterOuterAlt(_localctx, 5);
{
- setState(113);
+ setState(117);
declKasm();
}
break;
case 6:
enterOuterAlt(_localctx, 6);
{
- setState(114);
+ setState(118);
globalDirective();
}
break;
case 7:
enterOuterAlt(_localctx, 7);
{
- setState(115);
+ setState(119);
typeDef();
- setState(116);
+ setState(120);
match(T__1);
}
break;
@@ -543,9 +545,9 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(120);
+ setState(124);
match(T__2);
- setState(121);
+ setState(125);
declVariables();
}
}
@@ -596,33 +598,33 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(126);
+ setState(130);
_errHandler.sync(this);
_la = _input.LA(1);
while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__10) | (1L << T__21) | (1L << T__22) | (1L << T__23) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28))) != 0)) {
{
{
- setState(123);
+ setState(127);
directive();
}
}
- setState(128);
+ setState(132);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(129);
- typeDecl(0);
setState(133);
+ typeDecl(0);
+ setState(137);
_errHandler.sync(this);
_la = _input.LA(1);
while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__10) | (1L << T__21) | (1L << T__22) | (1L << T__23) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28))) != 0)) {
{
{
- setState(130);
+ setState(134);
directive();
}
}
- setState(135);
+ setState(139);
_errHandler.sync(this);
_la = _input.LA(1);
}
@@ -671,9 +673,9 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(136);
+ setState(140);
declTypes();
- setState(137);
+ setState(141);
declVariableList(0);
}
}
@@ -730,11 +732,11 @@ public class KickCParser extends Parser {
enterOuterAlt(_localctx, 1);
{
{
- setState(140);
+ setState(144);
declVariableInit();
}
_ctx.stop = _input.LT(-1);
- setState(147);
+ setState(151);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,5,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
@@ -745,16 +747,16 @@ public class KickCParser extends Parser {
{
_localctx = new DeclVariableListContext(_parentctx, _parentState);
pushNewRecursionContext(_localctx, _startState, RULE_declVariableList);
- setState(142);
+ setState(146);
if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
- setState(143);
+ setState(147);
match(T__3);
- setState(144);
+ setState(148);
declVariableInit();
}
}
}
- setState(149);
+ setState(153);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,5,_ctx);
}
@@ -827,23 +829,23 @@ public class KickCParser extends Parser {
DeclVariableInitContext _localctx = new DeclVariableInitContext(_ctx, getState());
enterRule(_localctx, 20, RULE_declVariableInit);
try {
- setState(158);
+ setState(162);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,7,_ctx) ) {
case 1:
_localctx = new DeclVariableInitExprContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(150);
+ setState(154);
match(NAME);
- setState(153);
+ setState(157);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,6,_ctx) ) {
case 1:
{
- setState(151);
+ setState(155);
match(T__4);
- setState(152);
+ setState(156);
expr(0);
}
break;
@@ -854,11 +856,11 @@ public class KickCParser extends Parser {
_localctx = new DeclVariableInitKasmContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(155);
+ setState(159);
match(NAME);
- setState(156);
+ setState(160);
match(T__4);
- setState(157);
+ setState(161);
declKasm();
}
break;
@@ -912,37 +914,37 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(160);
- declTypes();
- setState(161);
- match(NAME);
- setState(162);
- match(T__5);
setState(164);
+ declTypes();
+ setState(165);
+ match(NAME);
+ setState(166);
+ match(T__5);
+ setState(168);
_errHandler.sync(this);
_la = _input.LA(1);
- if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__10) | (1L << T__21) | (1L << T__22) | (1L << T__23) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__40) | (1L << T__41) | (1L << T__45) | (1L << T__46))) != 0) || _la==SIMPLETYPE || _la==NAME) {
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__10) | (1L << T__21) | (1L << T__22) | (1L << T__23) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__43) | (1L << T__44) | (1L << T__48) | (1L << T__49))) != 0) || _la==SIMPLETYPE || _la==NAME) {
{
- setState(163);
+ setState(167);
parameterListDecl();
}
}
- setState(166);
+ setState(170);
match(T__6);
- setState(167);
+ setState(171);
match(T__7);
- setState(169);
+ setState(173);
_errHandler.sync(this);
_la = _input.LA(1);
- if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__10) | (1L << T__21) | (1L << T__22) | (1L << T__23) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__29) | (1L << T__31) | (1L << T__32) | (1L << T__33) | (1L << T__34) | (1L << T__35) | (1L << T__36) | (1L << T__37) | (1L << T__40) | (1L << T__41) | (1L << T__42) | (1L << T__45) | (1L << T__46) | (1L << T__49) | (1L << T__50) | (1L << T__51) | (1L << T__52) | (1L << T__53) | (1L << T__54) | (1L << T__55) | (1L << T__56) | (1L << T__57) | (1L << T__62))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (T__63 - 64)) | (1L << (T__83 - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)) | (1L << (BOOLEAN - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)))) != 0)) {
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__10) | (1L << T__21) | (1L << T__22) | (1L << T__23) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__29) | (1L << T__31) | (1L << T__32) | (1L << T__33) | (1L << T__34) | (1L << T__35) | (1L << T__36) | (1L << T__37) | (1L << T__38) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__48) | (1L << T__49) | (1L << T__52) | (1L << T__53) | (1L << T__54) | (1L << T__55) | (1L << T__56) | (1L << T__57) | (1L << T__58) | (1L << T__59) | (1L << T__60))) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & ((1L << (T__65 - 66)) | (1L << (T__66 - 66)) | (1L << (T__86 - 66)) | (1L << (SIMPLETYPE - 66)) | (1L << (STRING - 66)) | (1L << (CHAR - 66)) | (1L << (BOOLEAN - 66)) | (1L << (NUMBER - 66)) | (1L << (NAME - 66)))) != 0)) {
{
- setState(168);
+ setState(172);
stmtSeq();
}
}
- setState(171);
+ setState(175);
match(T__8);
}
}
@@ -990,21 +992,21 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(173);
+ setState(177);
parameterDecl();
- setState(178);
+ setState(182);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==T__3) {
{
{
- setState(174);
+ setState(178);
match(T__3);
- setState(175);
+ setState(179);
parameterDecl();
}
}
- setState(180);
+ setState(184);
_errHandler.sync(this);
_la = _input.LA(1);
}
@@ -1074,16 +1076,16 @@ public class KickCParser extends Parser {
ParameterDeclContext _localctx = new ParameterDeclContext(_ctx, getState());
enterRule(_localctx, 26, RULE_parameterDecl);
try {
- setState(185);
+ setState(189);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,11,_ctx) ) {
case 1:
_localctx = new ParameterDeclTypeContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(181);
+ setState(185);
declTypes();
- setState(182);
+ setState(186);
match(NAME);
}
break;
@@ -1091,7 +1093,7 @@ public class KickCParser extends Parser {
_localctx = new ParameterDeclVoidContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(184);
+ setState(188);
match(SIMPLETYPE);
}
break;
@@ -1247,54 +1249,54 @@ public class KickCParser extends Parser {
enterRule(_localctx, 28, RULE_globalDirective);
int _la;
try {
- setState(244);
+ setState(248);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,17,_ctx) ) {
case 1:
_localctx = new GlobalDirectiveReserveContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(190);
+ setState(194);
_errHandler.sync(this);
switch (_input.LA(1)) {
case T__9:
{
- setState(187);
+ setState(191);
match(T__9);
- setState(188);
+ setState(192);
match(T__10);
}
break;
case T__11:
{
- setState(189);
+ setState(193);
match(T__11);
}
break;
default:
throw new NoViableAltException(this);
}
- setState(192);
+ setState(196);
match(T__5);
- setState(193);
+ setState(197);
match(NUMBER);
- setState(198);
+ setState(202);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==T__3) {
{
{
- setState(194);
+ setState(198);
match(T__3);
- setState(195);
+ setState(199);
match(NUMBER);
}
}
- setState(200);
+ setState(204);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(201);
+ setState(205);
match(T__6);
}
break;
@@ -1302,31 +1304,31 @@ public class KickCParser extends Parser {
_localctx = new GlobalDirectivePcContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(205);
+ setState(209);
_errHandler.sync(this);
switch (_input.LA(1)) {
case T__9:
{
- setState(202);
+ setState(206);
match(T__9);
- setState(203);
+ setState(207);
match(T__12);
}
break;
case T__13:
{
- setState(204);
+ setState(208);
match(T__13);
}
break;
default:
throw new NoViableAltException(this);
}
- setState(207);
+ setState(211);
match(T__5);
- setState(208);
+ setState(212);
match(NUMBER);
- setState(209);
+ setState(213);
match(T__6);
}
break;
@@ -1334,31 +1336,31 @@ public class KickCParser extends Parser {
_localctx = new GlobalDirectivePlatformContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(213);
+ setState(217);
_errHandler.sync(this);
switch (_input.LA(1)) {
case T__9:
{
- setState(210);
+ setState(214);
match(T__9);
- setState(211);
+ setState(215);
match(T__14);
}
break;
case T__15:
{
- setState(212);
+ setState(216);
match(T__15);
}
break;
default:
throw new NoViableAltException(this);
}
- setState(215);
+ setState(219);
match(T__5);
- setState(216);
+ setState(220);
match(NAME);
- setState(217);
+ setState(221);
match(T__6);
}
break;
@@ -1367,16 +1369,16 @@ public class KickCParser extends Parser {
enterOuterAlt(_localctx, 4);
{
{
- setState(218);
+ setState(222);
match(T__9);
- setState(219);
+ setState(223);
match(T__16);
}
- setState(221);
+ setState(225);
match(T__5);
- setState(222);
+ setState(226);
match(STRING);
- setState(223);
+ setState(227);
match(T__6);
}
break;
@@ -1385,16 +1387,16 @@ public class KickCParser extends Parser {
enterOuterAlt(_localctx, 5);
{
{
- setState(224);
+ setState(228);
match(T__9);
- setState(225);
+ setState(229);
match(T__17);
}
- setState(227);
+ setState(231);
match(T__5);
- setState(228);
+ setState(232);
match(NAME);
- setState(229);
+ setState(233);
match(T__6);
}
break;
@@ -1403,16 +1405,16 @@ public class KickCParser extends Parser {
enterOuterAlt(_localctx, 6);
{
{
- setState(230);
+ setState(234);
match(T__9);
- setState(231);
+ setState(235);
match(T__18);
}
- setState(233);
+ setState(237);
match(T__5);
- setState(234);
+ setState(238);
match(NAME);
- setState(235);
+ setState(239);
match(T__6);
}
break;
@@ -1420,31 +1422,31 @@ public class KickCParser extends Parser {
_localctx = new GlobalDirectiveEncodingContext(_localctx);
enterOuterAlt(_localctx, 7);
{
- setState(239);
+ setState(243);
_errHandler.sync(this);
switch (_input.LA(1)) {
case T__9:
{
- setState(236);
+ setState(240);
match(T__9);
- setState(237);
+ setState(241);
match(T__19);
}
break;
case T__20:
{
- setState(238);
+ setState(242);
match(T__20);
}
break;
default:
throw new NoViableAltException(this);
}
- setState(241);
+ setState(245);
match(T__5);
- setState(242);
+ setState(246);
match(NAME);
- setState(243);
+ setState(247);
match(T__6);
}
break;
@@ -1629,14 +1631,14 @@ public class KickCParser extends Parser {
enterRule(_localctx, 30, RULE_directive);
int _la;
try {
- setState(278);
+ setState(282);
_errHandler.sync(this);
switch (_input.LA(1)) {
case T__21:
_localctx = new DirectiveConstContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(246);
+ setState(250);
match(T__21);
}
break;
@@ -1644,7 +1646,7 @@ public class KickCParser extends Parser {
_localctx = new DirectiveExternContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(247);
+ setState(251);
match(T__22);
}
break;
@@ -1652,7 +1654,7 @@ public class KickCParser extends Parser {
_localctx = new DirectiveExportContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(248);
+ setState(252);
match(T__23);
}
break;
@@ -1660,13 +1662,13 @@ public class KickCParser extends Parser {
_localctx = new DirectiveAlignContext(_localctx);
enterOuterAlt(_localctx, 4);
{
- setState(249);
+ setState(253);
match(T__24);
- setState(250);
+ setState(254);
match(T__5);
- setState(251);
+ setState(255);
match(NUMBER);
- setState(252);
+ setState(256);
match(T__6);
}
break;
@@ -1674,18 +1676,18 @@ public class KickCParser extends Parser {
_localctx = new DirectiveRegisterContext(_localctx);
enterOuterAlt(_localctx, 5);
{
- setState(253);
- match(T__25);
setState(257);
+ match(T__25);
+ setState(261);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,18,_ctx) ) {
case 1:
{
- setState(254);
+ setState(258);
match(T__5);
- setState(255);
+ setState(259);
match(NAME);
- setState(256);
+ setState(260);
match(T__6);
}
break;
@@ -1696,7 +1698,7 @@ public class KickCParser extends Parser {
_localctx = new DirectiveInlineContext(_localctx);
enterOuterAlt(_localctx, 6);
{
- setState(259);
+ setState(263);
match(T__26);
}
break;
@@ -1704,7 +1706,7 @@ public class KickCParser extends Parser {
_localctx = new DirectiveVolatileContext(_localctx);
enterOuterAlt(_localctx, 7);
{
- setState(260);
+ setState(264);
match(T__27);
}
break;
@@ -1712,18 +1714,18 @@ public class KickCParser extends Parser {
_localctx = new DirectiveInterruptContext(_localctx);
enterOuterAlt(_localctx, 8);
{
- setState(261);
- match(T__28);
setState(265);
+ match(T__28);
+ setState(269);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,19,_ctx) ) {
case 1:
{
- setState(262);
+ setState(266);
match(T__5);
- setState(263);
+ setState(267);
match(NAME);
- setState(264);
+ setState(268);
match(T__6);
}
break;
@@ -1734,29 +1736,29 @@ public class KickCParser extends Parser {
_localctx = new DirectiveReserveZpContext(_localctx);
enterOuterAlt(_localctx, 9);
{
- setState(267);
+ setState(271);
match(T__10);
- setState(268);
+ setState(272);
match(T__5);
- setState(269);
+ setState(273);
match(NUMBER);
- setState(274);
+ setState(278);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==T__3) {
{
{
- setState(270);
+ setState(274);
match(T__3);
- setState(271);
+ setState(275);
match(NUMBER);
}
}
- setState(276);
+ setState(280);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(277);
+ setState(281);
match(T__6);
}
break;
@@ -1808,20 +1810,20 @@ public class KickCParser extends Parser {
try {
enterOuterAlt(_localctx, 1);
{
- setState(281);
+ setState(285);
_errHandler.sync(this);
_la = _input.LA(1);
do {
{
{
- setState(280);
+ setState(284);
stmt();
}
}
- setState(283);
+ setState(287);
_errHandler.sync(this);
_la = _input.LA(1);
- } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__10) | (1L << T__21) | (1L << T__22) | (1L << T__23) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__29) | (1L << T__31) | (1L << T__32) | (1L << T__33) | (1L << T__34) | (1L << T__35) | (1L << T__36) | (1L << T__37) | (1L << T__40) | (1L << T__41) | (1L << T__42) | (1L << T__45) | (1L << T__46) | (1L << T__49) | (1L << T__50) | (1L << T__51) | (1L << T__52) | (1L << T__53) | (1L << T__54) | (1L << T__55) | (1L << T__56) | (1L << T__57) | (1L << T__62))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (T__63 - 64)) | (1L << (T__83 - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)) | (1L << (BOOLEAN - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)))) != 0) );
+ } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__10) | (1L << T__21) | (1L << T__22) | (1L << T__23) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__29) | (1L << T__31) | (1L << T__32) | (1L << T__33) | (1L << T__34) | (1L << T__35) | (1L << T__36) | (1L << T__37) | (1L << T__38) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__48) | (1L << T__49) | (1L << T__52) | (1L << T__53) | (1L << T__54) | (1L << T__55) | (1L << T__56) | (1L << T__57) | (1L << T__58) | (1L << T__59) | (1L << T__60))) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & ((1L << (T__65 - 66)) | (1L << (T__66 - 66)) | (1L << (T__86 - 66)) | (1L << (SIMPLETYPE - 66)) | (1L << (STRING - 66)) | (1L << (CHAR - 66)) | (1L << (BOOLEAN - 66)) | (1L << (NUMBER - 66)) | (1L << (NAME - 66)))) != 0) );
}
}
catch (RecognitionException re) {
@@ -1865,25 +1867,6 @@ public class KickCParser extends Parser {
else return visitor.visitChildren(this);
}
}
- public static class StmtBlockContext extends StmtContext {
- public StmtSeqContext stmtSeq() {
- return getRuleContext(StmtSeqContext.class,0);
- }
- public StmtBlockContext(StmtContext ctx) { copyFrom(ctx); }
- @Override
- public void enterRule(ParseTreeListener listener) {
- if ( listener instanceof KickCListener ) ((KickCListener)listener).enterStmtBlock(this);
- }
- @Override
- public void exitRule(ParseTreeListener listener) {
- if ( listener instanceof KickCListener ) ((KickCListener)listener).exitStmtBlock(this);
- }
- @Override
- public T accept(ParseTreeVisitor extends T> visitor) {
- if ( visitor instanceof KickCVisitor ) return ((KickCVisitor extends T>)visitor).visitStmtBlock(this);
- else return visitor.visitChildren(this);
- }
- }
public static class StmtBreakContext extends StmtContext {
public StmtBreakContext(StmtContext ctx) { copyFrom(ctx); }
@Override
@@ -1938,34 +1921,6 @@ public class KickCParser extends Parser {
else return visitor.visitChildren(this);
}
}
- public static class StmtWhileContext extends StmtContext {
- public CommaExprContext commaExpr() {
- return getRuleContext(CommaExprContext.class,0);
- }
- public StmtContext stmt() {
- return getRuleContext(StmtContext.class,0);
- }
- public List directive() {
- return getRuleContexts(DirectiveContext.class);
- }
- public DirectiveContext directive(int i) {
- return getRuleContext(DirectiveContext.class,i);
- }
- public StmtWhileContext(StmtContext ctx) { copyFrom(ctx); }
- @Override
- public void enterRule(ParseTreeListener listener) {
- if ( listener instanceof KickCListener ) ((KickCListener)listener).enterStmtWhile(this);
- }
- @Override
- public void exitRule(ParseTreeListener listener) {
- if ( listener instanceof KickCListener ) ((KickCListener)listener).exitStmtWhile(this);
- }
- @Override
- public T accept(ParseTreeVisitor extends T> visitor) {
- if ( visitor instanceof KickCVisitor ) return ((KickCVisitor extends T>)visitor).visitStmtWhile(this);
- else return visitor.visitChildren(this);
- }
- }
public static class StmtDoWhileContext extends StmtContext {
public StmtContext stmt() {
return getRuleContext(StmtContext.class,0);
@@ -1994,6 +1949,113 @@ public class KickCParser extends Parser {
else return visitor.visitChildren(this);
}
}
+ public static class StmtAsmContext extends StmtContext {
+ public AsmLinesContext asmLines() {
+ return getRuleContext(AsmLinesContext.class,0);
+ }
+ public AsmDirectivesContext asmDirectives() {
+ return getRuleContext(AsmDirectivesContext.class,0);
+ }
+ public StmtAsmContext(StmtContext ctx) { copyFrom(ctx); }
+ @Override
+ public void enterRule(ParseTreeListener listener) {
+ if ( listener instanceof KickCListener ) ((KickCListener)listener).enterStmtAsm(this);
+ }
+ @Override
+ public void exitRule(ParseTreeListener listener) {
+ if ( listener instanceof KickCListener ) ((KickCListener)listener).exitStmtAsm(this);
+ }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof KickCVisitor ) return ((KickCVisitor extends T>)visitor).visitStmtAsm(this);
+ else return visitor.visitChildren(this);
+ }
+ }
+ public static class StmtContinueContext extends StmtContext {
+ public StmtContinueContext(StmtContext ctx) { copyFrom(ctx); }
+ @Override
+ public void enterRule(ParseTreeListener listener) {
+ if ( listener instanceof KickCListener ) ((KickCListener)listener).enterStmtContinue(this);
+ }
+ @Override
+ public void exitRule(ParseTreeListener listener) {
+ if ( listener instanceof KickCListener ) ((KickCListener)listener).exitStmtContinue(this);
+ }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof KickCVisitor ) return ((KickCVisitor extends T>)visitor).visitStmtContinue(this);
+ else return visitor.visitChildren(this);
+ }
+ }
+ public static class StmtSwitchContext extends StmtContext {
+ public CommaExprContext commaExpr() {
+ return getRuleContext(CommaExprContext.class,0);
+ }
+ public SwitchCasesContext switchCases() {
+ return getRuleContext(SwitchCasesContext.class,0);
+ }
+ public StmtSwitchContext(StmtContext ctx) { copyFrom(ctx); }
+ @Override
+ public void enterRule(ParseTreeListener listener) {
+ if ( listener instanceof KickCListener ) ((KickCListener)listener).enterStmtSwitch(this);
+ }
+ @Override
+ public void exitRule(ParseTreeListener listener) {
+ if ( listener instanceof KickCListener ) ((KickCListener)listener).exitStmtSwitch(this);
+ }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof KickCVisitor ) return ((KickCVisitor extends T>)visitor).visitStmtSwitch(this);
+ else return visitor.visitChildren(this);
+ }
+ }
+ public static class StmtBlockContext extends StmtContext {
+ public StmtSeqContext stmtSeq() {
+ return getRuleContext(StmtSeqContext.class,0);
+ }
+ public StmtBlockContext(StmtContext ctx) { copyFrom(ctx); }
+ @Override
+ public void enterRule(ParseTreeListener listener) {
+ if ( listener instanceof KickCListener ) ((KickCListener)listener).enterStmtBlock(this);
+ }
+ @Override
+ public void exitRule(ParseTreeListener listener) {
+ if ( listener instanceof KickCListener ) ((KickCListener)listener).exitStmtBlock(this);
+ }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof KickCVisitor ) return ((KickCVisitor extends T>)visitor).visitStmtBlock(this);
+ else return visitor.visitChildren(this);
+ }
+ }
+ public static class StmtWhileContext extends StmtContext {
+ public CommaExprContext commaExpr() {
+ return getRuleContext(CommaExprContext.class,0);
+ }
+ public StmtContext stmt() {
+ return getRuleContext(StmtContext.class,0);
+ }
+ public List directive() {
+ return getRuleContexts(DirectiveContext.class);
+ }
+ public DirectiveContext directive(int i) {
+ return getRuleContext(DirectiveContext.class,i);
+ }
+ public StmtWhileContext(StmtContext ctx) { copyFrom(ctx); }
+ @Override
+ public void enterRule(ParseTreeListener listener) {
+ if ( listener instanceof KickCListener ) ((KickCListener)listener).enterStmtWhile(this);
+ }
+ @Override
+ public void exitRule(ParseTreeListener listener) {
+ if ( listener instanceof KickCListener ) ((KickCListener)listener).exitStmtWhile(this);
+ }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof KickCVisitor ) return ((KickCVisitor extends T>)visitor).visitStmtWhile(this);
+ else return visitor.visitChildren(this);
+ }
+ }
public static class StmtForContext extends StmtContext {
public ForLoopContext forLoop() {
return getRuleContext(ForLoopContext.class,0);
@@ -2022,28 +2084,6 @@ public class KickCParser extends Parser {
else return visitor.visitChildren(this);
}
}
- public static class StmtAsmContext extends StmtContext {
- public AsmLinesContext asmLines() {
- return getRuleContext(AsmLinesContext.class,0);
- }
- public AsmDirectivesContext asmDirectives() {
- return getRuleContext(AsmDirectivesContext.class,0);
- }
- public StmtAsmContext(StmtContext ctx) { copyFrom(ctx); }
- @Override
- public void enterRule(ParseTreeListener listener) {
- if ( listener instanceof KickCListener ) ((KickCListener)listener).enterStmtAsm(this);
- }
- @Override
- public void exitRule(ParseTreeListener listener) {
- if ( listener instanceof KickCListener ) ((KickCListener)listener).exitStmtAsm(this);
- }
- @Override
- public T accept(ParseTreeVisitor extends T> visitor) {
- if ( visitor instanceof KickCVisitor ) return ((KickCVisitor extends T>)visitor).visitStmtAsm(this);
- else return visitor.visitChildren(this);
- }
- }
public static class StmtIfElseContext extends StmtContext {
public CommaExprContext commaExpr() {
return getRuleContext(CommaExprContext.class,0);
@@ -2088,38 +2128,22 @@ public class KickCParser extends Parser {
else return visitor.visitChildren(this);
}
}
- public static class StmtContinueContext extends StmtContext {
- public StmtContinueContext(StmtContext ctx) { copyFrom(ctx); }
- @Override
- public void enterRule(ParseTreeListener listener) {
- if ( listener instanceof KickCListener ) ((KickCListener)listener).enterStmtContinue(this);
- }
- @Override
- public void exitRule(ParseTreeListener listener) {
- if ( listener instanceof KickCListener ) ((KickCListener)listener).exitStmtContinue(this);
- }
- @Override
- public T accept(ParseTreeVisitor extends T> visitor) {
- if ( visitor instanceof KickCVisitor ) return ((KickCVisitor extends T>)visitor).visitStmtContinue(this);
- else return visitor.visitChildren(this);
- }
- }
public final StmtContext stmt() throws RecognitionException {
StmtContext _localctx = new StmtContext(_ctx, getState());
enterRule(_localctx, 34, RULE_stmt);
int _la;
try {
- setState(361);
+ setState(373);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,30,_ctx) ) {
case 1:
_localctx = new StmtDeclVarContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(285);
+ setState(289);
declVariables();
- setState(286);
+ setState(290);
match(T__1);
}
break;
@@ -2127,19 +2151,19 @@ public class KickCParser extends Parser {
_localctx = new StmtBlockContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(288);
+ setState(292);
match(T__7);
- setState(290);
+ setState(294);
_errHandler.sync(this);
_la = _input.LA(1);
- if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__10) | (1L << T__21) | (1L << T__22) | (1L << T__23) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__29) | (1L << T__31) | (1L << T__32) | (1L << T__33) | (1L << T__34) | (1L << T__35) | (1L << T__36) | (1L << T__37) | (1L << T__40) | (1L << T__41) | (1L << T__42) | (1L << T__45) | (1L << T__46) | (1L << T__49) | (1L << T__50) | (1L << T__51) | (1L << T__52) | (1L << T__53) | (1L << T__54) | (1L << T__55) | (1L << T__56) | (1L << T__57) | (1L << T__62))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (T__63 - 64)) | (1L << (T__83 - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)) | (1L << (BOOLEAN - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)))) != 0)) {
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__10) | (1L << T__21) | (1L << T__22) | (1L << T__23) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__29) | (1L << T__31) | (1L << T__32) | (1L << T__33) | (1L << T__34) | (1L << T__35) | (1L << T__36) | (1L << T__37) | (1L << T__38) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__48) | (1L << T__49) | (1L << T__52) | (1L << T__53) | (1L << T__54) | (1L << T__55) | (1L << T__56) | (1L << T__57) | (1L << T__58) | (1L << T__59) | (1L << T__60))) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & ((1L << (T__65 - 66)) | (1L << (T__66 - 66)) | (1L << (T__86 - 66)) | (1L << (SIMPLETYPE - 66)) | (1L << (STRING - 66)) | (1L << (CHAR - 66)) | (1L << (BOOLEAN - 66)) | (1L << (NUMBER - 66)) | (1L << (NAME - 66)))) != 0)) {
{
- setState(289);
+ setState(293);
stmtSeq();
}
}
- setState(292);
+ setState(296);
match(T__8);
}
break;
@@ -2147,9 +2171,9 @@ public class KickCParser extends Parser {
_localctx = new StmtExprContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(293);
+ setState(297);
commaExpr(0);
- setState(294);
+ setState(298);
match(T__1);
}
break;
@@ -2157,24 +2181,24 @@ public class KickCParser extends Parser {
_localctx = new StmtIfElseContext(_localctx);
enterOuterAlt(_localctx, 4);
{
- setState(296);
- match(T__29);
- setState(297);
- match(T__5);
- setState(298);
- commaExpr(0);
- setState(299);
- match(T__6);
setState(300);
- stmt();
+ match(T__29);
+ setState(301);
+ match(T__5);
+ setState(302);
+ commaExpr(0);
setState(303);
+ match(T__6);
+ setState(304);
+ stmt();
+ setState(307);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,24,_ctx) ) {
case 1:
{
- setState(301);
+ setState(305);
match(T__30);
- setState(302);
+ setState(306);
stmt();
}
break;
@@ -2185,29 +2209,29 @@ public class KickCParser extends Parser {
_localctx = new StmtWhileContext(_localctx);
enterOuterAlt(_localctx, 5);
{
- setState(308);
+ setState(312);
_errHandler.sync(this);
_la = _input.LA(1);
while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__10) | (1L << T__21) | (1L << T__22) | (1L << T__23) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28))) != 0)) {
{
{
- setState(305);
+ setState(309);
directive();
}
}
- setState(310);
+ setState(314);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(311);
- match(T__31);
- setState(312);
- match(T__5);
- setState(313);
- commaExpr(0);
- setState(314);
- match(T__6);
setState(315);
+ match(T__31);
+ setState(316);
+ match(T__5);
+ setState(317);
+ commaExpr(0);
+ setState(318);
+ match(T__6);
+ setState(319);
stmt();
}
break;
@@ -2215,33 +2239,33 @@ public class KickCParser extends Parser {
_localctx = new StmtDoWhileContext(_localctx);
enterOuterAlt(_localctx, 6);
{
- setState(320);
+ setState(324);
_errHandler.sync(this);
_la = _input.LA(1);
while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__10) | (1L << T__21) | (1L << T__22) | (1L << T__23) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28))) != 0)) {
{
{
- setState(317);
+ setState(321);
directive();
}
}
- setState(322);
+ setState(326);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(323);
- match(T__32);
- setState(324);
- stmt();
- setState(325);
- match(T__31);
- setState(326);
- match(T__5);
setState(327);
- commaExpr(0);
+ match(T__32);
setState(328);
- match(T__6);
+ stmt();
setState(329);
+ match(T__31);
+ setState(330);
+ match(T__5);
+ setState(331);
+ commaExpr(0);
+ setState(332);
+ match(T__6);
+ setState(333);
match(T__1);
}
break;
@@ -2249,101 +2273,121 @@ public class KickCParser extends Parser {
_localctx = new StmtForContext(_localctx);
enterOuterAlt(_localctx, 7);
{
- setState(334);
+ setState(338);
_errHandler.sync(this);
_la = _input.LA(1);
while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__10) | (1L << T__21) | (1L << T__22) | (1L << T__23) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28))) != 0)) {
{
{
- setState(331);
+ setState(335);
directive();
}
}
- setState(336);
+ setState(340);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(337);
- match(T__33);
- setState(338);
- match(T__5);
- setState(339);
- forLoop();
- setState(340);
- match(T__6);
setState(341);
+ match(T__33);
+ setState(342);
+ match(T__5);
+ setState(343);
+ forLoop();
+ setState(344);
+ match(T__6);
+ setState(345);
stmt();
}
break;
case 8:
- _localctx = new StmtReturnContext(_localctx);
+ _localctx = new StmtSwitchContext(_localctx);
enterOuterAlt(_localctx, 8);
{
- setState(343);
+ setState(347);
match(T__34);
- setState(345);
+ setState(348);
+ match(T__5);
+ setState(349);
+ commaExpr(0);
+ setState(350);
+ match(T__6);
+ setState(351);
+ match(T__7);
+ setState(352);
+ switchCases();
+ setState(353);
+ match(T__8);
+ }
+ break;
+ case 9:
+ _localctx = new StmtReturnContext(_localctx);
+ enterOuterAlt(_localctx, 9);
+ {
+ setState(355);
+ match(T__35);
+ setState(357);
_errHandler.sync(this);
_la = _input.LA(1);
- if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__42) | (1L << T__49) | (1L << T__50) | (1L << T__51) | (1L << T__52) | (1L << T__53) | (1L << T__54) | (1L << T__55) | (1L << T__56) | (1L << T__57) | (1L << T__62))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (T__63 - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)) | (1L << (BOOLEAN - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)))) != 0)) {
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__45) | (1L << T__52) | (1L << T__53) | (1L << T__54) | (1L << T__55) | (1L << T__56) | (1L << T__57) | (1L << T__58) | (1L << T__59) | (1L << T__60))) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & ((1L << (T__65 - 66)) | (1L << (T__66 - 66)) | (1L << (STRING - 66)) | (1L << (CHAR - 66)) | (1L << (BOOLEAN - 66)) | (1L << (NUMBER - 66)) | (1L << (NAME - 66)))) != 0)) {
{
- setState(344);
+ setState(356);
commaExpr(0);
}
}
- setState(347);
- match(T__1);
- }
- break;
- case 9:
- _localctx = new StmtBreakContext(_localctx);
- enterOuterAlt(_localctx, 9);
- {
- setState(348);
- match(T__35);
- setState(349);
+ setState(359);
match(T__1);
}
break;
case 10:
- _localctx = new StmtContinueContext(_localctx);
+ _localctx = new StmtBreakContext(_localctx);
enterOuterAlt(_localctx, 10);
{
- setState(350);
+ setState(360);
match(T__36);
- setState(351);
+ setState(361);
match(T__1);
}
break;
case 11:
- _localctx = new StmtAsmContext(_localctx);
+ _localctx = new StmtContinueContext(_localctx);
enterOuterAlt(_localctx, 11);
{
- setState(352);
+ setState(362);
match(T__37);
- setState(354);
+ setState(363);
+ match(T__1);
+ }
+ break;
+ case 12:
+ _localctx = new StmtAsmContext(_localctx);
+ enterOuterAlt(_localctx, 12);
+ {
+ setState(364);
+ match(T__38);
+ setState(366);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==T__5) {
{
- setState(353);
+ setState(365);
asmDirectives();
}
}
- setState(356);
+ setState(368);
match(T__7);
- setState(357);
+ setState(369);
asmLines();
- setState(358);
+ setState(370);
match(T__8);
}
break;
- case 12:
+ case 13:
_localctx = new StmtDeclKasmContext(_localctx);
- enterOuterAlt(_localctx, 12);
+ enterOuterAlt(_localctx, 13);
{
- setState(360);
+ setState(372);
declKasm();
}
break;
@@ -2360,6 +2404,145 @@ public class KickCParser extends Parser {
return _localctx;
}
+ public static class SwitchCasesContext extends ParserRuleContext {
+ public List switchCase() {
+ return getRuleContexts(SwitchCaseContext.class);
+ }
+ public SwitchCaseContext switchCase(int i) {
+ return getRuleContext(SwitchCaseContext.class,i);
+ }
+ public StmtSeqContext stmtSeq() {
+ return getRuleContext(StmtSeqContext.class,0);
+ }
+ public SwitchCasesContext(ParserRuleContext parent, int invokingState) {
+ super(parent, invokingState);
+ }
+ @Override public int getRuleIndex() { return RULE_switchCases; }
+ @Override
+ public void enterRule(ParseTreeListener listener) {
+ if ( listener instanceof KickCListener ) ((KickCListener)listener).enterSwitchCases(this);
+ }
+ @Override
+ public void exitRule(ParseTreeListener listener) {
+ if ( listener instanceof KickCListener ) ((KickCListener)listener).exitSwitchCases(this);
+ }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof KickCVisitor ) return ((KickCVisitor extends T>)visitor).visitSwitchCases(this);
+ else return visitor.visitChildren(this);
+ }
+ }
+
+ public final SwitchCasesContext switchCases() throws RecognitionException {
+ SwitchCasesContext _localctx = new SwitchCasesContext(_ctx, getState());
+ enterRule(_localctx, 36, RULE_switchCases);
+ int _la;
+ try {
+ enterOuterAlt(_localctx, 1);
+ {
+ setState(376);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ do {
+ {
+ {
+ setState(375);
+ switchCase();
+ }
+ }
+ setState(378);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ } while ( _la==T__40 );
+ {
+ setState(380);
+ match(T__39);
+ setState(382);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__10) | (1L << T__21) | (1L << T__22) | (1L << T__23) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__29) | (1L << T__31) | (1L << T__32) | (1L << T__33) | (1L << T__34) | (1L << T__35) | (1L << T__36) | (1L << T__37) | (1L << T__38) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__48) | (1L << T__49) | (1L << T__52) | (1L << T__53) | (1L << T__54) | (1L << T__55) | (1L << T__56) | (1L << T__57) | (1L << T__58) | (1L << T__59) | (1L << T__60))) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & ((1L << (T__65 - 66)) | (1L << (T__66 - 66)) | (1L << (T__86 - 66)) | (1L << (SIMPLETYPE - 66)) | (1L << (STRING - 66)) | (1L << (CHAR - 66)) | (1L << (BOOLEAN - 66)) | (1L << (NUMBER - 66)) | (1L << (NAME - 66)))) != 0)) {
+ {
+ setState(381);
+ stmtSeq();
+ }
+ }
+
+ }
+ }
+ }
+ catch (RecognitionException re) {
+ _localctx.exception = re;
+ _errHandler.reportError(this, re);
+ _errHandler.recover(this, re);
+ }
+ finally {
+ exitRule();
+ }
+ return _localctx;
+ }
+
+ public static class SwitchCaseContext extends ParserRuleContext {
+ public ExprContext expr() {
+ return getRuleContext(ExprContext.class,0);
+ }
+ public StmtSeqContext stmtSeq() {
+ return getRuleContext(StmtSeqContext.class,0);
+ }
+ public SwitchCaseContext(ParserRuleContext parent, int invokingState) {
+ super(parent, invokingState);
+ }
+ @Override public int getRuleIndex() { return RULE_switchCase; }
+ @Override
+ public void enterRule(ParseTreeListener listener) {
+ if ( listener instanceof KickCListener ) ((KickCListener)listener).enterSwitchCase(this);
+ }
+ @Override
+ public void exitRule(ParseTreeListener listener) {
+ if ( listener instanceof KickCListener ) ((KickCListener)listener).exitSwitchCase(this);
+ }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof KickCVisitor ) return ((KickCVisitor extends T>)visitor).visitSwitchCase(this);
+ else return visitor.visitChildren(this);
+ }
+ }
+
+ public final SwitchCaseContext switchCase() throws RecognitionException {
+ SwitchCaseContext _localctx = new SwitchCaseContext(_ctx, getState());
+ enterRule(_localctx, 38, RULE_switchCase);
+ int _la;
+ try {
+ enterOuterAlt(_localctx, 1);
+ {
+ setState(384);
+ match(T__40);
+ setState(385);
+ expr(0);
+ setState(386);
+ match(T__41);
+ setState(388);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__10) | (1L << T__21) | (1L << T__22) | (1L << T__23) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__29) | (1L << T__31) | (1L << T__32) | (1L << T__33) | (1L << T__34) | (1L << T__35) | (1L << T__36) | (1L << T__37) | (1L << T__38) | (1L << T__43) | (1L << T__44) | (1L << T__45) | (1L << T__48) | (1L << T__49) | (1L << T__52) | (1L << T__53) | (1L << T__54) | (1L << T__55) | (1L << T__56) | (1L << T__57) | (1L << T__58) | (1L << T__59) | (1L << T__60))) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & ((1L << (T__65 - 66)) | (1L << (T__66 - 66)) | (1L << (T__86 - 66)) | (1L << (SIMPLETYPE - 66)) | (1L << (STRING - 66)) | (1L << (CHAR - 66)) | (1L << (BOOLEAN - 66)) | (1L << (NUMBER - 66)) | (1L << (NAME - 66)))) != 0)) {
+ {
+ setState(387);
+ stmtSeq();
+ }
+ }
+
+ }
+ }
+ catch (RecognitionException re) {
+ _localctx.exception = re;
+ _errHandler.reportError(this, re);
+ _errHandler.recover(this, re);
+ }
+ finally {
+ exitRule();
+ }
+ return _localctx;
+ }
+
public static class ForLoopContext extends ParserRuleContext {
public ForLoopContext(ParserRuleContext parent, int invokingState) {
super(parent, invokingState);
@@ -2425,30 +2608,30 @@ public class KickCParser extends Parser {
public final ForLoopContext forLoop() throws RecognitionException {
ForLoopContext _localctx = new ForLoopContext(_ctx, getState());
- enterRule(_localctx, 36, RULE_forLoop);
+ enterRule(_localctx, 40, RULE_forLoop);
int _la;
try {
- setState(379);
+ setState(406);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,33,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,36,_ctx) ) {
case 1:
_localctx = new ForClassicContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(363);
+ setState(390);
forClassicInit();
- setState(364);
+ setState(391);
match(T__1);
- setState(365);
+ setState(392);
commaExpr(0);
- setState(366);
+ setState(393);
match(T__1);
- setState(368);
+ setState(395);
_errHandler.sync(this);
_la = _input.LA(1);
- if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__42) | (1L << T__49) | (1L << T__50) | (1L << T__51) | (1L << T__52) | (1L << T__53) | (1L << T__54) | (1L << T__55) | (1L << T__56) | (1L << T__57) | (1L << T__62))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (T__63 - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)) | (1L << (BOOLEAN - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)))) != 0)) {
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__45) | (1L << T__52) | (1L << T__53) | (1L << T__54) | (1L << T__55) | (1L << T__56) | (1L << T__57) | (1L << T__58) | (1L << T__59) | (1L << T__60))) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & ((1L << (T__65 - 66)) | (1L << (T__66 - 66)) | (1L << (STRING - 66)) | (1L << (CHAR - 66)) | (1L << (BOOLEAN - 66)) | (1L << (NUMBER - 66)) | (1L << (NAME - 66)))) != 0)) {
{
- setState(367);
+ setState(394);
commaExpr(0);
}
}
@@ -2459,27 +2642,27 @@ public class KickCParser extends Parser {
_localctx = new ForRangeContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(371);
+ setState(398);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,32,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,35,_ctx) ) {
case 1:
{
- setState(370);
+ setState(397);
declTypes();
}
break;
}
- setState(373);
+ setState(400);
match(NAME);
- setState(374);
- match(T__38);
- setState(375);
+ setState(401);
+ match(T__41);
+ setState(402);
expr(0);
{
- setState(376);
- match(T__39);
+ setState(403);
+ match(T__42);
}
- setState(377);
+ setState(404);
expr(0);
}
break;
@@ -2548,22 +2731,22 @@ public class KickCParser extends Parser {
public final ForClassicInitContext forClassicInit() throws RecognitionException {
ForClassicInitContext _localctx = new ForClassicInitContext(_ctx, getState());
- enterRule(_localctx, 38, RULE_forClassicInit);
+ enterRule(_localctx, 42, RULE_forClassicInit);
int _la;
try {
- setState(385);
+ setState(412);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,35,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) {
case 1:
_localctx = new ForClassicInitDeclContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(382);
+ setState(409);
_errHandler.sync(this);
_la = _input.LA(1);
- if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__10) | (1L << T__21) | (1L << T__22) | (1L << T__23) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__40) | (1L << T__41) | (1L << T__45) | (1L << T__46))) != 0) || _la==SIMPLETYPE || _la==NAME) {
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__10) | (1L << T__21) | (1L << T__22) | (1L << T__23) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__43) | (1L << T__44) | (1L << T__48) | (1L << T__49))) != 0) || _la==SIMPLETYPE || _la==NAME) {
{
- setState(381);
+ setState(408);
declVariables();
}
}
@@ -2574,7 +2757,7 @@ public class KickCParser extends Parser {
_localctx = new ForClassicInitExprContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(384);
+ setState(411);
commaExpr(0);
}
break;
@@ -2818,27 +3001,27 @@ public class KickCParser extends Parser {
int _parentState = getState();
TypeDeclContext _localctx = new TypeDeclContext(_ctx, _parentState);
TypeDeclContext _prevctx = _localctx;
- int _startState = 40;
- enterRecursionRule(_localctx, 40, RULE_typeDecl, _p);
+ int _startState = 44;
+ enterRecursionRule(_localctx, 44, RULE_typeDecl, _p);
int _la;
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(402);
+ setState(429);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,37,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,40,_ctx) ) {
case 1:
{
_localctx = new TypeParContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(388);
+ setState(415);
match(T__5);
- setState(389);
+ setState(416);
typeDecl(0);
- setState(390);
+ setState(417);
match(T__6);
}
break;
@@ -2847,7 +3030,7 @@ public class KickCParser extends Parser {
_localctx = new TypeSimpleContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(392);
+ setState(419);
match(SIMPLETYPE);
}
break;
@@ -2856,9 +3039,9 @@ public class KickCParser extends Parser {
_localctx = new TypeSignedSimpleContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(393);
+ setState(420);
_la = _input.LA(1);
- if ( !(_la==T__40 || _la==T__41) ) {
+ if ( !(_la==T__43 || _la==T__44) ) {
_errHandler.recoverInline(this);
}
else {
@@ -2866,12 +3049,12 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(395);
+ setState(422);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,36,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,39,_ctx) ) {
case 1:
{
- setState(394);
+ setState(421);
match(SIMPLETYPE);
}
break;
@@ -2883,7 +3066,7 @@ public class KickCParser extends Parser {
_localctx = new TypeStructDefContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(397);
+ setState(424);
structDef();
}
break;
@@ -2892,7 +3075,7 @@ public class KickCParser extends Parser {
_localctx = new TypeStructRefContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(398);
+ setState(425);
structRef();
}
break;
@@ -2901,7 +3084,7 @@ public class KickCParser extends Parser {
_localctx = new TypeEnumDefContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(399);
+ setState(426);
enumDef();
}
break;
@@ -2910,7 +3093,7 @@ public class KickCParser extends Parser {
_localctx = new TypeEnumRefContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(400);
+ setState(427);
enumRef();
}
break;
@@ -2919,73 +3102,73 @@ public class KickCParser extends Parser {
_localctx = new TypeNamedRefContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(401);
+ setState(428);
match(NAME);
}
break;
}
_ctx.stop = _input.LT(-1);
- setState(417);
+ setState(444);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,40,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,43,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent();
_prevctx = _localctx;
{
- setState(415);
+ setState(442);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,39,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,42,_ctx) ) {
case 1:
{
_localctx = new TypePtrContext(new TypeDeclContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_typeDecl);
- setState(404);
+ setState(431);
if (!(precpred(_ctx, 8))) throw new FailedPredicateException(this, "precpred(_ctx, 8)");
- setState(405);
- match(T__42);
+ setState(432);
+ match(T__45);
}
break;
case 2:
{
_localctx = new TypeArrayContext(new TypeDeclContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_typeDecl);
- setState(406);
+ setState(433);
if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)");
- setState(407);
- match(T__43);
- setState(409);
+ setState(434);
+ match(T__46);
+ setState(436);
_errHandler.sync(this);
_la = _input.LA(1);
- if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__42) | (1L << T__49) | (1L << T__50) | (1L << T__51) | (1L << T__52) | (1L << T__53) | (1L << T__54) | (1L << T__55) | (1L << T__56) | (1L << T__57) | (1L << T__62))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (T__63 - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)) | (1L << (BOOLEAN - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)))) != 0)) {
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__45) | (1L << T__52) | (1L << T__53) | (1L << T__54) | (1L << T__55) | (1L << T__56) | (1L << T__57) | (1L << T__58) | (1L << T__59) | (1L << T__60))) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & ((1L << (T__65 - 66)) | (1L << (T__66 - 66)) | (1L << (STRING - 66)) | (1L << (CHAR - 66)) | (1L << (BOOLEAN - 66)) | (1L << (NUMBER - 66)) | (1L << (NAME - 66)))) != 0)) {
{
- setState(408);
+ setState(435);
expr(0);
}
}
- setState(411);
- match(T__44);
+ setState(438);
+ match(T__47);
}
break;
case 3:
{
_localctx = new TypeProcedureContext(new TypeDeclContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_typeDecl);
- setState(412);
+ setState(439);
if (!(precpred(_ctx, 6))) throw new FailedPredicateException(this, "precpred(_ctx, 6)");
- setState(413);
+ setState(440);
match(T__5);
- setState(414);
+ setState(441);
match(T__6);
}
break;
}
}
}
- setState(419);
+ setState(446);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,40,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,43,_ctx);
}
}
}
@@ -3023,13 +3206,13 @@ public class KickCParser extends Parser {
public final StructRefContext structRef() throws RecognitionException {
StructRefContext _localctx = new StructRefContext(_ctx, getState());
- enterRule(_localctx, 42, RULE_structRef);
+ enterRule(_localctx, 46, RULE_structRef);
try {
enterOuterAlt(_localctx, 1);
{
- setState(420);
- match(T__45);
- setState(421);
+ setState(447);
+ match(T__48);
+ setState(448);
match(NAME);
}
}
@@ -3073,40 +3256,40 @@ public class KickCParser extends Parser {
public final StructDefContext structDef() throws RecognitionException {
StructDefContext _localctx = new StructDefContext(_ctx, getState());
- enterRule(_localctx, 44, RULE_structDef);
+ enterRule(_localctx, 48, RULE_structDef);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(423);
- match(T__45);
- setState(425);
+ setState(450);
+ match(T__48);
+ setState(452);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NAME) {
{
- setState(424);
+ setState(451);
match(NAME);
}
}
- setState(427);
+ setState(454);
match(T__7);
- setState(429);
+ setState(456);
_errHandler.sync(this);
_la = _input.LA(1);
do {
{
{
- setState(428);
+ setState(455);
structMembers();
}
}
- setState(431);
+ setState(458);
_errHandler.sync(this);
_la = _input.LA(1);
- } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__10) | (1L << T__21) | (1L << T__22) | (1L << T__23) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__40) | (1L << T__41) | (1L << T__45) | (1L << T__46))) != 0) || _la==SIMPLETYPE || _la==NAME );
- setState(433);
+ } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__10) | (1L << T__21) | (1L << T__22) | (1L << T__23) | (1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__43) | (1L << T__44) | (1L << T__48) | (1L << T__49))) != 0) || _la==SIMPLETYPE || _la==NAME );
+ setState(460);
match(T__8);
}
}
@@ -3146,13 +3329,13 @@ public class KickCParser extends Parser {
public final StructMembersContext structMembers() throws RecognitionException {
StructMembersContext _localctx = new StructMembersContext(_ctx, getState());
- enterRule(_localctx, 46, RULE_structMembers);
+ enterRule(_localctx, 50, RULE_structMembers);
try {
enterOuterAlt(_localctx, 1);
{
- setState(435);
+ setState(462);
declVariables();
- setState(436);
+ setState(463);
match(T__1);
}
}
@@ -3190,13 +3373,13 @@ public class KickCParser extends Parser {
public final EnumRefContext enumRef() throws RecognitionException {
EnumRefContext _localctx = new EnumRefContext(_ctx, getState());
- enterRule(_localctx, 48, RULE_enumRef);
+ enterRule(_localctx, 52, RULE_enumRef);
try {
enterOuterAlt(_localctx, 1);
{
- setState(438);
- match(T__46);
- setState(439);
+ setState(465);
+ match(T__49);
+ setState(466);
match(NAME);
}
}
@@ -3237,28 +3420,28 @@ public class KickCParser extends Parser {
public final EnumDefContext enumDef() throws RecognitionException {
EnumDefContext _localctx = new EnumDefContext(_ctx, getState());
- enterRule(_localctx, 50, RULE_enumDef);
+ enterRule(_localctx, 54, RULE_enumDef);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(441);
- match(T__46);
- setState(443);
+ setState(468);
+ match(T__49);
+ setState(470);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NAME) {
{
- setState(442);
+ setState(469);
match(NAME);
}
}
- setState(445);
+ setState(472);
match(T__7);
- setState(446);
+ setState(473);
enumMemberList(0);
- setState(447);
+ setState(474);
match(T__8);
}
}
@@ -3308,20 +3491,20 @@ public class KickCParser extends Parser {
int _parentState = getState();
EnumMemberListContext _localctx = new EnumMemberListContext(_ctx, _parentState);
EnumMemberListContext _prevctx = _localctx;
- int _startState = 52;
- enterRecursionRule(_localctx, 52, RULE_enumMemberList, _p);
+ int _startState = 56;
+ enterRecursionRule(_localctx, 56, RULE_enumMemberList, _p);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
{
- setState(450);
+ setState(477);
enumMember();
}
_ctx.stop = _input.LT(-1);
- setState(457);
+ setState(484);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,44,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,47,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent();
@@ -3330,18 +3513,18 @@ public class KickCParser extends Parser {
{
_localctx = new EnumMemberListContext(_parentctx, _parentState);
pushNewRecursionContext(_localctx, _startState, RULE_enumMemberList);
- setState(452);
+ setState(479);
if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
- setState(453);
+ setState(480);
match(T__3);
- setState(454);
+ setState(481);
enumMember();
}
}
}
- setState(459);
+ setState(486);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,44,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,47,_ctx);
}
}
}
@@ -3382,20 +3565,20 @@ public class KickCParser extends Parser {
public final EnumMemberContext enumMember() throws RecognitionException {
EnumMemberContext _localctx = new EnumMemberContext(_ctx, getState());
- enterRule(_localctx, 54, RULE_enumMember);
+ enterRule(_localctx, 58, RULE_enumMember);
try {
enterOuterAlt(_localctx, 1);
{
- setState(460);
+ setState(487);
match(NAME);
- setState(463);
+ setState(490);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,45,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) {
case 1:
{
- setState(461);
+ setState(488);
match(T__4);
- setState(462);
+ setState(489);
expr(0);
}
break;
@@ -3475,8 +3658,8 @@ public class KickCParser extends Parser {
int _parentState = getState();
CommaExprContext _localctx = new CommaExprContext(_ctx, _parentState);
CommaExprContext _prevctx = _localctx;
- int _startState = 56;
- enterRecursionRule(_localctx, 56, RULE_commaExpr, _p);
+ int _startState = 60;
+ enterRecursionRule(_localctx, 60, RULE_commaExpr, _p);
try {
int _alt;
enterOuterAlt(_localctx, 1);
@@ -3486,13 +3669,13 @@ public class KickCParser extends Parser {
_ctx = _localctx;
_prevctx = _localctx;
- setState(466);
+ setState(493);
expr(0);
}
_ctx.stop = _input.LT(-1);
- setState(473);
+ setState(500);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,46,_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();
@@ -3501,18 +3684,18 @@ public class KickCParser extends Parser {
{
_localctx = new CommaSimpleContext(new CommaExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_commaExpr);
- setState(468);
+ setState(495);
if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
- setState(469);
+ setState(496);
match(T__3);
- setState(470);
+ setState(497);
expr(0);
}
}
}
- setState(475);
+ setState(502);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,46,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,49,_ctx);
}
}
}
@@ -3991,27 +4174,27 @@ public class KickCParser extends Parser {
int _parentState = getState();
ExprContext _localctx = new ExprContext(_ctx, _parentState);
ExprContext _prevctx = _localctx;
- int _startState = 58;
- enterRecursionRule(_localctx, 58, RULE_expr, _p);
+ int _startState = 62;
+ enterRecursionRule(_localctx, 62, RULE_expr, _p);
int _la;
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(530);
+ setState(557);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,51,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,54,_ctx) ) {
case 1:
{
_localctx = new ExprParContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(477);
+ setState(504);
match(T__5);
- setState(478);
+ setState(505);
commaExpr(0);
- setState(479);
+ setState(506);
match(T__6);
}
break;
@@ -4020,27 +4203,27 @@ public class KickCParser extends Parser {
_localctx = new ExprSizeOfContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(481);
- match(T__49);
- setState(482);
+ setState(508);
+ match(T__52);
+ setState(509);
match(T__5);
- setState(485);
+ setState(512);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,47,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,50,_ctx) ) {
case 1:
{
- setState(483);
+ setState(510);
expr(0);
}
break;
case 2:
{
- setState(484);
+ setState(511);
typeDecl(0);
}
break;
}
- setState(487);
+ setState(514);
match(T__6);
}
break;
@@ -4049,27 +4232,27 @@ public class KickCParser extends Parser {
_localctx = new ExprTypeIdContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(489);
- match(T__50);
- setState(490);
+ setState(516);
+ match(T__53);
+ setState(517);
match(T__5);
- setState(493);
+ setState(520);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,51,_ctx) ) {
case 1:
{
- setState(491);
+ setState(518);
expr(0);
}
break;
case 2:
{
- setState(492);
+ setState(519);
typeDecl(0);
}
break;
}
- setState(495);
+ setState(522);
match(T__6);
}
break;
@@ -4078,13 +4261,13 @@ public class KickCParser extends Parser {
_localctx = new ExprCastContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(497);
+ setState(524);
match(T__5);
- setState(498);
+ setState(525);
typeDecl(0);
- setState(499);
+ setState(526);
match(T__6);
- setState(500);
+ setState(527);
expr(24);
}
break;
@@ -4093,9 +4276,9 @@ public class KickCParser extends Parser {
_localctx = new ExprPreModContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(502);
+ setState(529);
_la = _input.LA(1);
- if ( !(_la==T__51 || _la==T__52) ) {
+ if ( !(_la==T__54 || _la==T__55) ) {
_errHandler.recoverInline(this);
}
else {
@@ -4103,7 +4286,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(503);
+ setState(530);
expr(23);
}
break;
@@ -4112,9 +4295,9 @@ public class KickCParser extends Parser {
_localctx = new ExprPtrContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(504);
- match(T__42);
- setState(505);
+ setState(531);
+ match(T__45);
+ setState(532);
expr(21);
}
break;
@@ -4123,9 +4306,9 @@ public class KickCParser extends Parser {
_localctx = new ExprUnaryContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(506);
+ setState(533);
_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))) != 0)) ) {
+ if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__56) | (1L << T__57) | (1L << T__58) | (1L << T__59) | (1L << T__60))) != 0)) ) {
_errHandler.recoverInline(this);
}
else {
@@ -4133,7 +4316,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(507);
+ setState(534);
expr(20);
}
break;
@@ -4142,9 +4325,9 @@ public class KickCParser extends Parser {
_localctx = new ExprUnaryContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(508);
+ setState(535);
_la = _input.LA(1);
- if ( !(_la==T__62 || _la==T__63) ) {
+ if ( !(_la==T__65 || _la==T__66) ) {
_errHandler.recoverInline(this);
}
else {
@@ -4152,7 +4335,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(509);
+ setState(536);
expr(16);
}
break;
@@ -4161,27 +4344,27 @@ public class KickCParser extends Parser {
_localctx = new InitListContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(510);
+ setState(537);
match(T__7);
- setState(511);
+ setState(538);
expr(0);
- setState(516);
+ setState(543);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==T__3) {
{
{
- setState(512);
+ setState(539);
match(T__3);
- setState(513);
+ setState(540);
expr(0);
}
}
- setState(518);
+ setState(545);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(519);
+ setState(546);
match(T__8);
}
break;
@@ -4190,7 +4373,7 @@ public class KickCParser extends Parser {
_localctx = new ExprIdContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(521);
+ setState(548);
match(NAME);
}
break;
@@ -4199,7 +4382,7 @@ public class KickCParser extends Parser {
_localctx = new ExprNumberContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(522);
+ setState(549);
match(NUMBER);
}
break;
@@ -4208,7 +4391,7 @@ public class KickCParser extends Parser {
_localctx = new ExprStringContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(524);
+ setState(551);
_errHandler.sync(this);
_alt = 1;
do {
@@ -4216,7 +4399,7 @@ public class KickCParser extends Parser {
case 1:
{
{
- setState(523);
+ setState(550);
match(STRING);
}
}
@@ -4224,9 +4407,9 @@ public class KickCParser extends Parser {
default:
throw new NoViableAltException(this);
}
- setState(526);
+ setState(553);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,50,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,53,_ctx);
} while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER );
}
break;
@@ -4235,7 +4418,7 @@ public class KickCParser extends Parser {
_localctx = new ExprCharContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(528);
+ setState(555);
match(CHAR);
}
break;
@@ -4244,32 +4427,32 @@ public class KickCParser extends Parser {
_localctx = new ExprBoolContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(529);
+ setState(556);
match(BOOLEAN);
}
break;
}
_ctx.stop = _input.LT(-1);
- setState(592);
+ setState(619);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,54,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,57,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent();
_prevctx = _localctx;
{
- setState(590);
+ setState(617);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,53,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,56,_ctx) ) {
case 1:
{
_localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(532);
+ setState(559);
if (!(precpred(_ctx, 19))) throw new FailedPredicateException(this, "precpred(_ctx, 19)");
- setState(533);
+ setState(560);
_la = _input.LA(1);
- if ( !(_la==T__58 || _la==T__59) ) {
+ if ( !(_la==T__61 || _la==T__62) ) {
_errHandler.recoverInline(this);
}
else {
@@ -4277,7 +4460,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(534);
+ setState(561);
expr(20);
}
break;
@@ -4285,11 +4468,11 @@ public class KickCParser extends Parser {
{
_localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(535);
+ setState(562);
if (!(precpred(_ctx, 18))) throw new FailedPredicateException(this, "precpred(_ctx, 18)");
- setState(536);
+ setState(563);
_la = _input.LA(1);
- if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__42) | (1L << T__60) | (1L << T__61))) != 0)) ) {
+ if ( !(((((_la - 46)) & ~0x3f) == 0 && ((1L << (_la - 46)) & ((1L << (T__45 - 46)) | (1L << (T__63 - 46)) | (1L << (T__64 - 46)))) != 0)) ) {
_errHandler.recoverInline(this);
}
else {
@@ -4297,7 +4480,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(537);
+ setState(564);
expr(19);
}
break;
@@ -4305,11 +4488,11 @@ public class KickCParser extends Parser {
{
_localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(538);
+ setState(565);
if (!(precpred(_ctx, 17))) throw new FailedPredicateException(this, "precpred(_ctx, 17)");
- setState(539);
+ setState(566);
_la = _input.LA(1);
- if ( !(_la==T__53 || _la==T__54) ) {
+ if ( !(_la==T__56 || _la==T__57) ) {
_errHandler.recoverInline(this);
}
else {
@@ -4317,7 +4500,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(540);
+ setState(567);
expr(18);
}
break;
@@ -4325,129 +4508,11 @@ public class KickCParser extends Parser {
{
_localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(541);
- if (!(precpred(_ctx, 15))) throw new FailedPredicateException(this, "precpred(_ctx, 15)");
- setState(542);
- _la = _input.LA(1);
- if ( !(((((_la - 63)) & ~0x3f) == 0 && ((1L << (_la - 63)) & ((1L << (T__62 - 63)) | (1L << (T__63 - 63)) | (1L << (T__64 - 63)) | (1L << (T__65 - 63)) | (1L << (T__66 - 63)) | (1L << (T__67 - 63)))) != 0)) ) {
- _errHandler.recoverInline(this);
- }
- else {
- if ( _input.LA(1)==Token.EOF ) matchedEOF = true;
- _errHandler.reportMatch(this);
- consume();
- }
- setState(543);
- expr(16);
- }
- break;
- case 5:
- {
- _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
- pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(544);
- if (!(precpred(_ctx, 14))) throw new FailedPredicateException(this, "precpred(_ctx, 14)");
- {
- setState(545);
- match(T__56);
- }
- setState(546);
- expr(15);
- }
- break;
- case 6:
- {
- _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
- pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(547);
- if (!(precpred(_ctx, 13))) throw new FailedPredicateException(this, "precpred(_ctx, 13)");
- {
- setState(548);
- match(T__68);
- }
- setState(549);
- expr(14);
- }
- break;
- case 7:
- {
- _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
- pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(550);
- if (!(precpred(_ctx, 12))) throw new FailedPredicateException(this, "precpred(_ctx, 12)");
- {
- setState(551);
- match(T__69);
- }
- setState(552);
- expr(13);
- }
- break;
- case 8:
- {
- _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
- pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(553);
- if (!(precpred(_ctx, 11))) throw new FailedPredicateException(this, "precpred(_ctx, 11)");
- {
- setState(554);
- match(T__70);
- }
- setState(555);
- expr(12);
- }
- break;
- case 9:
- {
- _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
- pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(556);
- if (!(precpred(_ctx, 10))) throw new FailedPredicateException(this, "precpred(_ctx, 10)");
- {
- setState(557);
- match(T__71);
- }
- setState(558);
- expr(11);
- }
- break;
- case 10:
- {
- _localctx = new ExprTernaryContext(new ExprContext(_parentctx, _parentState));
- pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(559);
- if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)");
- setState(560);
- match(T__72);
- setState(561);
- expr(0);
- setState(562);
- match(T__38);
- setState(563);
- expr(10);
- }
- break;
- case 11:
- {
- _localctx = new ExprAssignmentContext(new ExprContext(_parentctx, _parentState));
- pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(565);
- if (!(precpred(_ctx, 8))) throw new FailedPredicateException(this, "precpred(_ctx, 8)");
- setState(566);
- match(T__4);
- setState(567);
- expr(8);
- }
- break;
- case 12:
- {
- _localctx = new ExprAssignmentCompoundContext(new ExprContext(_parentctx, _parentState));
- pushNewRecursionContext(_localctx, _startState, RULE_expr);
setState(568);
- if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)");
+ if (!(precpred(_ctx, 15))) throw new FailedPredicateException(this, "precpred(_ctx, 15)");
setState(569);
_la = _input.LA(1);
- if ( !(((((_la - 74)) & ~0x3f) == 0 && ((1L << (_la - 74)) & ((1L << (T__73 - 74)) | (1L << (T__74 - 74)) | (1L << (T__75 - 74)) | (1L << (T__76 - 74)) | (1L << (T__77 - 74)) | (1L << (T__78 - 74)) | (1L << (T__79 - 74)) | (1L << (T__80 - 74)) | (1L << (T__81 - 74)) | (1L << (T__82 - 74)))) != 0)) ) {
+ if ( !(((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & ((1L << (T__65 - 66)) | (1L << (T__66 - 66)) | (1L << (T__67 - 66)) | (1L << (T__68 - 66)) | (1L << (T__69 - 66)) | (1L << (T__70 - 66)))) != 0)) ) {
_errHandler.recoverInline(this);
}
else {
@@ -4456,6 +4521,124 @@ public class KickCParser extends Parser {
consume();
}
setState(570);
+ expr(16);
+ }
+ break;
+ case 5:
+ {
+ _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
+ pushNewRecursionContext(_localctx, _startState, RULE_expr);
+ setState(571);
+ if (!(precpred(_ctx, 14))) throw new FailedPredicateException(this, "precpred(_ctx, 14)");
+ {
+ setState(572);
+ match(T__59);
+ }
+ setState(573);
+ expr(15);
+ }
+ break;
+ case 6:
+ {
+ _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
+ pushNewRecursionContext(_localctx, _startState, RULE_expr);
+ setState(574);
+ if (!(precpred(_ctx, 13))) throw new FailedPredicateException(this, "precpred(_ctx, 13)");
+ {
+ setState(575);
+ match(T__71);
+ }
+ setState(576);
+ expr(14);
+ }
+ break;
+ case 7:
+ {
+ _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
+ pushNewRecursionContext(_localctx, _startState, RULE_expr);
+ setState(577);
+ if (!(precpred(_ctx, 12))) throw new FailedPredicateException(this, "precpred(_ctx, 12)");
+ {
+ setState(578);
+ match(T__72);
+ }
+ setState(579);
+ expr(13);
+ }
+ break;
+ case 8:
+ {
+ _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
+ pushNewRecursionContext(_localctx, _startState, RULE_expr);
+ setState(580);
+ if (!(precpred(_ctx, 11))) throw new FailedPredicateException(this, "precpred(_ctx, 11)");
+ {
+ setState(581);
+ match(T__73);
+ }
+ setState(582);
+ expr(12);
+ }
+ break;
+ case 9:
+ {
+ _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
+ pushNewRecursionContext(_localctx, _startState, RULE_expr);
+ setState(583);
+ if (!(precpred(_ctx, 10))) throw new FailedPredicateException(this, "precpred(_ctx, 10)");
+ {
+ setState(584);
+ match(T__74);
+ }
+ setState(585);
+ expr(11);
+ }
+ break;
+ case 10:
+ {
+ _localctx = new ExprTernaryContext(new ExprContext(_parentctx, _parentState));
+ pushNewRecursionContext(_localctx, _startState, RULE_expr);
+ setState(586);
+ if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)");
+ setState(587);
+ match(T__75);
+ setState(588);
+ expr(0);
+ setState(589);
+ match(T__41);
+ setState(590);
+ expr(10);
+ }
+ break;
+ case 11:
+ {
+ _localctx = new ExprAssignmentContext(new ExprContext(_parentctx, _parentState));
+ pushNewRecursionContext(_localctx, _startState, RULE_expr);
+ setState(592);
+ if (!(precpred(_ctx, 8))) throw new FailedPredicateException(this, "precpred(_ctx, 8)");
+ setState(593);
+ match(T__4);
+ setState(594);
+ expr(8);
+ }
+ break;
+ case 12:
+ {
+ _localctx = new ExprAssignmentCompoundContext(new ExprContext(_parentctx, _parentState));
+ pushNewRecursionContext(_localctx, _startState, RULE_expr);
+ setState(595);
+ if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)");
+ setState(596);
+ _la = _input.LA(1);
+ if ( !(((((_la - 77)) & ~0x3f) == 0 && ((1L << (_la - 77)) & ((1L << (T__76 - 77)) | (1L << (T__77 - 77)) | (1L << (T__78 - 77)) | (1L << (T__79 - 77)) | (1L << (T__80 - 77)) | (1L << (T__81 - 77)) | (1L << (T__82 - 77)) | (1L << (T__83 - 77)) | (1L << (T__84 - 77)) | (1L << (T__85 - 77)))) != 0)) ) {
+ _errHandler.recoverInline(this);
+ }
+ else {
+ if ( _input.LA(1)==Token.EOF ) matchedEOF = true;
+ _errHandler.reportMatch(this);
+ consume();
+ }
+ setState(597);
expr(7);
}
break;
@@ -4463,11 +4646,11 @@ public class KickCParser extends Parser {
{
_localctx = new ExprDotContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(571);
+ setState(598);
if (!(precpred(_ctx, 30))) throw new FailedPredicateException(this, "precpred(_ctx, 30)");
- setState(572);
- match(T__47);
- setState(573);
+ setState(599);
+ match(T__50);
+ setState(600);
match(NAME);
}
break;
@@ -4475,11 +4658,11 @@ public class KickCParser extends Parser {
{
_localctx = new ExprArrowContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(574);
+ setState(601);
if (!(precpred(_ctx, 29))) throw new FailedPredicateException(this, "precpred(_ctx, 29)");
- setState(575);
- match(T__48);
- setState(576);
+ setState(602);
+ match(T__51);
+ setState(603);
match(NAME);
}
break;
@@ -4487,21 +4670,21 @@ public class KickCParser extends Parser {
{
_localctx = new ExprCallContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(577);
+ setState(604);
if (!(precpred(_ctx, 28))) throw new FailedPredicateException(this, "precpred(_ctx, 28)");
- setState(578);
+ setState(605);
match(T__5);
- setState(580);
+ setState(607);
_errHandler.sync(this);
_la = _input.LA(1);
- if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__42) | (1L << T__49) | (1L << T__50) | (1L << T__51) | (1L << T__52) | (1L << T__53) | (1L << T__54) | (1L << T__55) | (1L << T__56) | (1L << T__57) | (1L << T__62))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (T__63 - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)) | (1L << (BOOLEAN - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)))) != 0)) {
+ if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__5) | (1L << T__7) | (1L << T__45) | (1L << T__52) | (1L << T__53) | (1L << T__54) | (1L << T__55) | (1L << T__56) | (1L << T__57) | (1L << T__58) | (1L << T__59) | (1L << T__60))) != 0) || ((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & ((1L << (T__65 - 66)) | (1L << (T__66 - 66)) | (1L << (STRING - 66)) | (1L << (CHAR - 66)) | (1L << (BOOLEAN - 66)) | (1L << (NUMBER - 66)) | (1L << (NAME - 66)))) != 0)) {
{
- setState(579);
+ setState(606);
parameterList();
}
}
- setState(582);
+ setState(609);
match(T__6);
}
break;
@@ -4509,25 +4692,25 @@ public class KickCParser extends Parser {
{
_localctx = new ExprArrayContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(583);
+ setState(610);
if (!(precpred(_ctx, 25))) throw new FailedPredicateException(this, "precpred(_ctx, 25)");
- setState(584);
- match(T__43);
- setState(585);
+ setState(611);
+ match(T__46);
+ setState(612);
commaExpr(0);
- setState(586);
- match(T__44);
+ setState(613);
+ match(T__47);
}
break;
case 17:
{
_localctx = new ExprPostModContext(new ExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_expr);
- setState(588);
+ setState(615);
if (!(precpred(_ctx, 22))) throw new FailedPredicateException(this, "precpred(_ctx, 22)");
- setState(589);
+ setState(616);
_la = _input.LA(1);
- if ( !(_la==T__51 || _la==T__52) ) {
+ if ( !(_la==T__54 || _la==T__55) ) {
_errHandler.recoverInline(this);
}
else {
@@ -4540,9 +4723,9 @@ public class KickCParser extends Parser {
}
}
}
- setState(594);
+ setState(621);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,54,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,57,_ctx);
}
}
}
@@ -4585,26 +4768,26 @@ public class KickCParser extends Parser {
public final ParameterListContext parameterList() throws RecognitionException {
ParameterListContext _localctx = new ParameterListContext(_ctx, getState());
- enterRule(_localctx, 60, RULE_parameterList);
+ enterRule(_localctx, 64, RULE_parameterList);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(595);
+ setState(622);
expr(0);
- setState(600);
+ setState(627);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==T__3) {
{
{
- setState(596);
+ setState(623);
match(T__3);
- setState(597);
+ setState(624);
expr(0);
}
}
- setState(602);
+ setState(629);
_errHandler.sync(this);
_la = _input.LA(1);
}
@@ -4647,24 +4830,24 @@ public class KickCParser extends Parser {
public final DeclKasmContext declKasm() throws RecognitionException {
DeclKasmContext _localctx = new DeclKasmContext(_ctx, getState());
- enterRule(_localctx, 62, RULE_declKasm);
+ enterRule(_localctx, 66, RULE_declKasm);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(603);
- match(T__83);
- setState(605);
+ setState(630);
+ match(T__86);
+ setState(632);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==T__5) {
{
- setState(604);
+ setState(631);
asmDirectives();
}
}
- setState(607);
+ setState(634);
match(KICKASM);
}
}
@@ -4707,32 +4890,32 @@ public class KickCParser extends Parser {
public final AsmDirectivesContext asmDirectives() throws RecognitionException {
AsmDirectivesContext _localctx = new AsmDirectivesContext(_ctx, getState());
- enterRule(_localctx, 64, RULE_asmDirectives);
+ enterRule(_localctx, 68, RULE_asmDirectives);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(609);
+ setState(636);
match(T__5);
- setState(610);
+ setState(637);
asmDirective();
- setState(615);
+ setState(642);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==T__3) {
{
{
- setState(611);
+ setState(638);
match(T__3);
- setState(612);
+ setState(639);
asmDirective();
}
}
- setState(617);
+ setState(644);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(618);
+ setState(645);
match(T__6);
}
}
@@ -4869,58 +5052,58 @@ public class KickCParser extends Parser {
public final AsmDirectiveContext asmDirective() throws RecognitionException {
AsmDirectiveContext _localctx = new AsmDirectiveContext(_ctx, getState());
- enterRule(_localctx, 66, RULE_asmDirective);
+ enterRule(_localctx, 70, RULE_asmDirective);
try {
- setState(635);
+ setState(662);
_errHandler.sync(this);
switch (_input.LA(1)) {
- case T__84:
+ case T__87:
_localctx = new AsmDirectiveResourceContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(620);
- match(T__84);
- setState(621);
- match(STRING);
- }
- break;
- case T__85:
- _localctx = new AsmDirectiveUsesContext(_localctx);
- enterOuterAlt(_localctx, 2);
- {
- setState(622);
- match(T__85);
- setState(623);
- match(NAME);
- }
- break;
- case T__86:
- _localctx = new AsmDirectiveClobberContext(_localctx);
- enterOuterAlt(_localctx, 3);
- {
- setState(624);
- match(T__86);
- setState(625);
- match(STRING);
- }
- break;
- case T__87:
- _localctx = new AsmDirectiveBytesContext(_localctx);
- enterOuterAlt(_localctx, 4);
- {
- setState(626);
+ setState(647);
match(T__87);
- setState(627);
- expr(0);
+ setState(648);
+ match(STRING);
}
break;
case T__88:
+ _localctx = new AsmDirectiveUsesContext(_localctx);
+ enterOuterAlt(_localctx, 2);
+ {
+ setState(649);
+ match(T__88);
+ setState(650);
+ match(NAME);
+ }
+ break;
+ case T__89:
+ _localctx = new AsmDirectiveClobberContext(_localctx);
+ enterOuterAlt(_localctx, 3);
+ {
+ setState(651);
+ match(T__89);
+ setState(652);
+ match(STRING);
+ }
+ break;
+ case T__90:
+ _localctx = new AsmDirectiveBytesContext(_localctx);
+ enterOuterAlt(_localctx, 4);
+ {
+ setState(653);
+ match(T__90);
+ setState(654);
+ expr(0);
+ }
+ break;
+ case T__91:
_localctx = new AsmDirectiveCyclesContext(_localctx);
enterOuterAlt(_localctx, 5);
{
- setState(628);
- match(T__88);
- setState(629);
+ setState(655);
+ match(T__91);
+ setState(656);
expr(0);
}
break;
@@ -4928,38 +5111,38 @@ public class KickCParser extends Parser {
_localctx = new AsmDirectiveAddressContext(_localctx);
enterOuterAlt(_localctx, 6);
{
- setState(630);
+ setState(657);
match(T__12);
- setState(633);
+ setState(660);
_errHandler.sync(this);
switch (_input.LA(1)) {
case T__26:
{
- setState(631);
+ setState(658);
match(T__26);
}
break;
case T__5:
case T__7:
- case T__42:
- case T__49:
- case T__50:
- case T__51:
+ case T__45:
case T__52:
case T__53:
case T__54:
case T__55:
case T__56:
case T__57:
- case T__62:
- case T__63:
+ case T__58:
+ case T__59:
+ case T__60:
+ case T__65:
+ case T__66:
case STRING:
case CHAR:
case BOOLEAN:
case NUMBER:
case NAME:
{
- setState(632);
+ setState(659);
expr(0);
}
break;
@@ -5011,22 +5194,22 @@ public class KickCParser extends Parser {
public final AsmLinesContext asmLines() throws RecognitionException {
AsmLinesContext _localctx = new AsmLinesContext(_ctx, getState());
- enterRule(_localctx, 68, RULE_asmLines);
+ enterRule(_localctx, 72, RULE_asmLines);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(640);
+ setState(667);
_errHandler.sync(this);
_la = _input.LA(1);
- while (((((_la - 56)) & ~0x3f) == 0 && ((1L << (_la - 56)) & ((1L << (T__55 - 56)) | (1L << (T__89 - 56)) | (1L << (MNEMONIC - 56)) | (1L << (NAME - 56)))) != 0)) {
+ while (((((_la - 59)) & ~0x3f) == 0 && ((1L << (_la - 59)) & ((1L << (T__58 - 59)) | (1L << (T__92 - 59)) | (1L << (MNEMONIC - 59)) | (1L << (NAME - 59)))) != 0)) {
{
{
- setState(637);
+ setState(664);
asmLine();
}
}
- setState(642);
+ setState(669);
_errHandler.sync(this);
_la = _input.LA(1);
}
@@ -5074,30 +5257,30 @@ public class KickCParser extends Parser {
public final AsmLineContext asmLine() throws RecognitionException {
AsmLineContext _localctx = new AsmLineContext(_ctx, getState());
- enterRule(_localctx, 70, RULE_asmLine);
+ enterRule(_localctx, 74, RULE_asmLine);
try {
- setState(646);
+ setState(673);
_errHandler.sync(this);
switch (_input.LA(1)) {
- case T__55:
+ case T__58:
case NAME:
enterOuterAlt(_localctx, 1);
{
- setState(643);
+ setState(670);
asmLabel();
}
break;
case MNEMONIC:
enterOuterAlt(_localctx, 2);
{
- setState(644);
+ setState(671);
asmInstruction();
}
break;
- case T__89:
+ case T__92:
enterOuterAlt(_localctx, 3);
{
- setState(645);
+ setState(672);
asmBytes();
}
break;
@@ -5164,40 +5347,40 @@ public class KickCParser extends Parser {
public final AsmLabelContext asmLabel() throws RecognitionException {
AsmLabelContext _localctx = new AsmLabelContext(_ctx, getState());
- enterRule(_localctx, 72, RULE_asmLabel);
+ enterRule(_localctx, 76, RULE_asmLabel);
int _la;
try {
- setState(655);
+ setState(682);
_errHandler.sync(this);
switch (_input.LA(1)) {
case NAME:
_localctx = new AsmLabelNameContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(648);
+ setState(675);
match(NAME);
- setState(649);
- match(T__38);
+ setState(676);
+ match(T__41);
}
break;
- case T__55:
+ case T__58:
_localctx = new AsmLabelMultiContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(650);
- match(T__55);
- setState(652);
+ setState(677);
+ match(T__58);
+ setState(679);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NAME) {
{
- setState(651);
+ setState(678);
match(NAME);
}
}
- setState(654);
- match(T__38);
+ setState(681);
+ match(T__41);
}
break;
default:
@@ -5241,18 +5424,18 @@ public class KickCParser extends Parser {
public final AsmInstructionContext asmInstruction() throws RecognitionException {
AsmInstructionContext _localctx = new AsmInstructionContext(_ctx, getState());
- enterRule(_localctx, 74, RULE_asmInstruction);
+ enterRule(_localctx, 78, RULE_asmInstruction);
try {
enterOuterAlt(_localctx, 1);
{
- setState(657);
+ setState(684);
match(MNEMONIC);
- setState(659);
+ setState(686);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,64,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,67,_ctx) ) {
case 1:
{
- setState(658);
+ setState(685);
asmParamMode();
}
break;
@@ -5298,28 +5481,28 @@ public class KickCParser extends Parser {
public final AsmBytesContext asmBytes() throws RecognitionException {
AsmBytesContext _localctx = new AsmBytesContext(_ctx, getState());
- enterRule(_localctx, 76, RULE_asmBytes);
+ enterRule(_localctx, 80, RULE_asmBytes);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(661);
- match(T__89);
- setState(662);
+ setState(688);
+ match(T__92);
+ setState(689);
asmExpr(0);
- setState(667);
+ setState(694);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==T__3) {
{
{
- setState(663);
+ setState(690);
match(T__3);
- setState(664);
+ setState(691);
asmExpr(0);
}
}
- setState(669);
+ setState(696);
_errHandler.sync(this);
_la = _input.LA(1);
}
@@ -5467,16 +5650,16 @@ public class KickCParser extends Parser {
public final AsmParamModeContext asmParamMode() throws RecognitionException {
AsmParamModeContext _localctx = new AsmParamModeContext(_ctx, getState());
- enterRule(_localctx, 78, RULE_asmParamMode);
+ enterRule(_localctx, 82, RULE_asmParamMode);
try {
- setState(693);
+ setState(720);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,66,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,69,_ctx) ) {
case 1:
_localctx = new AsmModeAbsContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(670);
+ setState(697);
asmExpr(0);
}
break;
@@ -5484,9 +5667,9 @@ public class KickCParser extends Parser {
_localctx = new AsmModeImmContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(671);
- match(T__90);
- setState(672);
+ setState(698);
+ match(T__93);
+ setState(699);
asmExpr(0);
}
break;
@@ -5494,11 +5677,11 @@ public class KickCParser extends Parser {
_localctx = new AsmModeAbsXYContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(673);
+ setState(700);
asmExpr(0);
- setState(674);
+ setState(701);
match(T__3);
- setState(675);
+ setState(702);
match(NAME);
}
break;
@@ -5506,15 +5689,15 @@ public class KickCParser extends Parser {
_localctx = new AsmModeIndIdxXYContext(_localctx);
enterOuterAlt(_localctx, 4);
{
- setState(677);
+ setState(704);
match(T__5);
- setState(678);
+ setState(705);
asmExpr(0);
- setState(679);
+ setState(706);
match(T__6);
- setState(680);
+ setState(707);
match(T__3);
- setState(681);
+ setState(708);
match(NAME);
}
break;
@@ -5522,15 +5705,15 @@ public class KickCParser extends Parser {
_localctx = new AsmModeIdxIndXYContext(_localctx);
enterOuterAlt(_localctx, 5);
{
- setState(683);
+ setState(710);
match(T__5);
- setState(684);
+ setState(711);
asmExpr(0);
- setState(685);
+ setState(712);
match(T__3);
- setState(686);
+ setState(713);
match(NAME);
- setState(687);
+ setState(714);
match(T__6);
}
break;
@@ -5538,11 +5721,11 @@ public class KickCParser extends Parser {
_localctx = new AsmModeIndContext(_localctx);
enterOuterAlt(_localctx, 6);
{
- setState(689);
+ setState(716);
match(T__5);
- setState(690);
+ setState(717);
asmExpr(0);
- setState(691);
+ setState(718);
match(T__6);
}
break;
@@ -5725,41 +5908,41 @@ public class KickCParser extends Parser {
int _parentState = getState();
AsmExprContext _localctx = new AsmExprContext(_ctx, _parentState);
AsmExprContext _prevctx = _localctx;
- int _startState = 80;
- enterRecursionRule(_localctx, 80, RULE_asmExpr, _p);
+ int _startState = 84;
+ enterRecursionRule(_localctx, 84, RULE_asmExpr, _p);
int _la;
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(709);
+ setState(736);
_errHandler.sync(this);
switch (_input.LA(1)) {
- case T__43:
+ case T__46:
{
_localctx = new AsmExprParContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(696);
- match(T__43);
- setState(697);
+ setState(723);
+ match(T__46);
+ setState(724);
asmExpr(0);
- setState(698);
- match(T__44);
+ setState(725);
+ match(T__47);
}
break;
- case T__53:
- case T__54:
- case T__62:
- case T__63:
+ case T__56:
+ case T__57:
+ case T__65:
+ case T__66:
{
_localctx = new AsmExprUnaryContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(700);
+ setState(727);
_la = _input.LA(1);
- if ( !(((((_la - 54)) & ~0x3f) == 0 && ((1L << (_la - 54)) & ((1L << (T__53 - 54)) | (1L << (T__54 - 54)) | (1L << (T__62 - 54)) | (1L << (T__63 - 54)))) != 0)) ) {
+ if ( !(((((_la - 57)) & ~0x3f) == 0 && ((1L << (_la - 57)) & ((1L << (T__56 - 57)) | (1L << (T__57 - 57)) | (1L << (T__65 - 57)) | (1L << (T__66 - 57)))) != 0)) ) {
_errHandler.recoverInline(this);
}
else {
@@ -5767,7 +5950,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(701);
+ setState(728);
asmExpr(8);
}
break;
@@ -5776,7 +5959,7 @@ public class KickCParser extends Parser {
_localctx = new AsmExprLabelContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(702);
+ setState(729);
match(NAME);
}
break;
@@ -5785,7 +5968,7 @@ public class KickCParser extends Parser {
_localctx = new AsmExprLabelRelContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(703);
+ setState(730);
match(ASMREL);
}
break;
@@ -5794,11 +5977,11 @@ public class KickCParser extends Parser {
_localctx = new AsmExprReplaceContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(704);
+ setState(731);
match(T__7);
- setState(705);
+ setState(732);
match(NAME);
- setState(706);
+ setState(733);
match(T__8);
}
break;
@@ -5807,7 +5990,7 @@ public class KickCParser extends Parser {
_localctx = new AsmExprIntContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(707);
+ setState(734);
match(NUMBER);
}
break;
@@ -5816,7 +5999,7 @@ public class KickCParser extends Parser {
_localctx = new AsmExprCharContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(708);
+ setState(735);
match(CHAR);
}
break;
@@ -5824,28 +6007,28 @@ public class KickCParser extends Parser {
throw new NoViableAltException(this);
}
_ctx.stop = _input.LT(-1);
- setState(725);
+ setState(752);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,69,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,72,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
if ( _parseListeners!=null ) triggerExitRuleEvent();
_prevctx = _localctx;
{
- setState(723);
+ setState(750);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,68,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,71,_ctx) ) {
case 1:
{
_localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_asmExpr);
- setState(711);
+ setState(738);
if (!(precpred(_ctx, 10))) throw new FailedPredicateException(this, "precpred(_ctx, 10)");
{
- setState(712);
- match(T__47);
+ setState(739);
+ match(T__50);
}
- setState(713);
+ setState(740);
asmExpr(11);
}
break;
@@ -5853,11 +6036,11 @@ public class KickCParser extends Parser {
{
_localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_asmExpr);
- setState(714);
+ setState(741);
if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)");
- setState(715);
+ setState(742);
_la = _input.LA(1);
- if ( !(_la==T__58 || _la==T__59) ) {
+ if ( !(_la==T__61 || _la==T__62) ) {
_errHandler.recoverInline(this);
}
else {
@@ -5865,7 +6048,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(716);
+ setState(743);
asmExpr(10);
}
break;
@@ -5873,11 +6056,11 @@ public class KickCParser extends Parser {
{
_localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_asmExpr);
- setState(717);
+ setState(744);
if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)");
- setState(718);
+ setState(745);
_la = _input.LA(1);
- if ( !(_la==T__42 || _la==T__60) ) {
+ if ( !(_la==T__45 || _la==T__63) ) {
_errHandler.recoverInline(this);
}
else {
@@ -5885,7 +6068,7 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(719);
+ setState(746);
asmExpr(8);
}
break;
@@ -5893,11 +6076,11 @@ public class KickCParser extends Parser {
{
_localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_asmExpr);
- setState(720);
+ setState(747);
if (!(precpred(_ctx, 6))) throw new FailedPredicateException(this, "precpred(_ctx, 6)");
- setState(721);
+ setState(748);
_la = _input.LA(1);
- if ( !(_la==T__53 || _la==T__54) ) {
+ if ( !(_la==T__56 || _la==T__57) ) {
_errHandler.recoverInline(this);
}
else {
@@ -5905,16 +6088,16 @@ public class KickCParser extends Parser {
_errHandler.reportMatch(this);
consume();
}
- setState(722);
+ setState(749);
asmExpr(7);
}
break;
}
}
}
- setState(727);
+ setState(754);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,69,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,72,_ctx);
}
}
}
@@ -5933,15 +6116,15 @@ public class KickCParser extends Parser {
switch (ruleIndex) {
case 9:
return declVariableList_sempred((DeclVariableListContext)_localctx, predIndex);
- case 20:
+ case 22:
return typeDecl_sempred((TypeDeclContext)_localctx, predIndex);
- case 26:
- return enumMemberList_sempred((EnumMemberListContext)_localctx, predIndex);
case 28:
+ return enumMemberList_sempred((EnumMemberListContext)_localctx, predIndex);
+ case 30:
return commaExpr_sempred((CommaExprContext)_localctx, predIndex);
- case 29:
+ case 31:
return expr_sempred((ExprContext)_localctx, predIndex);
- case 40:
+ case 42:
return asmExpr_sempred((AsmExprContext)_localctx, predIndex);
}
return true;
@@ -6032,294 +6215,300 @@ public class KickCParser extends Parser {
}
public static final String _serializedATN =
- "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3q\u02db\4\2\t\2\4"+
+ "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3t\u02f6\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"+
"\4\32\t\32\4\33\t\33\4\34\t\34\4\35\t\35\4\36\t\36\4\37\t\37\4 \t \4!"+
- "\t!\4\"\t\"\4#\t#\4$\t$\4%\t%\4&\t&\4\'\t\'\4(\t(\4)\t)\4*\t*\3\2\3\2"+
- "\3\2\3\2\3\3\3\3\3\3\3\4\7\4]\n\4\f\4\16\4`\13\4\3\5\3\5\3\5\3\6\6\6f"+
- "\n\6\r\6\16\6g\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7"+
- "\3\7\5\7y\n\7\3\b\3\b\3\b\3\t\7\t\177\n\t\f\t\16\t\u0082\13\t\3\t\3\t"+
- "\7\t\u0086\n\t\f\t\16\t\u0089\13\t\3\n\3\n\3\n\3\13\3\13\3\13\3\13\3\13"+
- "\3\13\7\13\u0094\n\13\f\13\16\13\u0097\13\13\3\f\3\f\3\f\5\f\u009c\n\f"+
- "\3\f\3\f\3\f\5\f\u00a1\n\f\3\r\3\r\3\r\3\r\5\r\u00a7\n\r\3\r\3\r\3\r\5"+
- "\r\u00ac\n\r\3\r\3\r\3\16\3\16\3\16\7\16\u00b3\n\16\f\16\16\16\u00b6\13"+
- "\16\3\17\3\17\3\17\3\17\5\17\u00bc\n\17\3\20\3\20\3\20\5\20\u00c1\n\20"+
- "\3\20\3\20\3\20\3\20\7\20\u00c7\n\20\f\20\16\20\u00ca\13\20\3\20\3\20"+
- "\3\20\3\20\5\20\u00d0\n\20\3\20\3\20\3\20\3\20\3\20\3\20\5\20\u00d8\n"+
- "\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\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\u00f2\n\20"+
- "\3\20\3\20\3\20\5\20\u00f7\n\20\3\21\3\21\3\21\3\21\3\21\3\21\3\21\3\21"+
- "\3\21\3\21\3\21\5\21\u0104\n\21\3\21\3\21\3\21\3\21\3\21\3\21\5\21\u010c"+
- "\n\21\3\21\3\21\3\21\3\21\3\21\7\21\u0113\n\21\f\21\16\21\u0116\13\21"+
- "\3\21\5\21\u0119\n\21\3\22\6\22\u011c\n\22\r\22\16\22\u011d\3\23\3\23"+
- "\3\23\3\23\3\23\5\23\u0125\n\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23"+
- "\3\23\3\23\3\23\5\23\u0132\n\23\3\23\7\23\u0135\n\23\f\23\16\23\u0138"+
- "\13\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\7\23\u0141\n\23\f\23\16\23\u0144"+
- "\13\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\7\23\u014f\n\23\f"+
- "\23\16\23\u0152\13\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\5\23\u015c"+
- "\n\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\5\23\u0165\n\23\3\23\3\23\3\23"+
- "\3\23\3\23\5\23\u016c\n\23\3\24\3\24\3\24\3\24\3\24\5\24\u0173\n\24\3"+
- "\24\5\24\u0176\n\24\3\24\3\24\3\24\3\24\3\24\3\24\5\24\u017e\n\24\3\25"+
- "\5\25\u0181\n\25\3\25\5\25\u0184\n\25\3\26\3\26\3\26\3\26\3\26\3\26\3"+
- "\26\3\26\5\26\u018e\n\26\3\26\3\26\3\26\3\26\3\26\5\26\u0195\n\26\3\26"+
- "\3\26\3\26\3\26\3\26\5\26\u019c\n\26\3\26\3\26\3\26\3\26\7\26\u01a2\n"+
- "\26\f\26\16\26\u01a5\13\26\3\27\3\27\3\27\3\30\3\30\5\30\u01ac\n\30\3"+
- "\30\3\30\6\30\u01b0\n\30\r\30\16\30\u01b1\3\30\3\30\3\31\3\31\3\31\3\32"+
- "\3\32\3\32\3\33\3\33\5\33\u01be\n\33\3\33\3\33\3\33\3\33\3\34\3\34\3\34"+
- "\3\34\3\34\3\34\7\34\u01ca\n\34\f\34\16\34\u01cd\13\34\3\35\3\35\3\35"+
- "\5\35\u01d2\n\35\3\36\3\36\3\36\3\36\3\36\3\36\7\36\u01da\n\36\f\36\16"+
- "\36\u01dd\13\36\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\5\37\u01e8"+
- "\n\37\3\37\3\37\3\37\3\37\3\37\3\37\5\37\u01f0\n\37\3\37\3\37\3\37\3\37"+
- "\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37"+
- "\3\37\7\37\u0205\n\37\f\37\16\37\u0208\13\37\3\37\3\37\3\37\3\37\3\37"+
- "\6\37\u020f\n\37\r\37\16\37\u0210\3\37\3\37\5\37\u0215\n\37\3\37\3\37"+
- "\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37"+
- "\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37"+
- "\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37"+
- "\3\37\3\37\3\37\3\37\5\37\u0247\n\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37"+
- "\3\37\7\37\u0251\n\37\f\37\16\37\u0254\13\37\3 \3 \3 \7 \u0259\n \f \16"+
- " \u025c\13 \3!\3!\5!\u0260\n!\3!\3!\3\"\3\"\3\"\3\"\7\"\u0268\n\"\f\""+
- "\16\"\u026b\13\"\3\"\3\"\3#\3#\3#\3#\3#\3#\3#\3#\3#\3#\3#\3#\3#\5#\u027c"+
- "\n#\5#\u027e\n#\3$\7$\u0281\n$\f$\16$\u0284\13$\3%\3%\3%\5%\u0289\n%\3"+
- "&\3&\3&\3&\5&\u028f\n&\3&\5&\u0292\n&\3\'\3\'\5\'\u0296\n\'\3(\3(\3(\3"+
- "(\7(\u029c\n(\f(\16(\u029f\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)\u02b8\n)\3*\3*\3*\3*\3*\3*\3*\3*\3*"+
- "\3*\3*\3*\3*\3*\5*\u02c8\n*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\3*\7*\u02d6"+
- "\n*\f*\16*\u02d9\13*\3*\2\b\24*\66:@BDFHJLNPR\2\r\3\2+,\3\2\66\67\3\28<\3"+
- "\2AB\3\2=>\4\2--?@\3\289\3\2AF\3\2LU\4\289AB\4\2--??\2\u0344\2T\3\2\2"+
- "\2\4X\3\2\2\2\6^\3\2\2\2\ba\3\2\2\2\ne\3\2\2\2\fx\3\2\2\2\16z\3\2\2\2"+
- "\20\u0080\3\2\2\2\22\u008a\3\2\2\2\24\u008d\3\2\2\2\26\u00a0\3\2\2\2\30"+
- "\u00a2\3\2\2\2\32\u00af\3\2\2\2\34\u00bb\3\2\2\2\36\u00f6\3\2\2\2 \u0118"+
- "\3\2\2\2\"\u011b\3\2\2\2$\u016b\3\2\2\2&\u017d\3\2\2\2(\u0183\3\2\2\2"+
- "*\u0194\3\2\2\2,\u01a6\3\2\2\2.\u01a9\3\2\2\2\60\u01b5\3\2\2\2\62\u01b8"+
- "\3\2\2\2\64\u01bb\3\2\2\2\66\u01c3\3\2\2\28\u01ce\3\2\2\2:\u01d3\3\2\2"+
- "\2<\u0214\3\2\2\2>\u0255\3\2\2\2@\u025d\3\2\2\2B\u0263\3\2\2\2D\u027d"+
- "\3\2\2\2F\u0282\3\2\2\2H\u0288\3\2\2\2J\u0291\3\2\2\2L\u0293\3\2\2\2N"+
- "\u0297\3\2\2\2P\u02b7\3\2\2\2R\u02c7\3\2\2\2TU\5\6\4\2UV\5\n\6\2VW\7\2"+
- "\2\3W\3\3\2\2\2XY\5F$\2YZ\7\2\2\3Z\5\3\2\2\2[]\5\b\5\2\\[\3\2\2\2]`\3"+
- "\2\2\2^\\\3\2\2\2^_\3\2\2\2_\7\3\2\2\2`^\3\2\2\2ab\7\3\2\2bc\7a\2\2c\t"+
- "\3\2\2\2df\5\f\7\2ed\3\2\2\2fg\3\2\2\2ge\3\2\2\2gh\3\2\2\2h\13\3\2\2\2"+
- "ij\5\22\n\2jk\7\4\2\2ky\3\2\2\2lm\5.\30\2mn\7\4\2\2ny\3\2\2\2op\5\64\33"+
- "\2pq\7\4\2\2qy\3\2\2\2ry\5\30\r\2sy\5@!\2ty\5\36\20\2uv\5\16\b\2vw\7\4"+
- "\2\2wy\3\2\2\2xi\3\2\2\2xl\3\2\2\2xo\3\2\2\2xr\3\2\2\2xs\3\2\2\2xt\3\2"+
- "\2\2xu\3\2\2\2y\r\3\2\2\2z{\7\5\2\2{|\5\22\n\2|\17\3\2\2\2}\177\5 \21"+
- "\2~}\3\2\2\2\177\u0082\3\2\2\2\u0080~\3\2\2\2\u0080\u0081\3\2\2\2\u0081"+
- "\u0083\3\2\2\2\u0082\u0080\3\2\2\2\u0083\u0087\5*\26\2\u0084\u0086\5 "+
- "\21\2\u0085\u0084\3\2\2\2\u0086\u0089\3\2\2\2\u0087\u0085\3\2\2\2\u0087"+
- "\u0088\3\2\2\2\u0088\21\3\2\2\2\u0089\u0087\3\2\2\2\u008a\u008b\5\20\t"+
- "\2\u008b\u008c\5\24\13\2\u008c\23\3\2\2\2\u008d\u008e\b\13\1\2\u008e\u008f"+
- "\5\26\f\2\u008f\u0095\3\2\2\2\u0090\u0091\f\3\2\2\u0091\u0092\7\6\2\2"+
- "\u0092\u0094\5\26\f\2\u0093\u0090\3\2\2\2\u0094\u0097\3\2\2\2\u0095\u0093"+
- "\3\2\2\2\u0095\u0096\3\2\2\2\u0096\25\3\2\2\2\u0097\u0095\3\2\2\2\u0098"+
- "\u009b\7m\2\2\u0099\u009a\7\7\2\2\u009a\u009c\5<\37\2\u009b\u0099\3\2"+
- "\2\2\u009b\u009c\3\2\2\2\u009c\u00a1\3\2\2\2\u009d\u009e\7m\2\2\u009e"+
- "\u009f\7\7\2\2\u009f\u00a1\5@!\2\u00a0\u0098\3\2\2\2\u00a0\u009d\3\2\2"+
- "\2\u00a1\27\3\2\2\2\u00a2\u00a3\5\20\t\2\u00a3\u00a4\7m\2\2\u00a4\u00a6"+
- "\7\b\2\2\u00a5\u00a7\5\32\16\2\u00a6\u00a5\3\2\2\2\u00a6\u00a7\3\2\2\2"+
- "\u00a7\u00a8\3\2\2\2\u00a8\u00a9\7\t\2\2\u00a9\u00ab\7\n\2\2\u00aa\u00ac"+
- "\5\"\22\2\u00ab\u00aa\3\2\2\2\u00ab\u00ac\3\2\2\2\u00ac\u00ad\3\2\2\2"+
- "\u00ad\u00ae\7\13\2\2\u00ae\31\3\2\2\2\u00af\u00b4\5\34\17\2\u00b0\u00b1"+
- "\7\6\2\2\u00b1\u00b3\5\34\17\2\u00b2\u00b0\3\2\2\2\u00b3\u00b6\3\2\2\2"+
- "\u00b4\u00b2\3\2\2\2\u00b4\u00b5\3\2\2\2\u00b5\33\3\2\2\2\u00b6\u00b4"+
- "\3\2\2\2\u00b7\u00b8\5\20\t\2\u00b8\u00b9\7m\2\2\u00b9\u00bc\3\2\2\2\u00ba"+
- "\u00bc\7`\2\2\u00bb\u00b7\3\2\2\2\u00bb\u00ba\3\2\2\2\u00bc\35\3\2\2\2"+
- "\u00bd\u00be\7\f\2\2\u00be\u00c1\7\r\2\2\u00bf\u00c1\7\16\2\2\u00c0\u00bd"+
- "\3\2\2\2\u00c0\u00bf\3\2\2\2\u00c1\u00c2\3\2\2\2\u00c2\u00c3\7\b\2\2\u00c3"+
- "\u00c8\7d\2\2\u00c4\u00c5\7\6\2\2\u00c5\u00c7\7d\2\2\u00c6\u00c4\3\2\2"+
- "\2\u00c7\u00ca\3\2\2\2\u00c8\u00c6\3\2\2\2\u00c8\u00c9\3\2\2\2\u00c9\u00cb"+
- "\3\2\2\2\u00ca\u00c8\3\2\2\2\u00cb\u00f7\7\t\2\2\u00cc\u00cd\7\f\2\2\u00cd"+
- "\u00d0\7\17\2\2\u00ce\u00d0\7\20\2\2\u00cf\u00cc\3\2\2\2\u00cf\u00ce\3"+
- "\2\2\2\u00d0\u00d1\3\2\2\2\u00d1\u00d2\7\b\2\2\u00d2\u00d3\7d\2\2\u00d3"+
- "\u00f7\7\t\2\2\u00d4\u00d5\7\f\2\2\u00d5\u00d8\7\21\2\2\u00d6\u00d8\7"+
- "\22\2\2\u00d7\u00d4\3\2\2\2\u00d7\u00d6\3\2\2\2\u00d8\u00d9\3\2\2\2\u00d9"+
- "\u00da\7\b\2\2\u00da\u00db\7m\2\2\u00db\u00f7\7\t\2\2\u00dc\u00dd\7\f"+
- "\2\2\u00dd\u00de\7\23\2\2\u00de\u00df\3\2\2\2\u00df\u00e0\7\b\2\2\u00e0"+
- "\u00e1\7a\2\2\u00e1\u00f7\7\t\2\2\u00e2\u00e3\7\f\2\2\u00e3\u00e4\7\24"+
- "\2\2\u00e4\u00e5\3\2\2\2\u00e5\u00e6\7\b\2\2\u00e6\u00e7\7m\2\2\u00e7"+
- "\u00f7\7\t\2\2\u00e8\u00e9\7\f\2\2\u00e9\u00ea\7\25\2\2\u00ea\u00eb\3"+
- "\2\2\2\u00eb\u00ec\7\b\2\2\u00ec\u00ed\7m\2\2\u00ed\u00f7\7\t\2\2\u00ee"+
- "\u00ef\7\f\2\2\u00ef\u00f2\7\26\2\2\u00f0\u00f2\7\27\2\2\u00f1\u00ee\3"+
- "\2\2\2\u00f1\u00f0\3\2\2\2\u00f2\u00f3\3\2\2\2\u00f3\u00f4\7\b\2\2\u00f4"+
- "\u00f5\7m\2\2\u00f5\u00f7\7\t\2\2\u00f6\u00c0\3\2\2\2\u00f6\u00cf\3\2"+
- "\2\2\u00f6\u00d7\3\2\2\2\u00f6\u00dc\3\2\2\2\u00f6\u00e2\3\2\2\2\u00f6"+
- "\u00e8\3\2\2\2\u00f6\u00f1\3\2\2\2\u00f7\37\3\2\2\2\u00f8\u0119\7\30\2"+
- "\2\u00f9\u0119\7\31\2\2\u00fa\u0119\7\32\2\2\u00fb\u00fc\7\33\2\2\u00fc"+
- "\u00fd\7\b\2\2\u00fd\u00fe\7d\2\2\u00fe\u0119\7\t\2\2\u00ff\u0103\7\34"+
- "\2\2\u0100\u0101\7\b\2\2\u0101\u0102\7m\2\2\u0102\u0104\7\t\2\2\u0103"+
- "\u0100\3\2\2\2\u0103\u0104\3\2\2\2\u0104\u0119\3\2\2\2\u0105\u0119\7\35"+
- "\2\2\u0106\u0119\7\36\2\2\u0107\u010b\7\37\2\2\u0108\u0109\7\b\2\2\u0109"+
- "\u010a\7m\2\2\u010a\u010c\7\t\2\2\u010b\u0108\3\2\2\2\u010b\u010c\3\2"+
- "\2\2\u010c\u0119\3\2\2\2\u010d\u010e\7\r\2\2\u010e\u010f\7\b\2\2\u010f"+
- "\u0114\7d\2\2\u0110\u0111\7\6\2\2\u0111\u0113\7d\2\2\u0112\u0110\3\2\2"+
- "\2\u0113\u0116\3\2\2\2\u0114\u0112\3\2\2\2\u0114\u0115\3\2\2\2\u0115\u0117"+
- "\3\2\2\2\u0116\u0114\3\2\2\2\u0117\u0119\7\t\2\2\u0118\u00f8\3\2\2\2\u0118"+
- "\u00f9\3\2\2\2\u0118\u00fa\3\2\2\2\u0118\u00fb\3\2\2\2\u0118\u00ff\3\2"+
- "\2\2\u0118\u0105\3\2\2\2\u0118\u0106\3\2\2\2\u0118\u0107\3\2\2\2\u0118"+
- "\u010d\3\2\2\2\u0119!\3\2\2\2\u011a\u011c\5$\23\2\u011b\u011a\3\2\2\2"+
- "\u011c\u011d\3\2\2\2\u011d\u011b\3\2\2\2\u011d\u011e\3\2\2\2\u011e#\3"+
- "\2\2\2\u011f\u0120\5\22\n\2\u0120\u0121\7\4\2\2\u0121\u016c\3\2\2\2\u0122"+
- "\u0124\7\n\2\2\u0123\u0125\5\"\22\2\u0124\u0123\3\2\2\2\u0124\u0125\3"+
- "\2\2\2\u0125\u0126\3\2\2\2\u0126\u016c\7\13\2\2\u0127\u0128\5:\36\2\u0128"+
- "\u0129\7\4\2\2\u0129\u016c\3\2\2\2\u012a\u012b\7 \2\2\u012b\u012c\7\b"+
- "\2\2\u012c\u012d\5:\36\2\u012d\u012e\7\t\2\2\u012e\u0131\5$\23\2\u012f"+
- "\u0130\7!\2\2\u0130\u0132\5$\23\2\u0131\u012f\3\2\2\2\u0131\u0132\3\2"+
- "\2\2\u0132\u016c\3\2\2\2\u0133\u0135\5 \21\2\u0134\u0133\3\2\2\2\u0135"+
- "\u0138\3\2\2\2\u0136\u0134\3\2\2\2\u0136\u0137\3\2\2\2\u0137\u0139\3\2"+
- "\2\2\u0138\u0136\3\2\2\2\u0139\u013a\7\"\2\2\u013a\u013b\7\b\2\2\u013b"+
- "\u013c\5:\36\2\u013c\u013d\7\t\2\2\u013d\u013e\5$\23\2\u013e\u016c\3\2"+
- "\2\2\u013f\u0141\5 \21\2\u0140\u013f\3\2\2\2\u0141\u0144\3\2\2\2\u0142"+
- "\u0140\3\2\2\2\u0142\u0143\3\2\2\2\u0143\u0145\3\2\2\2\u0144\u0142\3\2"+
- "\2\2\u0145\u0146\7#\2\2\u0146\u0147\5$\23\2\u0147\u0148\7\"\2\2\u0148"+
- "\u0149\7\b\2\2\u0149\u014a\5:\36\2\u014a\u014b\7\t\2\2\u014b\u014c\7\4"+
- "\2\2\u014c\u016c\3\2\2\2\u014d\u014f\5 \21\2\u014e\u014d\3\2\2\2\u014f"+
- "\u0152\3\2\2\2\u0150\u014e\3\2\2\2\u0150\u0151\3\2\2\2\u0151\u0153\3\2"+
- "\2\2\u0152\u0150\3\2\2\2\u0153\u0154\7$\2\2\u0154\u0155\7\b\2\2\u0155"+
- "\u0156\5&\24\2\u0156\u0157\7\t\2\2\u0157\u0158\5$\23\2\u0158\u016c\3\2"+
- "\2\2\u0159\u015b\7%\2\2\u015a\u015c\5:\36\2\u015b\u015a\3\2\2\2\u015b"+
- "\u015c\3\2\2\2\u015c\u015d\3\2\2\2\u015d\u016c\7\4\2\2\u015e\u015f\7&"+
- "\2\2\u015f\u016c\7\4\2\2\u0160\u0161\7\'\2\2\u0161\u016c\7\4\2\2\u0162"+
- "\u0164\7(\2\2\u0163\u0165\5B\"\2\u0164\u0163\3\2\2\2\u0164\u0165\3\2\2"+
- "\2\u0165\u0166\3\2\2\2\u0166\u0167\7\n\2\2\u0167\u0168\5F$\2\u0168\u0169"+
- "\7\13\2\2\u0169\u016c\3\2\2\2\u016a\u016c\5@!\2\u016b\u011f\3\2\2\2\u016b"+
- "\u0122\3\2\2\2\u016b\u0127\3\2\2\2\u016b\u012a\3\2\2\2\u016b\u0136\3\2"+
- "\2\2\u016b\u0142\3\2\2\2\u016b\u0150\3\2\2\2\u016b\u0159\3\2\2\2\u016b"+
- "\u015e\3\2\2\2\u016b\u0160\3\2\2\2\u016b\u0162\3\2\2\2\u016b\u016a\3\2"+
- "\2\2\u016c%\3\2\2\2\u016d\u016e\5(\25\2\u016e\u016f\7\4\2\2\u016f\u0170"+
- "\5:\36\2\u0170\u0172\7\4\2\2\u0171\u0173\5:\36\2\u0172\u0171\3\2\2\2\u0172"+
- "\u0173\3\2\2\2\u0173\u017e\3\2\2\2\u0174\u0176\5\20\t\2\u0175\u0174\3"+
- "\2\2\2\u0175\u0176\3\2\2\2\u0176\u0177\3\2\2\2\u0177\u0178\7m\2\2\u0178"+
- "\u0179\7)\2\2\u0179\u017a\5<\37\2\u017a\u017b\7*\2\2\u017b\u017c\5<\37"+
- "\2\u017c\u017e\3\2\2\2\u017d\u016d\3\2\2\2\u017d\u0175\3\2\2\2\u017e\'"+
- "\3\2\2\2\u017f\u0181\5\22\n\2\u0180\u017f\3\2\2\2\u0180\u0181\3\2\2\2"+
- "\u0181\u0184\3\2\2\2\u0182\u0184\5:\36\2\u0183\u0180\3\2\2\2\u0183\u0182"+
- "\3\2\2\2\u0184)\3\2\2\2\u0185\u0186\b\26\1\2\u0186\u0187\7\b\2\2\u0187"+
- "\u0188\5*\26\2\u0188\u0189\7\t\2\2\u0189\u0195\3\2\2\2\u018a\u0195\7`"+
- "\2\2\u018b\u018d\t\2\2\2\u018c\u018e\7`\2\2\u018d\u018c\3\2\2\2\u018d"+
- "\u018e\3\2\2\2\u018e\u0195\3\2\2\2\u018f\u0195\5.\30\2\u0190\u0195\5,"+
- "\27\2\u0191\u0195\5\64\33\2\u0192\u0195\5\62\32\2\u0193\u0195\7m\2\2\u0194"+
- "\u0185\3\2\2\2\u0194\u018a\3\2\2\2\u0194\u018b\3\2\2\2\u0194\u018f\3\2"+
- "\2\2\u0194\u0190\3\2\2\2\u0194\u0191\3\2\2\2\u0194\u0192\3\2\2\2\u0194"+
- "\u0193\3\2\2\2\u0195\u01a3\3\2\2\2\u0196\u0197\f\n\2\2\u0197\u01a2\7-"+
- "\2\2\u0198\u0199\f\t\2\2\u0199\u019b\7.\2\2\u019a\u019c\5<\37\2\u019b"+
- "\u019a\3\2\2\2\u019b\u019c\3\2\2\2\u019c\u019d\3\2\2\2\u019d\u01a2\7/"+
- "\2\2\u019e\u019f\f\b\2\2\u019f\u01a0\7\b\2\2\u01a0\u01a2\7\t\2\2\u01a1"+
- "\u0196\3\2\2\2\u01a1\u0198\3\2\2\2\u01a1\u019e\3\2\2\2\u01a2\u01a5\3\2"+
- "\2\2\u01a3\u01a1\3\2\2\2\u01a3\u01a4\3\2\2\2\u01a4+\3\2\2\2\u01a5\u01a3"+
- "\3\2\2\2\u01a6\u01a7\7\60\2\2\u01a7\u01a8\7m\2\2\u01a8-\3\2\2\2\u01a9"+
- "\u01ab\7\60\2\2\u01aa\u01ac\7m\2\2\u01ab\u01aa\3\2\2\2\u01ab\u01ac\3\2"+
- "\2\2\u01ac\u01ad\3\2\2\2\u01ad\u01af\7\n\2\2\u01ae\u01b0\5\60\31\2\u01af"+
- "\u01ae\3\2\2\2\u01b0\u01b1\3\2\2\2\u01b1\u01af\3\2\2\2\u01b1\u01b2\3\2"+
- "\2\2\u01b2\u01b3\3\2\2\2\u01b3\u01b4\7\13\2\2\u01b4/\3\2\2\2\u01b5\u01b6"+
- "\5\22\n\2\u01b6\u01b7\7\4\2\2\u01b7\61\3\2\2\2\u01b8\u01b9\7\61\2\2\u01b9"+
- "\u01ba\7m\2\2\u01ba\63\3\2\2\2\u01bb\u01bd\7\61\2\2\u01bc\u01be\7m\2\2"+
- "\u01bd\u01bc\3\2\2\2\u01bd\u01be\3\2\2\2\u01be\u01bf\3\2\2\2\u01bf\u01c0"+
- "\7\n\2\2\u01c0\u01c1\5\66\34\2\u01c1\u01c2\7\13\2\2\u01c2\65\3\2\2\2\u01c3"+
- "\u01c4\b\34\1\2\u01c4\u01c5\58\35\2\u01c5\u01cb\3\2\2\2\u01c6\u01c7\f"+
- "\3\2\2\u01c7\u01c8\7\6\2\2\u01c8\u01ca\58\35\2\u01c9\u01c6\3\2\2\2\u01ca"+
- "\u01cd\3\2\2\2\u01cb\u01c9\3\2\2\2\u01cb\u01cc\3\2\2\2\u01cc\67\3\2\2"+
- "\2\u01cd\u01cb\3\2\2\2\u01ce\u01d1\7m\2\2\u01cf\u01d0\7\7\2\2\u01d0\u01d2"+
- "\5<\37\2\u01d1\u01cf\3\2\2\2\u01d1\u01d2\3\2\2\2\u01d29\3\2\2\2\u01d3"+
- "\u01d4\b\36\1\2\u01d4\u01d5\5<\37\2\u01d5\u01db\3\2\2\2\u01d6\u01d7\f"+
- "\3\2\2\u01d7\u01d8\7\6\2\2\u01d8\u01da\5<\37\2\u01d9\u01d6\3\2\2\2\u01da"+
- "\u01dd\3\2\2\2\u01db\u01d9\3\2\2\2\u01db\u01dc\3\2\2\2\u01dc;\3\2\2\2"+
- "\u01dd\u01db\3\2\2\2\u01de\u01df\b\37\1\2\u01df\u01e0\7\b\2\2\u01e0\u01e1"+
- "\5:\36\2\u01e1\u01e2\7\t\2\2\u01e2\u0215\3\2\2\2\u01e3\u01e4\7\64\2\2"+
- "\u01e4\u01e7\7\b\2\2\u01e5\u01e8\5<\37\2\u01e6\u01e8\5*\26\2\u01e7\u01e5"+
- "\3\2\2\2\u01e7\u01e6\3\2\2\2\u01e8\u01e9\3\2\2\2\u01e9\u01ea\7\t\2\2\u01ea"+
- "\u0215\3\2\2\2\u01eb\u01ec\7\65\2\2\u01ec\u01ef\7\b\2\2\u01ed\u01f0\5"+
- "<\37\2\u01ee\u01f0\5*\26\2\u01ef\u01ed\3\2\2\2\u01ef\u01ee\3\2\2\2\u01f0"+
- "\u01f1\3\2\2\2\u01f1\u01f2\7\t\2\2\u01f2\u0215\3\2\2\2\u01f3\u01f4\7\b"+
- "\2\2\u01f4\u01f5\5*\26\2\u01f5\u01f6\7\t\2\2\u01f6\u01f7\5<\37\32\u01f7"+
- "\u0215\3\2\2\2\u01f8\u01f9\t\3\2\2\u01f9\u0215\5<\37\31\u01fa\u01fb\7"+
- "-\2\2\u01fb\u0215\5<\37\27\u01fc\u01fd\t\4\2\2\u01fd\u0215\5<\37\26\u01fe"+
- "\u01ff\t\5\2\2\u01ff\u0215\5<\37\22\u0200\u0201\7\n\2\2\u0201\u0206\5"+
- "<\37\2\u0202\u0203\7\6\2\2\u0203\u0205\5<\37\2\u0204\u0202\3\2\2\2\u0205"+
- "\u0208\3\2\2\2\u0206\u0204\3\2\2\2\u0206\u0207\3\2\2\2\u0207\u0209\3\2"+
- "\2\2\u0208\u0206\3\2\2\2\u0209\u020a\7\13\2\2\u020a\u0215\3\2\2\2\u020b"+
- "\u0215\7m\2\2\u020c\u0215\7d\2\2\u020d\u020f\7a\2\2\u020e\u020d\3\2\2"+
- "\2\u020f\u0210\3\2\2\2\u0210\u020e\3\2\2\2\u0210\u0211\3\2\2\2\u0211\u0215"+
- "\3\2\2\2\u0212\u0215\7b\2\2\u0213\u0215\7c\2\2\u0214\u01de\3\2\2\2\u0214"+
- "\u01e3\3\2\2\2\u0214\u01eb\3\2\2\2\u0214\u01f3\3\2\2\2\u0214\u01f8\3\2"+
- "\2\2\u0214\u01fa\3\2\2\2\u0214\u01fc\3\2\2\2\u0214\u01fe\3\2\2\2\u0214"+
- "\u0200\3\2\2\2\u0214\u020b\3\2\2\2\u0214\u020c\3\2\2\2\u0214\u020e\3\2"+
- "\2\2\u0214\u0212\3\2\2\2\u0214\u0213\3\2\2\2\u0215\u0252\3\2\2\2\u0216"+
- "\u0217\f\25\2\2\u0217\u0218\t\6\2\2\u0218\u0251\5<\37\26\u0219\u021a\f"+
- "\24\2\2\u021a\u021b\t\7\2\2\u021b\u0251\5<\37\25\u021c\u021d\f\23\2\2"+
- "\u021d\u021e\t\b\2\2\u021e\u0251\5<\37\24\u021f\u0220\f\21\2\2\u0220\u0221"+
- "\t\t\2\2\u0221\u0251\5<\37\22\u0222\u0223\f\20\2\2\u0223\u0224\7;\2\2"+
- "\u0224\u0251\5<\37\21\u0225\u0226\f\17\2\2\u0226\u0227\7G\2\2\u0227\u0251"+
- "\5<\37\20\u0228\u0229\f\16\2\2\u0229\u022a\7H\2\2\u022a\u0251\5<\37\17"+
- "\u022b\u022c\f\r\2\2\u022c\u022d\7I\2\2\u022d\u0251\5<\37\16\u022e\u022f"+
- "\f\f\2\2\u022f\u0230\7J\2\2\u0230\u0251\5<\37\r\u0231\u0232\f\13\2\2\u0232"+
- "\u0233\7K\2\2\u0233\u0234\5<\37\2\u0234\u0235\7)\2\2\u0235\u0236\5<\37"+
- "\f\u0236\u0251\3\2\2\2\u0237\u0238\f\n\2\2\u0238\u0239\7\7\2\2\u0239\u0251"+
- "\5<\37\n\u023a\u023b\f\t\2\2\u023b\u023c\t\n\2\2\u023c\u0251\5<\37\t\u023d"+
- "\u023e\f \2\2\u023e\u023f\7\62\2\2\u023f\u0251\7m\2\2\u0240\u0241\f\37"+
- "\2\2\u0241\u0242\7\63\2\2\u0242\u0251\7m\2\2\u0243\u0244\f\36\2\2\u0244"+
- "\u0246\7\b\2\2\u0245\u0247\5> \2\u0246\u0245\3\2\2\2\u0246\u0247\3\2\2"+
- "\2\u0247\u0248\3\2\2\2\u0248\u0251\7\t\2\2\u0249\u024a\f\33\2\2\u024a"+
- "\u024b\7.\2\2\u024b\u024c\5:\36\2\u024c\u024d\7/\2\2\u024d\u0251\3\2\2"+
- "\2\u024e\u024f\f\30\2\2\u024f\u0251\t\3\2\2\u0250\u0216\3\2\2\2\u0250"+
- "\u0219\3\2\2\2\u0250\u021c\3\2\2\2\u0250\u021f\3\2\2\2\u0250\u0222\3\2"+
- "\2\2\u0250\u0225\3\2\2\2\u0250\u0228\3\2\2\2\u0250\u022b\3\2\2\2\u0250"+
- "\u022e\3\2\2\2\u0250\u0231\3\2\2\2\u0250\u0237\3\2\2\2\u0250\u023a\3\2"+
- "\2\2\u0250\u023d\3\2\2\2\u0250\u0240\3\2\2\2\u0250\u0243\3\2\2\2\u0250"+
- "\u0249\3\2\2\2\u0250\u024e\3\2\2\2\u0251\u0254\3\2\2\2\u0252\u0250\3\2"+
- "\2\2\u0252\u0253\3\2\2\2\u0253=\3\2\2\2\u0254\u0252\3\2\2\2\u0255\u025a"+
- "\5<\37\2\u0256\u0257\7\6\2\2\u0257\u0259\5<\37\2\u0258\u0256\3\2\2\2\u0259"+
- "\u025c\3\2\2\2\u025a\u0258\3\2\2\2\u025a\u025b\3\2\2\2\u025b?\3\2\2\2"+
- "\u025c\u025a\3\2\2\2\u025d\u025f\7V\2\2\u025e\u0260\5B\"\2\u025f\u025e"+
- "\3\2\2\2\u025f\u0260\3\2\2\2\u0260\u0261\3\2\2\2\u0261\u0262\7_\2\2\u0262"+
- "A\3\2\2\2\u0263\u0264\7\b\2\2\u0264\u0269\5D#\2\u0265\u0266\7\6\2\2\u0266"+
- "\u0268\5D#\2\u0267\u0265\3\2\2\2\u0268\u026b\3\2\2\2\u0269\u0267\3\2\2"+
- "\2\u0269\u026a\3\2\2\2\u026a\u026c\3\2\2\2\u026b\u0269\3\2\2\2\u026c\u026d"+
- "\7\t\2\2\u026dC\3\2\2\2\u026e\u026f\7W\2\2\u026f\u027e\7a\2\2\u0270\u0271"+
- "\7X\2\2\u0271\u027e\7m\2\2\u0272\u0273\7Y\2\2\u0273\u027e\7a\2\2\u0274"+
- "\u0275\7Z\2\2\u0275\u027e\5<\37\2\u0276\u0277\7[\2\2\u0277\u027e\5<\37"+
- "\2\u0278\u027b\7\17\2\2\u0279\u027c\7\35\2\2\u027a\u027c\5<\37\2\u027b"+
- "\u0279\3\2\2\2\u027b\u027a\3\2\2\2\u027c\u027e\3\2\2\2\u027d\u026e\3\2"+
- "\2\2\u027d\u0270\3\2\2\2\u027d\u0272\3\2\2\2\u027d\u0274\3\2\2\2\u027d"+
- "\u0276\3\2\2\2\u027d\u0278\3\2\2\2\u027eE\3\2\2\2\u027f\u0281\5H%\2\u0280"+
- "\u027f\3\2\2\2\u0281\u0284\3\2\2\2\u0282\u0280\3\2\2\2\u0282\u0283\3\2"+
- "\2\2\u0283G\3\2\2\2\u0284\u0282\3\2\2\2\u0285\u0289\5J&\2\u0286\u0289"+
- "\5L\'\2\u0287\u0289\5N(\2\u0288\u0285\3\2\2\2\u0288\u0286\3\2\2\2\u0288"+
- "\u0287\3\2\2\2\u0289I\3\2\2\2\u028a\u028b\7m\2\2\u028b\u0292\7)\2\2\u028c"+
- "\u028e\7:\2\2\u028d\u028f\7m\2\2\u028e\u028d\3\2\2\2\u028e\u028f\3\2\2"+
- "\2\u028f\u0290\3\2\2\2\u0290\u0292\7)\2\2\u0291\u028a\3\2\2\2\u0291\u028c"+
- "\3\2\2\2\u0292K\3\2\2\2\u0293\u0295\7^\2\2\u0294\u0296\5P)\2\u0295\u0294"+
- "\3\2\2\2\u0295\u0296\3\2\2\2\u0296M\3\2\2\2\u0297\u0298\7\\\2\2\u0298"+
- "\u029d\5R*\2\u0299\u029a\7\6\2\2\u029a\u029c\5R*\2\u029b\u0299\3\2\2\2"+
- "\u029c\u029f\3\2\2\2\u029d\u029b\3\2\2\2\u029d\u029e\3\2\2\2\u029eO\3"+
- "\2\2\2\u029f\u029d\3\2\2\2\u02a0\u02b8\5R*\2\u02a1\u02a2\7]\2\2\u02a2"+
- "\u02b8\5R*\2\u02a3\u02a4\5R*\2\u02a4\u02a5\7\6\2\2\u02a5\u02a6\7m\2\2"+
- "\u02a6\u02b8\3\2\2\2\u02a7\u02a8\7\b\2\2\u02a8\u02a9\5R*\2\u02a9\u02aa"+
- "\7\t\2\2\u02aa\u02ab\7\6\2\2\u02ab\u02ac\7m\2\2\u02ac\u02b8\3\2\2\2\u02ad"+
- "\u02ae\7\b\2\2\u02ae\u02af\5R*\2\u02af\u02b0\7\6\2\2\u02b0\u02b1\7m\2"+
- "\2\u02b1\u02b2\7\t\2\2\u02b2\u02b8\3\2\2\2\u02b3\u02b4\7\b\2\2\u02b4\u02b5"+
- "\5R*\2\u02b5\u02b6\7\t\2\2\u02b6\u02b8\3\2\2\2\u02b7\u02a0\3\2\2\2\u02b7"+
- "\u02a1\3\2\2\2\u02b7\u02a3\3\2\2\2\u02b7\u02a7\3\2\2\2\u02b7\u02ad\3\2"+
- "\2\2\u02b7\u02b3\3\2\2\2\u02b8Q\3\2\2\2\u02b9\u02ba\b*\1\2\u02ba\u02bb"+
- "\7.\2\2\u02bb\u02bc\5R*\2\u02bc\u02bd\7/\2\2\u02bd\u02c8\3\2\2\2\u02be"+
- "\u02bf\t\13\2\2\u02bf\u02c8\5R*\n\u02c0\u02c8\7m\2\2\u02c1\u02c8\7n\2"+
- "\2\u02c2\u02c3\7\n\2\2\u02c3\u02c4\7m\2\2\u02c4\u02c8\7\13\2\2\u02c5\u02c8"+
- "\7d\2\2\u02c6\u02c8\7b\2\2\u02c7\u02b9\3\2\2\2\u02c7\u02be\3\2\2\2\u02c7"+
- "\u02c0\3\2\2\2\u02c7\u02c1\3\2\2\2\u02c7\u02c2\3\2\2\2\u02c7\u02c5\3\2"+
- "\2\2\u02c7\u02c6\3\2\2\2\u02c8\u02d7\3\2\2\2\u02c9\u02ca\f\f\2\2\u02ca"+
- "\u02cb\7\62\2\2\u02cb\u02d6\5R*\r\u02cc\u02cd\f\13\2\2\u02cd\u02ce\t\6"+
- "\2\2\u02ce\u02d6\5R*\f\u02cf\u02d0\f\t\2\2\u02d0\u02d1\t\f\2\2\u02d1\u02d6"+
- "\5R*\n\u02d2\u02d3\f\b\2\2\u02d3\u02d4\t\b\2\2\u02d4\u02d6\5R*\t\u02d5"+
- "\u02c9\3\2\2\2\u02d5\u02cc\3\2\2\2\u02d5\u02cf\3\2\2\2\u02d5\u02d2\3\2"+
- "\2\2\u02d6\u02d9\3\2\2\2\u02d7\u02d5\3\2\2\2\u02d7\u02d8\3\2\2\2\u02d8"+
- "S\3\2\2\2\u02d9\u02d7\3\2\2\2H^gx\u0080\u0087\u0095\u009b\u00a0\u00a6"+
- "\u00ab\u00b4\u00bb\u00c0\u00c8\u00cf\u00d7\u00f1\u00f6\u0103\u010b\u0114"+
- "\u0118\u011d\u0124\u0131\u0136\u0142\u0150\u015b\u0164\u016b\u0172\u0175"+
- "\u017d\u0180\u0183\u018d\u0194\u019b\u01a1\u01a3\u01ab\u01b1\u01bd\u01cb"+
- "\u01d1\u01db\u01e7\u01ef\u0206\u0210\u0214\u0246\u0250\u0252\u025a\u025f"+
- "\u0269\u027b\u027d\u0282\u0288\u028e\u0291\u0295\u029d\u02b7\u02c7\u02d5"+
- "\u02d7";
+ "\t!\4\"\t\"\4#\t#\4$\t$\4%\t%\4&\t&\4\'\t\'\4(\t(\4)\t)\4*\t*\4+\t+\4"+
+ ",\t,\3\2\3\2\3\2\3\2\3\3\3\3\3\3\3\4\7\4a\n\4\f\4\16\4d\13\4\3\5\3\5\3"+
+ "\5\3\6\6\6j\n\6\r\6\16\6k\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7\3\7"+
+ "\3\7\3\7\3\7\3\7\5\7}\n\7\3\b\3\b\3\b\3\t\7\t\u0083\n\t\f\t\16\t\u0086"+
+ "\13\t\3\t\3\t\7\t\u008a\n\t\f\t\16\t\u008d\13\t\3\n\3\n\3\n\3\13\3\13"+
+ "\3\13\3\13\3\13\3\13\7\13\u0098\n\13\f\13\16\13\u009b\13\13\3\f\3\f\3"+
+ "\f\5\f\u00a0\n\f\3\f\3\f\3\f\5\f\u00a5\n\f\3\r\3\r\3\r\3\r\5\r\u00ab\n"+
+ "\r\3\r\3\r\3\r\5\r\u00b0\n\r\3\r\3\r\3\16\3\16\3\16\7\16\u00b7\n\16\f"+
+ "\16\16\16\u00ba\13\16\3\17\3\17\3\17\3\17\5\17\u00c0\n\17\3\20\3\20\3"+
+ "\20\5\20\u00c5\n\20\3\20\3\20\3\20\3\20\7\20\u00cb\n\20\f\20\16\20\u00ce"+
+ "\13\20\3\20\3\20\3\20\3\20\5\20\u00d4\n\20\3\20\3\20\3\20\3\20\3\20\3"+
+ "\20\5\20\u00dc\n\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20"+
+ "\3\20\3\20\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\u00f6\n\20\3\20\3\20\3\20\5\20\u00fb\n\20\3\21\3\21\3\21\3\21\3"+
+ "\21\3\21\3\21\3\21\3\21\3\21\3\21\5\21\u0108\n\21\3\21\3\21\3\21\3\21"+
+ "\3\21\3\21\5\21\u0110\n\21\3\21\3\21\3\21\3\21\3\21\7\21\u0117\n\21\f"+
+ "\21\16\21\u011a\13\21\3\21\5\21\u011d\n\21\3\22\6\22\u0120\n\22\r\22\16"+
+ "\22\u0121\3\23\3\23\3\23\3\23\3\23\5\23\u0129\n\23\3\23\3\23\3\23\3\23"+
+ "\3\23\3\23\3\23\3\23\3\23\3\23\3\23\5\23\u0136\n\23\3\23\7\23\u0139\n"+
+ "\23\f\23\16\23\u013c\13\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\7\23\u0145"+
+ "\n\23\f\23\16\23\u0148\13\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3"+
+ "\23\7\23\u0153\n\23\f\23\16\23\u0156\13\23\3\23\3\23\3\23\3\23\3\23\3"+
+ "\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\3\23\5\23\u0168\n\23"+
+ "\3\23\3\23\3\23\3\23\3\23\3\23\3\23\5\23\u0171\n\23\3\23\3\23\3\23\3\23"+
+ "\3\23\5\23\u0178\n\23\3\24\6\24\u017b\n\24\r\24\16\24\u017c\3\24\3\24"+
+ "\5\24\u0181\n\24\3\25\3\25\3\25\3\25\5\25\u0187\n\25\3\26\3\26\3\26\3"+
+ "\26\3\26\5\26\u018e\n\26\3\26\5\26\u0191\n\26\3\26\3\26\3\26\3\26\3\26"+
+ "\3\26\5\26\u0199\n\26\3\27\5\27\u019c\n\27\3\27\5\27\u019f\n\27\3\30\3"+
+ "\30\3\30\3\30\3\30\3\30\3\30\3\30\5\30\u01a9\n\30\3\30\3\30\3\30\3\30"+
+ "\3\30\5\30\u01b0\n\30\3\30\3\30\3\30\3\30\3\30\5\30\u01b7\n\30\3\30\3"+
+ "\30\3\30\3\30\7\30\u01bd\n\30\f\30\16\30\u01c0\13\30\3\31\3\31\3\31\3"+
+ "\32\3\32\5\32\u01c7\n\32\3\32\3\32\6\32\u01cb\n\32\r\32\16\32\u01cc\3"+
+ "\32\3\32\3\33\3\33\3\33\3\34\3\34\3\34\3\35\3\35\5\35\u01d9\n\35\3\35"+
+ "\3\35\3\35\3\35\3\36\3\36\3\36\3\36\3\36\3\36\7\36\u01e5\n\36\f\36\16"+
+ "\36\u01e8\13\36\3\37\3\37\3\37\5\37\u01ed\n\37\3 \3 \3 \3 \3 \3 \7 \u01f5"+
+ "\n \f \16 \u01f8\13 \3!\3!\3!\3!\3!\3!\3!\3!\3!\5!\u0203\n!\3!\3!\3!\3"+
+ "!\3!\3!\5!\u020b\n!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3!\3"+
+ "!\3!\3!\7!\u0220\n!\f!\16!\u0223\13!\3!\3!\3!\3!\3!\6!\u022a\n!\r!\16"+
+ "!\u022b\3!\3!\5!\u0230\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!\u0262\n!\3!\3!\3!\3!\3!\3!\3!\3!\7"+
+ "!\u026c\n!\f!\16!\u026f\13!\3\"\3\"\3\"\7\"\u0274\n\"\f\"\16\"\u0277\13"+
+ "\"\3#\3#\5#\u027b\n#\3#\3#\3$\3$\3$\3$\7$\u0283\n$\f$\16$\u0286\13$\3"+
+ "$\3$\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\5%\u0297\n%\5%\u0299\n%\3"+
+ "&\7&\u029c\n&\f&\16&\u029f\13&\3\'\3\'\3\'\5\'\u02a4\n\'\3(\3(\3(\3(\5"+
+ "(\u02aa\n(\3(\5(\u02ad\n(\3)\3)\5)\u02b1\n)\3*\3*\3*\3*\7*\u02b7\n*\f"+
+ "*\16*\u02ba\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+\u02d3\n+\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,"+
+ "\5,\u02e3\n,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\7,\u02f1\n,\f,\16,\u02f4"+
+ "\13,\3,\2\b\24.:>@V-\2\4\6\b\n\f\16\20\22\24\26\30\32\34\36 \"$&(*,.\60"+
+ "\62\64\668:<>@BDFHJLNPRTV\2\r\3\2./\3\29:\3\2;?\3\2DE\3\2@A\4\2\60\60"+
+ "BC\3\2;<\3\2DI\3\2OX\4\2;\u01ee\3\2\2\2@\u022f\3\2\2\2B\u0270\3\2\2\2D\u0278\3\2\2\2F"+
+ "\u027e\3\2\2\2H\u0298\3\2\2\2J\u029d\3\2\2\2L\u02a3\3\2\2\2N\u02ac\3\2"+
+ "\2\2P\u02ae\3\2\2\2R\u02b2\3\2\2\2T\u02d2\3\2\2\2V\u02e2\3\2\2\2XY\5\6"+
+ "\4\2YZ\5\n\6\2Z[\7\2\2\3[\3\3\2\2\2\\]\5J&\2]^\7\2\2\3^\5\3\2\2\2_a\5"+
+ "\b\5\2`_\3\2\2\2ad\3\2\2\2b`\3\2\2\2bc\3\2\2\2c\7\3\2\2\2db\3\2\2\2ef"+
+ "\7\3\2\2fg\7d\2\2g\t\3\2\2\2hj\5\f\7\2ih\3\2\2\2jk\3\2\2\2ki\3\2\2\2k"+
+ "l\3\2\2\2l\13\3\2\2\2mn\5\22\n\2no\7\4\2\2o}\3\2\2\2pq\5\62\32\2qr\7\4"+
+ "\2\2r}\3\2\2\2st\58\35\2tu\7\4\2\2u}\3\2\2\2v}\5\30\r\2w}\5D#\2x}\5\36"+
+ "\20\2yz\5\16\b\2z{\7\4\2\2{}\3\2\2\2|m\3\2\2\2|p\3\2\2\2|s\3\2\2\2|v\3"+
+ "\2\2\2|w\3\2\2\2|x\3\2\2\2|y\3\2\2\2}\r\3\2\2\2~\177\7\5\2\2\177\u0080"+
+ "\5\22\n\2\u0080\17\3\2\2\2\u0081\u0083\5 \21\2\u0082\u0081\3\2\2\2\u0083"+
+ "\u0086\3\2\2\2\u0084\u0082\3\2\2\2\u0084\u0085\3\2\2\2\u0085\u0087\3\2"+
+ "\2\2\u0086\u0084\3\2\2\2\u0087\u008b\5.\30\2\u0088\u008a\5 \21\2\u0089"+
+ "\u0088\3\2\2\2\u008a\u008d\3\2\2\2\u008b\u0089\3\2\2\2\u008b\u008c\3\2"+
+ "\2\2\u008c\21\3\2\2\2\u008d\u008b\3\2\2\2\u008e\u008f\5\20\t\2\u008f\u0090"+
+ "\5\24\13\2\u0090\23\3\2\2\2\u0091\u0092\b\13\1\2\u0092\u0093\5\26\f\2"+
+ "\u0093\u0099\3\2\2\2\u0094\u0095\f\3\2\2\u0095\u0096\7\6\2\2\u0096\u0098"+
+ "\5\26\f\2\u0097\u0094\3\2\2\2\u0098\u009b\3\2\2\2\u0099\u0097\3\2\2\2"+
+ "\u0099\u009a\3\2\2\2\u009a\25\3\2\2\2\u009b\u0099\3\2\2\2\u009c\u009f"+
+ "\7p\2\2\u009d\u009e\7\7\2\2\u009e\u00a0\5@!\2\u009f\u009d\3\2\2\2\u009f"+
+ "\u00a0\3\2\2\2\u00a0\u00a5\3\2\2\2\u00a1\u00a2\7p\2\2\u00a2\u00a3\7\7"+
+ "\2\2\u00a3\u00a5\5D#\2\u00a4\u009c\3\2\2\2\u00a4\u00a1\3\2\2\2\u00a5\27"+
+ "\3\2\2\2\u00a6\u00a7\5\20\t\2\u00a7\u00a8\7p\2\2\u00a8\u00aa\7\b\2\2\u00a9"+
+ "\u00ab\5\32\16\2\u00aa\u00a9\3\2\2\2\u00aa\u00ab\3\2\2\2\u00ab\u00ac\3"+
+ "\2\2\2\u00ac\u00ad\7\t\2\2\u00ad\u00af\7\n\2\2\u00ae\u00b0\5\"\22\2\u00af"+
+ "\u00ae\3\2\2\2\u00af\u00b0\3\2\2\2\u00b0\u00b1\3\2\2\2\u00b1\u00b2\7\13"+
+ "\2\2\u00b2\31\3\2\2\2\u00b3\u00b8\5\34\17\2\u00b4\u00b5\7\6\2\2\u00b5"+
+ "\u00b7\5\34\17\2\u00b6\u00b4\3\2\2\2\u00b7\u00ba\3\2\2\2\u00b8\u00b6\3"+
+ "\2\2\2\u00b8\u00b9\3\2\2\2\u00b9\33\3\2\2\2\u00ba\u00b8\3\2\2\2\u00bb"+
+ "\u00bc\5\20\t\2\u00bc\u00bd\7p\2\2\u00bd\u00c0\3\2\2\2\u00be\u00c0\7c"+
+ "\2\2\u00bf\u00bb\3\2\2\2\u00bf\u00be\3\2\2\2\u00c0\35\3\2\2\2\u00c1\u00c2"+
+ "\7\f\2\2\u00c2\u00c5\7\r\2\2\u00c3\u00c5\7\16\2\2\u00c4\u00c1\3\2\2\2"+
+ "\u00c4\u00c3\3\2\2\2\u00c5\u00c6\3\2\2\2\u00c6\u00c7\7\b\2\2\u00c7\u00cc"+
+ "\7g\2\2\u00c8\u00c9\7\6\2\2\u00c9\u00cb\7g\2\2\u00ca\u00c8\3\2\2\2\u00cb"+
+ "\u00ce\3\2\2\2\u00cc\u00ca\3\2\2\2\u00cc\u00cd\3\2\2\2\u00cd\u00cf\3\2"+
+ "\2\2\u00ce\u00cc\3\2\2\2\u00cf\u00fb\7\t\2\2\u00d0\u00d1\7\f\2\2\u00d1"+
+ "\u00d4\7\17\2\2\u00d2\u00d4\7\20\2\2\u00d3\u00d0\3\2\2\2\u00d3\u00d2\3"+
+ "\2\2\2\u00d4\u00d5\3\2\2\2\u00d5\u00d6\7\b\2\2\u00d6\u00d7\7g\2\2\u00d7"+
+ "\u00fb\7\t\2\2\u00d8\u00d9\7\f\2\2\u00d9\u00dc\7\21\2\2\u00da\u00dc\7"+
+ "\22\2\2\u00db\u00d8\3\2\2\2\u00db\u00da\3\2\2\2\u00dc\u00dd\3\2\2\2\u00dd"+
+ "\u00de\7\b\2\2\u00de\u00df\7p\2\2\u00df\u00fb\7\t\2\2\u00e0\u00e1\7\f"+
+ "\2\2\u00e1\u00e2\7\23\2\2\u00e2\u00e3\3\2\2\2\u00e3\u00e4\7\b\2\2\u00e4"+
+ "\u00e5\7d\2\2\u00e5\u00fb\7\t\2\2\u00e6\u00e7\7\f\2\2\u00e7\u00e8\7\24"+
+ "\2\2\u00e8\u00e9\3\2\2\2\u00e9\u00ea\7\b\2\2\u00ea\u00eb\7p\2\2\u00eb"+
+ "\u00fb\7\t\2\2\u00ec\u00ed\7\f\2\2\u00ed\u00ee\7\25\2\2\u00ee\u00ef\3"+
+ "\2\2\2\u00ef\u00f0\7\b\2\2\u00f0\u00f1\7p\2\2\u00f1\u00fb\7\t\2\2\u00f2"+
+ "\u00f3\7\f\2\2\u00f3\u00f6\7\26\2\2\u00f4\u00f6\7\27\2\2\u00f5\u00f2\3"+
+ "\2\2\2\u00f5\u00f4\3\2\2\2\u00f6\u00f7\3\2\2\2\u00f7\u00f8\7\b\2\2\u00f8"+
+ "\u00f9\7p\2\2\u00f9\u00fb\7\t\2\2\u00fa\u00c4\3\2\2\2\u00fa\u00d3\3\2"+
+ "\2\2\u00fa\u00db\3\2\2\2\u00fa\u00e0\3\2\2\2\u00fa\u00e6\3\2\2\2\u00fa"+
+ "\u00ec\3\2\2\2\u00fa\u00f5\3\2\2\2\u00fb\37\3\2\2\2\u00fc\u011d\7\30\2"+
+ "\2\u00fd\u011d\7\31\2\2\u00fe\u011d\7\32\2\2\u00ff\u0100\7\33\2\2\u0100"+
+ "\u0101\7\b\2\2\u0101\u0102\7g\2\2\u0102\u011d\7\t\2\2\u0103\u0107\7\34"+
+ "\2\2\u0104\u0105\7\b\2\2\u0105\u0106\7p\2\2\u0106\u0108\7\t\2\2\u0107"+
+ "\u0104\3\2\2\2\u0107\u0108\3\2\2\2\u0108\u011d\3\2\2\2\u0109\u011d\7\35"+
+ "\2\2\u010a\u011d\7\36\2\2\u010b\u010f\7\37\2\2\u010c\u010d\7\b\2\2\u010d"+
+ "\u010e\7p\2\2\u010e\u0110\7\t\2\2\u010f\u010c\3\2\2\2\u010f\u0110\3\2"+
+ "\2\2\u0110\u011d\3\2\2\2\u0111\u0112\7\r\2\2\u0112\u0113\7\b\2\2\u0113"+
+ "\u0118\7g\2\2\u0114\u0115\7\6\2\2\u0115\u0117\7g\2\2\u0116\u0114\3\2\2"+
+ "\2\u0117\u011a\3\2\2\2\u0118\u0116\3\2\2\2\u0118\u0119\3\2\2\2\u0119\u011b"+
+ "\3\2\2\2\u011a\u0118\3\2\2\2\u011b\u011d\7\t\2\2\u011c\u00fc\3\2\2\2\u011c"+
+ "\u00fd\3\2\2\2\u011c\u00fe\3\2\2\2\u011c\u00ff\3\2\2\2\u011c\u0103\3\2"+
+ "\2\2\u011c\u0109\3\2\2\2\u011c\u010a\3\2\2\2\u011c\u010b\3\2\2\2\u011c"+
+ "\u0111\3\2\2\2\u011d!\3\2\2\2\u011e\u0120\5$\23\2\u011f\u011e\3\2\2\2"+
+ "\u0120\u0121\3\2\2\2\u0121\u011f\3\2\2\2\u0121\u0122\3\2\2\2\u0122#\3"+
+ "\2\2\2\u0123\u0124\5\22\n\2\u0124\u0125\7\4\2\2\u0125\u0178\3\2\2\2\u0126"+
+ "\u0128\7\n\2\2\u0127\u0129\5\"\22\2\u0128\u0127\3\2\2\2\u0128\u0129\3"+
+ "\2\2\2\u0129\u012a\3\2\2\2\u012a\u0178\7\13\2\2\u012b\u012c\5> \2\u012c"+
+ "\u012d\7\4\2\2\u012d\u0178\3\2\2\2\u012e\u012f\7 \2\2\u012f\u0130\7\b"+
+ "\2\2\u0130\u0131\5> \2\u0131\u0132\7\t\2\2\u0132\u0135\5$\23\2\u0133\u0134"+
+ "\7!\2\2\u0134\u0136\5$\23\2\u0135\u0133\3\2\2\2\u0135\u0136\3\2\2\2\u0136"+
+ "\u0178\3\2\2\2\u0137\u0139\5 \21\2\u0138\u0137\3\2\2\2\u0139\u013c\3\2"+
+ "\2\2\u013a\u0138\3\2\2\2\u013a\u013b\3\2\2\2\u013b\u013d\3\2\2\2\u013c"+
+ "\u013a\3\2\2\2\u013d\u013e\7\"\2\2\u013e\u013f\7\b\2\2\u013f\u0140\5>"+
+ " \2\u0140\u0141\7\t\2\2\u0141\u0142\5$\23\2\u0142\u0178\3\2\2\2\u0143"+
+ "\u0145\5 \21\2\u0144\u0143\3\2\2\2\u0145\u0148\3\2\2\2\u0146\u0144\3\2"+
+ "\2\2\u0146\u0147\3\2\2\2\u0147\u0149\3\2\2\2\u0148\u0146\3\2\2\2\u0149"+
+ "\u014a\7#\2\2\u014a\u014b\5$\23\2\u014b\u014c\7\"\2\2\u014c\u014d\7\b"+
+ "\2\2\u014d\u014e\5> \2\u014e\u014f\7\t\2\2\u014f\u0150\7\4\2\2\u0150\u0178"+
+ "\3\2\2\2\u0151\u0153\5 \21\2\u0152\u0151\3\2\2\2\u0153\u0156\3\2\2\2\u0154"+
+ "\u0152\3\2\2\2\u0154\u0155\3\2\2\2\u0155\u0157\3\2\2\2\u0156\u0154\3\2"+
+ "\2\2\u0157\u0158\7$\2\2\u0158\u0159\7\b\2\2\u0159\u015a\5*\26\2\u015a"+
+ "\u015b\7\t\2\2\u015b\u015c\5$\23\2\u015c\u0178\3\2\2\2\u015d\u015e\7%"+
+ "\2\2\u015e\u015f\7\b\2\2\u015f\u0160\5> \2\u0160\u0161\7\t\2\2\u0161\u0162"+
+ "\7\n\2\2\u0162\u0163\5&\24\2\u0163\u0164\7\13\2\2\u0164\u0178\3\2\2\2"+
+ "\u0165\u0167\7&\2\2\u0166\u0168\5> \2\u0167\u0166\3\2\2\2\u0167\u0168"+
+ "\3\2\2\2\u0168\u0169\3\2\2\2\u0169\u0178\7\4\2\2\u016a\u016b\7\'\2\2\u016b"+
+ "\u0178\7\4\2\2\u016c\u016d\7(\2\2\u016d\u0178\7\4\2\2\u016e\u0170\7)\2"+
+ "\2\u016f\u0171\5F$\2\u0170\u016f\3\2\2\2\u0170\u0171\3\2\2\2\u0171\u0172"+
+ "\3\2\2\2\u0172\u0173\7\n\2\2\u0173\u0174\5J&\2\u0174\u0175\7\13\2\2\u0175"+
+ "\u0178\3\2\2\2\u0176\u0178\5D#\2\u0177\u0123\3\2\2\2\u0177\u0126\3\2\2"+
+ "\2\u0177\u012b\3\2\2\2\u0177\u012e\3\2\2\2\u0177\u013a\3\2\2\2\u0177\u0146"+
+ "\3\2\2\2\u0177\u0154\3\2\2\2\u0177\u015d\3\2\2\2\u0177\u0165\3\2\2\2\u0177"+
+ "\u016a\3\2\2\2\u0177\u016c\3\2\2\2\u0177\u016e\3\2\2\2\u0177\u0176\3\2"+
+ "\2\2\u0178%\3\2\2\2\u0179\u017b\5(\25\2\u017a\u0179\3\2\2\2\u017b\u017c"+
+ "\3\2\2\2\u017c\u017a\3\2\2\2\u017c\u017d\3\2\2\2\u017d\u017e\3\2\2\2\u017e"+
+ "\u0180\7*\2\2\u017f\u0181\5\"\22\2\u0180\u017f\3\2\2\2\u0180\u0181\3\2"+
+ "\2\2\u0181\'\3\2\2\2\u0182\u0183\7+\2\2\u0183\u0184\5@!\2\u0184\u0186"+
+ "\7,\2\2\u0185\u0187\5\"\22\2\u0186\u0185\3\2\2\2\u0186\u0187\3\2\2\2\u0187"+
+ ")\3\2\2\2\u0188\u0189\5,\27\2\u0189\u018a\7\4\2\2\u018a\u018b\5> \2\u018b"+
+ "\u018d\7\4\2\2\u018c\u018e\5> \2\u018d\u018c\3\2\2\2\u018d\u018e\3\2\2"+
+ "\2\u018e\u0199\3\2\2\2\u018f\u0191\5\20\t\2\u0190\u018f\3\2\2\2\u0190"+
+ "\u0191\3\2\2\2\u0191\u0192\3\2\2\2\u0192\u0193\7p\2\2\u0193\u0194\7,\2"+
+ "\2\u0194\u0195\5@!\2\u0195\u0196\7-\2\2\u0196\u0197\5@!\2\u0197\u0199"+
+ "\3\2\2\2\u0198\u0188\3\2\2\2\u0198\u0190\3\2\2\2\u0199+\3\2\2\2\u019a"+
+ "\u019c\5\22\n\2\u019b\u019a\3\2\2\2\u019b\u019c\3\2\2\2\u019c\u019f\3"+
+ "\2\2\2\u019d\u019f\5> \2\u019e\u019b\3\2\2\2\u019e\u019d\3\2\2\2\u019f"+
+ "-\3\2\2\2\u01a0\u01a1\b\30\1\2\u01a1\u01a2\7\b\2\2\u01a2\u01a3\5.\30\2"+
+ "\u01a3\u01a4\7\t\2\2\u01a4\u01b0\3\2\2\2\u01a5\u01b0\7c\2\2\u01a6\u01a8"+
+ "\t\2\2\2\u01a7\u01a9\7c\2\2\u01a8\u01a7\3\2\2\2\u01a8\u01a9\3\2\2\2\u01a9"+
+ "\u01b0\3\2\2\2\u01aa\u01b0\5\62\32\2\u01ab\u01b0\5\60\31\2\u01ac\u01b0"+
+ "\58\35\2\u01ad\u01b0\5\66\34\2\u01ae\u01b0\7p\2\2\u01af\u01a0\3\2\2\2"+
+ "\u01af\u01a5\3\2\2\2\u01af\u01a6\3\2\2\2\u01af\u01aa\3\2\2\2\u01af\u01ab"+
+ "\3\2\2\2\u01af\u01ac\3\2\2\2\u01af\u01ad\3\2\2\2\u01af\u01ae\3\2\2\2\u01b0"+
+ "\u01be\3\2\2\2\u01b1\u01b2\f\n\2\2\u01b2\u01bd\7\60\2\2\u01b3\u01b4\f"+
+ "\t\2\2\u01b4\u01b6\7\61\2\2\u01b5\u01b7\5@!\2\u01b6\u01b5\3\2\2\2\u01b6"+
+ "\u01b7\3\2\2\2\u01b7\u01b8\3\2\2\2\u01b8\u01bd\7\62\2\2\u01b9\u01ba\f"+
+ "\b\2\2\u01ba\u01bb\7\b\2\2\u01bb\u01bd\7\t\2\2\u01bc\u01b1\3\2\2\2\u01bc"+
+ "\u01b3\3\2\2\2\u01bc\u01b9\3\2\2\2\u01bd\u01c0\3\2\2\2\u01be\u01bc\3\2"+
+ "\2\2\u01be\u01bf\3\2\2\2\u01bf/\3\2\2\2\u01c0\u01be\3\2\2\2\u01c1\u01c2"+
+ "\7\63\2\2\u01c2\u01c3\7p\2\2\u01c3\61\3\2\2\2\u01c4\u01c6\7\63\2\2\u01c5"+
+ "\u01c7\7p\2\2\u01c6\u01c5\3\2\2\2\u01c6\u01c7\3\2\2\2\u01c7\u01c8\3\2"+
+ "\2\2\u01c8\u01ca\7\n\2\2\u01c9\u01cb\5\64\33\2\u01ca\u01c9\3\2\2\2\u01cb"+
+ "\u01cc\3\2\2\2\u01cc\u01ca\3\2\2\2\u01cc\u01cd\3\2\2\2\u01cd\u01ce\3\2"+
+ "\2\2\u01ce\u01cf\7\13\2\2\u01cf\63\3\2\2\2\u01d0\u01d1\5\22\n\2\u01d1"+
+ "\u01d2\7\4\2\2\u01d2\65\3\2\2\2\u01d3\u01d4\7\64\2\2\u01d4\u01d5\7p\2"+
+ "\2\u01d5\67\3\2\2\2\u01d6\u01d8\7\64\2\2\u01d7\u01d9\7p\2\2\u01d8\u01d7"+
+ "\3\2\2\2\u01d8\u01d9\3\2\2\2\u01d9\u01da\3\2\2\2\u01da\u01db\7\n\2\2\u01db"+
+ "\u01dc\5:\36\2\u01dc\u01dd\7\13\2\2\u01dd9\3\2\2\2\u01de\u01df\b\36\1"+
+ "\2\u01df\u01e0\5<\37\2\u01e0\u01e6\3\2\2\2\u01e1\u01e2\f\3\2\2\u01e2\u01e3"+
+ "\7\6\2\2\u01e3\u01e5\5<\37\2\u01e4\u01e1\3\2\2\2\u01e5\u01e8\3\2\2\2\u01e6"+
+ "\u01e4\3\2\2\2\u01e6\u01e7\3\2\2\2\u01e7;\3\2\2\2\u01e8\u01e6\3\2\2\2"+
+ "\u01e9\u01ec\7p\2\2\u01ea\u01eb\7\7\2\2\u01eb\u01ed\5@!\2\u01ec\u01ea"+
+ "\3\2\2\2\u01ec\u01ed\3\2\2\2\u01ed=\3\2\2\2\u01ee\u01ef\b \1\2\u01ef\u01f0"+
+ "\5@!\2\u01f0\u01f6\3\2\2\2\u01f1\u01f2\f\3\2\2\u01f2\u01f3\7\6\2\2\u01f3"+
+ "\u01f5\5@!\2\u01f4\u01f1\3\2\2\2\u01f5\u01f8\3\2\2\2\u01f6\u01f4\3\2\2"+
+ "\2\u01f6\u01f7\3\2\2\2\u01f7?\3\2\2\2\u01f8\u01f6\3\2\2\2\u01f9\u01fa"+
+ "\b!\1\2\u01fa\u01fb\7\b\2\2\u01fb\u01fc\5> \2\u01fc\u01fd\7\t\2\2\u01fd"+
+ "\u0230\3\2\2\2\u01fe\u01ff\7\67\2\2\u01ff\u0202\7\b\2\2\u0200\u0203\5"+
+ "@!\2\u0201\u0203\5.\30\2\u0202\u0200\3\2\2\2\u0202\u0201\3\2\2\2\u0203"+
+ "\u0204\3\2\2\2\u0204\u0205\7\t\2\2\u0205\u0230\3\2\2\2\u0206\u0207\78"+
+ "\2\2\u0207\u020a\7\b\2\2\u0208\u020b\5@!\2\u0209\u020b\5.\30\2\u020a\u0208"+
+ "\3\2\2\2\u020a\u0209\3\2\2\2\u020b\u020c\3\2\2\2\u020c\u020d\7\t\2\2\u020d"+
+ "\u0230\3\2\2\2\u020e\u020f\7\b\2\2\u020f\u0210\5.\30\2\u0210\u0211\7\t"+
+ "\2\2\u0211\u0212\5@!\32\u0212\u0230\3\2\2\2\u0213\u0214\t\3\2\2\u0214"+
+ "\u0230\5@!\31\u0215\u0216\7\60\2\2\u0216\u0230\5@!\27\u0217\u0218\t\4"+
+ "\2\2\u0218\u0230\5@!\26\u0219\u021a\t\5\2\2\u021a\u0230\5@!\22\u021b\u021c"+
+ "\7\n\2\2\u021c\u0221\5@!\2\u021d\u021e\7\6\2\2\u021e\u0220\5@!\2\u021f"+
+ "\u021d\3\2\2\2\u0220\u0223\3\2\2\2\u0221\u021f\3\2\2\2\u0221\u0222\3\2"+
+ "\2\2\u0222\u0224\3\2\2\2\u0223\u0221\3\2\2\2\u0224\u0225\7\13\2\2\u0225"+
+ "\u0230\3\2\2\2\u0226\u0230\7p\2\2\u0227\u0230\7g\2\2\u0228\u022a\7d\2"+
+ "\2\u0229\u0228\3\2\2\2\u022a\u022b\3\2\2\2\u022b\u0229\3\2\2\2\u022b\u022c"+
+ "\3\2\2\2\u022c\u0230\3\2\2\2\u022d\u0230\7e\2\2\u022e\u0230\7f\2\2\u022f"+
+ "\u01f9\3\2\2\2\u022f\u01fe\3\2\2\2\u022f\u0206\3\2\2\2\u022f\u020e\3\2"+
+ "\2\2\u022f\u0213\3\2\2\2\u022f\u0215\3\2\2\2\u022f\u0217\3\2\2\2\u022f"+
+ "\u0219\3\2\2\2\u022f\u021b\3\2\2\2\u022f\u0226\3\2\2\2\u022f\u0227\3\2"+
+ "\2\2\u022f\u0229\3\2\2\2\u022f\u022d\3\2\2\2\u022f\u022e\3\2\2\2\u0230"+
+ "\u026d\3\2\2\2\u0231\u0232\f\25\2\2\u0232\u0233\t\6\2\2\u0233\u026c\5"+
+ "@!\26\u0234\u0235\f\24\2\2\u0235\u0236\t\7\2\2\u0236\u026c\5@!\25\u0237"+
+ "\u0238\f\23\2\2\u0238\u0239\t\b\2\2\u0239\u026c\5@!\24\u023a\u023b\f\21"+
+ "\2\2\u023b\u023c\t\t\2\2\u023c\u026c\5@!\22\u023d\u023e\f\20\2\2\u023e"+
+ "\u023f\7>\2\2\u023f\u026c\5@!\21\u0240\u0241\f\17\2\2\u0241\u0242\7J\2"+
+ "\2\u0242\u026c\5@!\20\u0243\u0244\f\16\2\2\u0244\u0245\7K\2\2\u0245\u026c"+
+ "\5@!\17\u0246\u0247\f\r\2\2\u0247\u0248\7L\2\2\u0248\u026c\5@!\16\u0249"+
+ "\u024a\f\f\2\2\u024a\u024b\7M\2\2\u024b\u026c\5@!\r\u024c\u024d\f\13\2"+
+ "\2\u024d\u024e\7N\2\2\u024e\u024f\5@!\2\u024f\u0250\7,\2\2\u0250\u0251"+
+ "\5@!\f\u0251\u026c\3\2\2\2\u0252\u0253\f\n\2\2\u0253\u0254\7\7\2\2\u0254"+
+ "\u026c\5@!\n\u0255\u0256\f\t\2\2\u0256\u0257\t\n\2\2\u0257\u026c\5@!\t"+
+ "\u0258\u0259\f \2\2\u0259\u025a\7\65\2\2\u025a\u026c\7p\2\2\u025b\u025c"+
+ "\f\37\2\2\u025c\u025d\7\66\2\2\u025d\u026c\7p\2\2\u025e\u025f\f\36\2\2"+
+ "\u025f\u0261\7\b\2\2\u0260\u0262\5B\"\2\u0261\u0260\3\2\2\2\u0261\u0262"+
+ "\3\2\2\2\u0262\u0263\3\2\2\2\u0263\u026c\7\t\2\2\u0264\u0265\f\33\2\2"+
+ "\u0265\u0266\7\61\2\2\u0266\u0267\5> \2\u0267\u0268\7\62\2\2\u0268\u026c"+
+ "\3\2\2\2\u0269\u026a\f\30\2\2\u026a\u026c\t\3\2\2\u026b\u0231\3\2\2\2"+
+ "\u026b\u0234\3\2\2\2\u026b\u0237\3\2\2\2\u026b\u023a\3\2\2\2\u026b\u023d"+
+ "\3\2\2\2\u026b\u0240\3\2\2\2\u026b\u0243\3\2\2\2\u026b\u0246\3\2\2\2\u026b"+
+ "\u0249\3\2\2\2\u026b\u024c\3\2\2\2\u026b\u0252\3\2\2\2\u026b\u0255\3\2"+
+ "\2\2\u026b\u0258\3\2\2\2\u026b\u025b\3\2\2\2\u026b\u025e\3\2\2\2\u026b"+
+ "\u0264\3\2\2\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\u026eA\3\2\2\2\u026f\u026d\3\2\2\2\u0270\u0275"+
+ "\5@!\2\u0271\u0272\7\6\2\2\u0272\u0274\5@!\2\u0273\u0271\3\2\2\2\u0274"+
+ "\u0277\3\2\2\2\u0275\u0273\3\2\2\2\u0275\u0276\3\2\2\2\u0276C\3\2\2\2"+
+ "\u0277\u0275\3\2\2\2\u0278\u027a\7Y\2\2\u0279\u027b\5F$\2\u027a\u0279"+
+ "\3\2\2\2\u027a\u027b\3\2\2\2\u027b\u027c\3\2\2\2\u027c\u027d\7b\2\2\u027d"+
+ "E\3\2\2\2\u027e\u027f\7\b\2\2\u027f\u0284\5H%\2\u0280\u0281\7\6\2\2\u0281"+
+ "\u0283\5H%\2\u0282\u0280\3\2\2\2\u0283\u0286\3\2\2\2\u0284\u0282\3\2\2"+
+ "\2\u0284\u0285\3\2\2\2\u0285\u0287\3\2\2\2\u0286\u0284\3\2\2\2\u0287\u0288"+
+ "\7\t\2\2\u0288G\3\2\2\2\u0289\u028a\7Z\2\2\u028a\u0299\7d\2\2\u028b\u028c"+
+ "\7[\2\2\u028c\u0299\7p\2\2\u028d\u028e\7\\\2\2\u028e\u0299\7d\2\2\u028f"+
+ "\u0290\7]\2\2\u0290\u0299\5@!\2\u0291\u0292\7^\2\2\u0292\u0299\5@!\2\u0293"+
+ "\u0296\7\17\2\2\u0294\u0297\7\35\2\2\u0295\u0297\5@!\2\u0296\u0294\3\2"+
+ "\2\2\u0296\u0295\3\2\2\2\u0297\u0299\3\2\2\2\u0298\u0289\3\2\2\2\u0298"+
+ "\u028b\3\2\2\2\u0298\u028d\3\2\2\2\u0298\u028f\3\2\2\2\u0298\u0291\3\2"+
+ "\2\2\u0298\u0293\3\2\2\2\u0299I\3\2\2\2\u029a\u029c\5L\'\2\u029b\u029a"+
+ "\3\2\2\2\u029c\u029f\3\2\2\2\u029d\u029b\3\2\2\2\u029d\u029e\3\2\2\2\u029e"+
+ "K\3\2\2\2\u029f\u029d\3\2\2\2\u02a0\u02a4\5N(\2\u02a1\u02a4\5P)\2\u02a2"+
+ "\u02a4\5R*\2\u02a3\u02a0\3\2\2\2\u02a3\u02a1\3\2\2\2\u02a3\u02a2\3\2\2"+
+ "\2\u02a4M\3\2\2\2\u02a5\u02a6\7p\2\2\u02a6\u02ad\7,\2\2\u02a7\u02a9\7"+
+ "=\2\2\u02a8\u02aa\7p\2\2\u02a9\u02a8\3\2\2\2\u02a9\u02aa\3\2\2\2\u02aa"+
+ "\u02ab\3\2\2\2\u02ab\u02ad\7,\2\2\u02ac\u02a5\3\2\2\2\u02ac\u02a7\3\2"+
+ "\2\2\u02adO\3\2\2\2\u02ae\u02b0\7a\2\2\u02af\u02b1\5T+\2\u02b0\u02af\3"+
+ "\2\2\2\u02b0\u02b1\3\2\2\2\u02b1Q\3\2\2\2\u02b2\u02b3\7_\2\2\u02b3\u02b8"+
+ "\5V,\2\u02b4\u02b5\7\6\2\2\u02b5\u02b7\5V,\2\u02b6\u02b4\3\2\2\2\u02b7"+
+ "\u02ba\3\2\2\2\u02b8\u02b6\3\2\2\2\u02b8\u02b9\3\2\2\2\u02b9S\3\2\2\2"+
+ "\u02ba\u02b8\3\2\2\2\u02bb\u02d3\5V,\2\u02bc\u02bd\7`\2\2\u02bd\u02d3"+
+ "\5V,\2\u02be\u02bf\5V,\2\u02bf\u02c0\7\6\2\2\u02c0\u02c1\7p\2\2\u02c1"+
+ "\u02d3\3\2\2\2\u02c2\u02c3\7\b\2\2\u02c3\u02c4\5V,\2\u02c4\u02c5\7\t\2"+
+ "\2\u02c5\u02c6\7\6\2\2\u02c6\u02c7\7p\2\2\u02c7\u02d3\3\2\2\2\u02c8\u02c9"+
+ "\7\b\2\2\u02c9\u02ca\5V,\2\u02ca\u02cb\7\6\2\2\u02cb\u02cc\7p\2\2\u02cc"+
+ "\u02cd\7\t\2\2\u02cd\u02d3\3\2\2\2\u02ce\u02cf\7\b\2\2\u02cf\u02d0\5V"+
+ ",\2\u02d0\u02d1\7\t\2\2\u02d1\u02d3\3\2\2\2\u02d2\u02bb\3\2\2\2\u02d2"+
+ "\u02bc\3\2\2\2\u02d2\u02be\3\2\2\2\u02d2\u02c2\3\2\2\2\u02d2\u02c8\3\2"+
+ "\2\2\u02d2\u02ce\3\2\2\2\u02d3U\3\2\2\2\u02d4\u02d5\b,\1\2\u02d5\u02d6"+
+ "\7\61\2\2\u02d6\u02d7\5V,\2\u02d7\u02d8\7\62\2\2\u02d8\u02e3\3\2\2\2\u02d9"+
+ "\u02da\t\13\2\2\u02da\u02e3\5V,\n\u02db\u02e3\7p\2\2\u02dc\u02e3\7q\2"+
+ "\2\u02dd\u02de\7\n\2\2\u02de\u02df\7p\2\2\u02df\u02e3\7\13\2\2\u02e0\u02e3"+
+ "\7g\2\2\u02e1\u02e3\7e\2\2\u02e2\u02d4\3\2\2\2\u02e2\u02d9\3\2\2\2\u02e2"+
+ "\u02db\3\2\2\2\u02e2\u02dc\3\2\2\2\u02e2\u02dd\3\2\2\2\u02e2\u02e0\3\2"+
+ "\2\2\u02e2\u02e1\3\2\2\2\u02e3\u02f2\3\2\2\2\u02e4\u02e5\f\f\2\2\u02e5"+
+ "\u02e6\7\65\2\2\u02e6\u02f1\5V,\r\u02e7\u02e8\f\13\2\2\u02e8\u02e9\t\6"+
+ "\2\2\u02e9\u02f1\5V,\f\u02ea\u02eb\f\t\2\2\u02eb\u02ec\t\f\2\2\u02ec\u02f1"+
+ "\5V,\n\u02ed\u02ee\f\b\2\2\u02ee\u02ef\t\b\2\2\u02ef\u02f1\5V,\t\u02f0"+
+ "\u02e4\3\2\2\2\u02f0\u02e7\3\2\2\2\u02f0\u02ea\3\2\2\2\u02f0\u02ed\3\2"+
+ "\2\2\u02f1\u02f4\3\2\2\2\u02f2\u02f0\3\2\2\2\u02f2\u02f3\3\2\2\2\u02f3"+
+ "W\3\2\2\2\u02f4\u02f2\3\2\2\2Kbk|\u0084\u008b\u0099\u009f\u00a4\u00aa"+
+ "\u00af\u00b8\u00bf\u00c4\u00cc\u00d3\u00db\u00f5\u00fa\u0107\u010f\u0118"+
+ "\u011c\u0121\u0128\u0135\u013a\u0146\u0154\u0167\u0170\u0177\u017c\u0180"+
+ "\u0186\u018d\u0190\u0198\u019b\u019e\u01a8\u01af\u01b6\u01bc\u01be\u01c6"+
+ "\u01cc\u01d8\u01e6\u01ec\u01f6\u0202\u020a\u0221\u022b\u022f\u0261\u026b"+
+ "\u026d\u0275\u027a\u0284\u0296\u0298\u029d\u02a3\u02a9\u02ac\u02b0\u02b8"+
+ "\u02d2\u02e2\u02f0\u02f2";
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 fda447fdd..fa66e778a 100644
--- a/src/main/java/dk/camelot64/kickc/parser/KickCVisitor.java
+++ b/src/main/java/dk/camelot64/kickc/parser/KickCVisitor.java
@@ -277,6 +277,13 @@ public interface KickCVisitor extends ParseTreeVisitor {
* @return the visitor result
*/
T visitStmtFor(KickCParser.StmtForContext ctx);
+ /**
+ * Visit a parse tree produced by the {@code stmtSwitch}
+ * labeled alternative in {@link KickCParser#stmt}.
+ * @param ctx the parse tree
+ * @return the visitor result
+ */
+ T visitStmtSwitch(KickCParser.StmtSwitchContext ctx);
/**
* Visit a parse tree produced by the {@code stmtReturn}
* labeled alternative in {@link KickCParser#stmt}.
@@ -312,6 +319,18 @@ public interface KickCVisitor extends ParseTreeVisitor {
* @return the visitor result
*/
T visitStmtDeclKasm(KickCParser.StmtDeclKasmContext ctx);
+ /**
+ * Visit a parse tree produced by {@link KickCParser#switchCases}.
+ * @param ctx the parse tree
+ * @return the visitor result
+ */
+ T visitSwitchCases(KickCParser.SwitchCasesContext ctx);
+ /**
+ * Visit a parse tree produced by {@link KickCParser#switchCase}.
+ * @param ctx the parse tree
+ * @return the visitor result
+ */
+ T visitSwitchCase(KickCParser.SwitchCaseContext ctx);
/**
* Visit a parse tree produced by the {@code forClassic}
* labeled alternative in {@link KickCParser#forLoop}.