mirror of
https://gitlab.com/camelot/kickc.git
synced 2024-11-17 12:08:54 +00:00
Added rol/ror and a table generation example
This commit is contained in:
parent
2a2d873e62
commit
aac15e64dd
@ -81,10 +81,16 @@ public class AsmFragment {
|
||||
signature.append(getOperatorFragmentName(operator));
|
||||
}
|
||||
if (
|
||||
rValue2 instanceof ConstantInteger &&
|
||||
((ConstantInteger) rValue2).getNumber() == 2 &&
|
||||
operator != null &&
|
||||
(operator.getOperator().equals(">>")|| operator.getOperator().equals("<<"))) {
|
||||
signature.append("2");
|
||||
} else if (
|
||||
rValue2 instanceof ConstantInteger &&
|
||||
((ConstantInteger) rValue2).getNumber() == 1 &&
|
||||
operator != null &&
|
||||
(operator.getOperator().equals("-") || operator.getOperator().equals("+"))) {
|
||||
(operator.getOperator().equals("-") || operator.getOperator().equals("+")|| operator.getOperator().equals(">>")|| operator.getOperator().equals("<<"))) {
|
||||
signature.append("1");
|
||||
} else if (
|
||||
rValue2 instanceof ConstantInteger &&
|
||||
@ -122,6 +128,10 @@ public class AsmFragment {
|
||||
case ">=":
|
||||
case "=>":
|
||||
return "_ge_";
|
||||
case ">>":
|
||||
return "_ror_";
|
||||
case "<<":
|
||||
return "_rol_";
|
||||
default:
|
||||
return op;
|
||||
}
|
||||
|
2
src/dk/camelot64/kickc/asm/fragment/zpby1=xby_plus_1.asm
Normal file
2
src/dk/camelot64/kickc/asm/fragment/zpby1=xby_plus_1.asm
Normal file
@ -0,0 +1,2 @@
|
||||
stx {zpby1}
|
||||
inc {zpby1}
|
4
src/dk/camelot64/kickc/asm/fragment/zpby1=xby_ror_2.asm
Normal file
4
src/dk/camelot64/kickc/asm/fragment/zpby1=xby_ror_2.asm
Normal file
@ -0,0 +1,4 @@
|
||||
txa
|
||||
lsr
|
||||
lsr
|
||||
sta {zpby1}
|
@ -0,0 +1,4 @@
|
||||
lda {zpby2}
|
||||
lsr
|
||||
lsr
|
||||
sta {zpby1}
|
@ -34,6 +34,8 @@ public class Pass3RegisterAllocation {
|
||||
allocation.allocate(symbols.getVariable("i#1"), RegisterAllocation.getRegisterX());
|
||||
allocation.allocate(symbols.getVariable("i#2"), RegisterAllocation.getRegisterX());
|
||||
allocation.allocate(symbols.getVariable("i#3"), RegisterAllocation.getRegisterX());
|
||||
allocation.allocate(symbols.getVariable("i#4"), RegisterAllocation.getRegisterX());
|
||||
allocation.allocate(symbols.getVariable("i#5"), RegisterAllocation.getRegisterX());
|
||||
allocation.allocate(symbols.getVariable("n1#1"), RegisterAllocation.getRegisterY());
|
||||
allocation.allocate(symbols.getVariable("n1#2"), RegisterAllocation.getRegisterY());
|
||||
allocation.allocate(symbols.getVariable("e#2"), new RegisterAllocation.RegisterZpByte(128));
|
||||
@ -56,6 +58,11 @@ public class Pass3RegisterAllocation {
|
||||
allocation.allocate(symbols.getVariable("ptr#1"), new RegisterAllocation.RegisterZpPointerByte(135));
|
||||
allocation.allocate(symbols.getVariable("ptr#2"), new RegisterAllocation.RegisterZpPointerByte(135));
|
||||
allocation.allocate(symbols.getVariable("ptr#3"), new RegisterAllocation.RegisterZpPointerByte(135));
|
||||
allocation.allocate(symbols.getVariable("v#1"), new RegisterAllocation.RegisterZpByte(137));
|
||||
allocation.allocate(symbols.getVariable("v#2"), new RegisterAllocation.RegisterZpByte(137));
|
||||
allocation.allocate(symbols.getVariable("v#3"), new RegisterAllocation.RegisterZpByte(137));
|
||||
allocation.allocate(symbols.getVariable("v#4"), new RegisterAllocation.RegisterZpByte(137));
|
||||
allocation.allocate(symbols.getVariable("v#5"), new RegisterAllocation.RegisterZpByte(137));
|
||||
symbols.setAllocation(allocation);
|
||||
}
|
||||
|
||||
|
@ -78,16 +78,32 @@ public class PassTypeInference {
|
||||
SymbolType elmType2 = ((SymbolTypePointer) type2).getElementType();
|
||||
return inferType(elmType1, operator, elmType2);
|
||||
}
|
||||
if (SymbolTypeBasic.WORD.equals(type1) || SymbolTypeBasic.WORD.equals(type2)) {
|
||||
return SymbolTypeBasic.WORD;
|
||||
} else if (SymbolTypeBasic.BYTE.equals(type1) && SymbolTypeBasic.BYTE.equals(type2)) {
|
||||
return SymbolTypeBasic.BYTE;
|
||||
}
|
||||
throw new RuntimeException("Type inference case not handled " + type1 + " " + operator + " " + type2);
|
||||
case "*":
|
||||
if(type1==null && type2 instanceof SymbolTypePointer) {
|
||||
return ((SymbolTypePointer) type2).getElementType();
|
||||
}
|
||||
throw new RuntimeException("Type inference case not handled " + type1 + " " + operator + " " + type2);
|
||||
case "/":
|
||||
if (SymbolTypeBasic.WORD.equals(type1) || SymbolTypeBasic.WORD.equals(type2)) {
|
||||
return SymbolTypeBasic.WORD;
|
||||
} else if (SymbolTypeBasic.BYTE.equals(type1) && SymbolTypeBasic.BYTE.equals(type2)) {
|
||||
return SymbolTypeBasic.BYTE;
|
||||
}
|
||||
throw new RuntimeException("Type inference case not handled " + type1 + " " + operator + " " + type2);
|
||||
case "<<":
|
||||
case ">>":
|
||||
if (SymbolTypeBasic.WORD.equals(type1)) {
|
||||
return SymbolTypeBasic.WORD;
|
||||
} else if (SymbolTypeBasic.BYTE.equals(type1)) {
|
||||
return SymbolTypeBasic.BYTE;
|
||||
}
|
||||
throw new RuntimeException("Type inference case not handled " + type1 + " " + operator + " " + type2);
|
||||
default:
|
||||
throw new RuntimeException("Type inference case not handled " + type1 + " " + operator + " " + type2);
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
package dk.camelot64.kickc.icl;
|
||||
|
||||
/** A dereferenced constant pointer */
|
||||
public class PointerDereferenceConstant implements LValue {
|
||||
public class PointerDereferenceConstant implements PointerDereference {
|
||||
|
||||
private Constant pointer;
|
||||
|
||||
|
@ -51,6 +51,7 @@ expr
|
||||
| '(' typeDecl ')' expr #exprCast
|
||||
| expr '[' expr ']' #exprArray
|
||||
| ('+' | '-' | 'not' | '!' | '&' | '*') expr #exprUnary
|
||||
| expr ('>>' | '<<' ) expr #exprBinary
|
||||
| expr ('*' | '/' ) expr #exprBinary
|
||||
| expr ( '+' | '-') expr #exprBinary
|
||||
| expr ( '==' | '!=' | '<>' | '<' | '<=' | '=<' | '>=' | '=>' | '>' ) expr #exprBinary
|
||||
|
@ -33,22 +33,24 @@ T__31=32
|
||||
T__32=33
|
||||
T__33=34
|
||||
T__34=35
|
||||
SIMPLETYPE=36
|
||||
STRING=37
|
||||
BOOLEAN=38
|
||||
NUMBER=39
|
||||
NUMFLOAT=40
|
||||
BINFLOAT=41
|
||||
DECFLOAT=42
|
||||
HEXFLOAT=43
|
||||
NUMINT=44
|
||||
BININTEGER=45
|
||||
DECINTEGER=46
|
||||
HEXINTEGER=47
|
||||
NAME=48
|
||||
WS=49
|
||||
COMMENT_LINE=50
|
||||
COMMENT_BLOCK=51
|
||||
T__35=36
|
||||
T__36=37
|
||||
SIMPLETYPE=38
|
||||
STRING=39
|
||||
BOOLEAN=40
|
||||
NUMBER=41
|
||||
NUMFLOAT=42
|
||||
BINFLOAT=43
|
||||
DECFLOAT=44
|
||||
HEXFLOAT=45
|
||||
NUMINT=46
|
||||
BININTEGER=47
|
||||
DECINTEGER=48
|
||||
HEXINTEGER=49
|
||||
NAME=50
|
||||
WS=51
|
||||
COMMENT_LINE=52
|
||||
COMMENT_BLOCK=53
|
||||
'{'=1
|
||||
'}'=2
|
||||
'('=3
|
||||
@ -70,17 +72,19 @@ COMMENT_BLOCK=51
|
||||
'not'=19
|
||||
'!'=20
|
||||
'&'=21
|
||||
'/'=22
|
||||
'=='=23
|
||||
'!='=24
|
||||
'<>'=25
|
||||
'<'=26
|
||||
'<='=27
|
||||
'=<'=28
|
||||
'>='=29
|
||||
'=>'=30
|
||||
'>'=31
|
||||
'and'=32
|
||||
'&&'=33
|
||||
'or'=34
|
||||
'||'=35
|
||||
'>>'=22
|
||||
'<<'=23
|
||||
'/'=24
|
||||
'=='=25
|
||||
'!='=26
|
||||
'<>'=27
|
||||
'<'=28
|
||||
'<='=29
|
||||
'=<'=30
|
||||
'>='=31
|
||||
'=>'=32
|
||||
'>'=33
|
||||
'and'=34
|
||||
'&&'=35
|
||||
'or'=36
|
||||
'||'=37
|
||||
|
@ -21,10 +21,10 @@ public class KickCLexer extends Lexer {
|
||||
T__9=10, T__10=11, T__11=12, T__12=13, T__13=14, T__14=15, T__15=16, T__16=17,
|
||||
T__17=18, T__18=19, T__19=20, T__20=21, T__21=22, T__22=23, T__23=24,
|
||||
T__24=25, T__25=26, T__26=27, T__27=28, T__28=29, T__29=30, T__30=31,
|
||||
T__31=32, T__32=33, T__33=34, T__34=35, SIMPLETYPE=36, STRING=37, BOOLEAN=38,
|
||||
NUMBER=39, NUMFLOAT=40, BINFLOAT=41, DECFLOAT=42, HEXFLOAT=43, NUMINT=44,
|
||||
BININTEGER=45, DECINTEGER=46, HEXINTEGER=47, NAME=48, WS=49, COMMENT_LINE=50,
|
||||
COMMENT_BLOCK=51;
|
||||
T__31=32, T__32=33, T__33=34, T__34=35, T__35=36, T__36=37, SIMPLETYPE=38,
|
||||
STRING=39, BOOLEAN=40, NUMBER=41, NUMFLOAT=42, BINFLOAT=43, DECFLOAT=44,
|
||||
HEXFLOAT=45, NUMINT=46, BININTEGER=47, DECINTEGER=48, HEXINTEGER=49, NAME=50,
|
||||
WS=51, COMMENT_LINE=52, COMMENT_BLOCK=53;
|
||||
public static String[] channelNames = {
|
||||
"DEFAULT_TOKEN_CHANNEL", "HIDDEN"
|
||||
};
|
||||
@ -38,25 +38,26 @@ public class KickCLexer extends Lexer {
|
||||
"T__9", "T__10", "T__11", "T__12", "T__13", "T__14", "T__15", "T__16",
|
||||
"T__17", "T__18", "T__19", "T__20", "T__21", "T__22", "T__23", "T__24",
|
||||
"T__25", "T__26", "T__27", "T__28", "T__29", "T__30", "T__31", "T__32",
|
||||
"T__33", "T__34", "SIMPLETYPE", "STRING", "BOOLEAN", "NUMBER", "NUMFLOAT",
|
||||
"BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER",
|
||||
"HEXINTEGER", "BINDIGIT", "DECDIGIT", "HEXDIGIT", "NAME", "NAME_START",
|
||||
"NAME_CHAR", "WS", "COMMENT_LINE", "COMMENT_BLOCK"
|
||||
"T__33", "T__34", "T__35", "T__36", "SIMPLETYPE", "STRING", "BOOLEAN",
|
||||
"NUMBER", "NUMFLOAT", "BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER",
|
||||
"DECINTEGER", "HEXINTEGER", "BINDIGIT", "DECDIGIT", "HEXDIGIT", "NAME",
|
||||
"NAME_START", "NAME_CHAR", "WS", "COMMENT_LINE", "COMMENT_BLOCK"
|
||||
};
|
||||
|
||||
private static final String[] _LITERAL_NAMES = {
|
||||
null, "'{'", "'}'", "'('", "')'", "'const'", "'='", "';'", "'if'", "'else'",
|
||||
"'while'", "'do'", "'return'", "','", "'*'", "'['", "']'", "'+'", "'-'",
|
||||
"'not'", "'!'", "'&'", "'/'", "'=='", "'!='", "'<>'", "'<'", "'<='", "'=<'",
|
||||
"'>='", "'=>'", "'>'", "'and'", "'&&'", "'or'", "'||'"
|
||||
"'not'", "'!'", "'&'", "'>>'", "'<<'", "'/'", "'=='", "'!='", "'<>'",
|
||||
"'<'", "'<='", "'=<'", "'>='", "'=>'", "'>'", "'and'", "'&&'", "'or'",
|
||||
"'||'"
|
||||
};
|
||||
private static final String[] _SYMBOLIC_NAMES = {
|
||||
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,
|
||||
"SIMPLETYPE", "STRING", "BOOLEAN", "NUMBER", "NUMFLOAT", "BINFLOAT", "DECFLOAT",
|
||||
"HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER", "NAME",
|
||||
"WS", "COMMENT_LINE", "COMMENT_BLOCK"
|
||||
null, null, "SIMPLETYPE", "STRING", "BOOLEAN", "NUMBER", "NUMFLOAT", "BINFLOAT",
|
||||
"DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER",
|
||||
"NAME", "WS", "COMMENT_LINE", "COMMENT_BLOCK"
|
||||
};
|
||||
public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES);
|
||||
|
||||
@ -116,148 +117,152 @@ public class KickCLexer extends Lexer {
|
||||
public ATN getATN() { return _ATN; }
|
||||
|
||||
public static final String _serializedATN =
|
||||
"\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\65\u019b\b\1\4\2"+
|
||||
"\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\67\u01a5\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\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*\4+\t"+
|
||||
"+\4,\t,\4-\t-\4.\t.\4/\t/\4\60\t\60\4\61\t\61\4\62\t\62\4\63\t\63\4\64"+
|
||||
"\t\64\4\65\t\65\4\66\t\66\4\67\t\67\48\t8\49\t9\3\2\3\2\3\3\3\3\3\4\3"+
|
||||
"\4\3\5\3\5\3\6\3\6\3\6\3\6\3\6\3\6\3\7\3\7\3\b\3\b\3\t\3\t\3\t\3\n\3\n"+
|
||||
"\3\n\3\n\3\n\3\13\3\13\3\13\3\13\3\13\3\13\3\f\3\f\3\f\3\r\3\r\3\r\3\r"+
|
||||
"\3\r\3\r\3\r\3\16\3\16\3\17\3\17\3\20\3\20\3\21\3\21\3\22\3\22\3\23\3"+
|
||||
"\23\3\24\3\24\3\24\3\24\3\25\3\25\3\26\3\26\3\27\3\27\3\30\3\30\3\30\3"+
|
||||
"\31\3\31\3\31\3\32\3\32\3\32\3\33\3\33\3\34\3\34\3\34\3\35\3\35\3\35\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%\5%\u00f3\n%\3&\3&\3&\3&\7&\u00f9\n&\f&\16&\u00fc\13&\3&"+
|
||||
"\3&\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\5\'\u0109\n\'\3(\3(\5(\u010d\n"+
|
||||
"(\3)\3)\3)\5)\u0112\n)\3*\3*\3*\3*\3*\5*\u0119\n*\3*\7*\u011c\n*\f*\16"+
|
||||
"*\u011f\13*\3*\3*\6*\u0123\n*\r*\16*\u0124\3+\7+\u0128\n+\f+\16+\u012b"+
|
||||
"\13+\3+\3+\6+\u012f\n+\r+\16+\u0130\3,\3,\3,\3,\3,\5,\u0138\n,\3,\7,\u013b"+
|
||||
"\n,\f,\16,\u013e\13,\3,\3,\6,\u0142\n,\r,\16,\u0143\3-\3-\3-\5-\u0149"+
|
||||
"\n-\3.\3.\3.\6.\u014e\n.\r.\16.\u014f\3.\3.\6.\u0154\n.\r.\16.\u0155\5"+
|
||||
".\u0158\n.\3/\6/\u015b\n/\r/\16/\u015c\3\60\3\60\3\60\3\60\3\60\5\60\u0164"+
|
||||
"\n\60\3\60\6\60\u0167\n\60\r\60\16\60\u0168\3\61\3\61\3\62\3\62\3\63\3"+
|
||||
"\63\3\64\3\64\7\64\u0173\n\64\f\64\16\64\u0176\13\64\3\65\3\65\3\66\3"+
|
||||
"\66\3\67\6\67\u017d\n\67\r\67\16\67\u017e\3\67\3\67\38\38\38\38\78\u0187"+
|
||||
"\n8\f8\168\u018a\138\38\38\39\39\39\39\79\u0192\n9\f9\169\u0195\139\3"+
|
||||
"9\39\39\39\39\3\u0193\2:\3\3\5\4\7\5\t\6\13\7\r\b\17\t\21\n\23\13\25\f"+
|
||||
"\t\64\4\65\t\65\4\66\t\66\4\67\t\67\48\t8\49\t9\4:\t:\4;\t;\3\2\3\2\3"+
|
||||
"\3\3\3\3\4\3\4\3\5\3\5\3\6\3\6\3\6\3\6\3\6\3\6\3\7\3\7\3\b\3\b\3\t\3\t"+
|
||||
"\3\t\3\n\3\n\3\n\3\n\3\n\3\13\3\13\3\13\3\13\3\13\3\13\3\f\3\f\3\f\3\r"+
|
||||
"\3\r\3\r\3\r\3\r\3\r\3\r\3\16\3\16\3\17\3\17\3\20\3\20\3\21\3\21\3\22"+
|
||||
"\3\22\3\23\3\23\3\24\3\24\3\24\3\24\3\25\3\25\3\26\3\26\3\27\3\27\3\27"+
|
||||
"\3\30\3\30\3\30\3\31\3\31\3\32\3\32\3\32\3\33\3\33\3\33\3\34\3\34\3\34"+
|
||||
"\3\35\3\35\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\'\5\'"+
|
||||
"\u00fd\n\'\3(\3(\3(\3(\7(\u0103\n(\f(\16(\u0106\13(\3(\3(\3)\3)\3)\3)"+
|
||||
"\3)\3)\3)\3)\3)\5)\u0113\n)\3*\3*\5*\u0117\n*\3+\3+\3+\5+\u011c\n+\3,"+
|
||||
"\3,\3,\3,\3,\5,\u0123\n,\3,\7,\u0126\n,\f,\16,\u0129\13,\3,\3,\6,\u012d"+
|
||||
"\n,\r,\16,\u012e\3-\7-\u0132\n-\f-\16-\u0135\13-\3-\3-\6-\u0139\n-\r-"+
|
||||
"\16-\u013a\3.\3.\3.\3.\3.\5.\u0142\n.\3.\7.\u0145\n.\f.\16.\u0148\13."+
|
||||
"\3.\3.\6.\u014c\n.\r.\16.\u014d\3/\3/\3/\5/\u0153\n/\3\60\3\60\3\60\6"+
|
||||
"\60\u0158\n\60\r\60\16\60\u0159\3\60\3\60\6\60\u015e\n\60\r\60\16\60\u015f"+
|
||||
"\5\60\u0162\n\60\3\61\6\61\u0165\n\61\r\61\16\61\u0166\3\62\3\62\3\62"+
|
||||
"\3\62\3\62\5\62\u016e\n\62\3\62\6\62\u0171\n\62\r\62\16\62\u0172\3\63"+
|
||||
"\3\63\3\64\3\64\3\65\3\65\3\66\3\66\7\66\u017d\n\66\f\66\16\66\u0180\13"+
|
||||
"\66\3\67\3\67\38\38\39\69\u0187\n9\r9\169\u0188\39\39\3:\3:\3:\3:\7:\u0191"+
|
||||
"\n:\f:\16:\u0194\13:\3:\3:\3;\3;\3;\3;\7;\u019c\n;\f;\16;\u019f\13;\3"+
|
||||
";\3;\3;\3;\3;\3\u019d\2<\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\2c"+
|
||||
"\2e\2g\62i\2k\2m\63o\64q\65\3\2\13\3\2$$\4\2DDdd\3\2\62\63\3\2\62;\5\2"+
|
||||
"\62;CHch\5\2C\\aac|\6\2\62;C\\aac|\5\2\13\f\17\17\"\"\4\2\f\f\17\17\2"+
|
||||
"\u01b6\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\2"+
|
||||
"G\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_\3\2\2"+
|
||||
"\2\2g\3\2\2\2\2m\3\2\2\2\2o\3\2\2\2\2q\3\2\2\2\3s\3\2\2\2\5u\3\2\2\2\7"+
|
||||
"w\3\2\2\2\ty\3\2\2\2\13{\3\2\2\2\r\u0081\3\2\2\2\17\u0083\3\2\2\2\21\u0085"+
|
||||
"\3\2\2\2\23\u0088\3\2\2\2\25\u008d\3\2\2\2\27\u0093\3\2\2\2\31\u0096\3"+
|
||||
"\2\2\2\33\u009d\3\2\2\2\35\u009f\3\2\2\2\37\u00a1\3\2\2\2!\u00a3\3\2\2"+
|
||||
"\2#\u00a5\3\2\2\2%\u00a7\3\2\2\2\'\u00a9\3\2\2\2)\u00ad\3\2\2\2+\u00af"+
|
||||
"\3\2\2\2-\u00b1\3\2\2\2/\u00b3\3\2\2\2\61\u00b6\3\2\2\2\63\u00b9\3\2\2"+
|
||||
"\2\65\u00bc\3\2\2\2\67\u00be\3\2\2\29\u00c1\3\2\2\2;\u00c4\3\2\2\2=\u00c7"+
|
||||
"\3\2\2\2?\u00ca\3\2\2\2A\u00cc\3\2\2\2C\u00d0\3\2\2\2E\u00d3\3\2\2\2G"+
|
||||
"\u00d6\3\2\2\2I\u00f2\3\2\2\2K\u00f4\3\2\2\2M\u0108\3\2\2\2O\u010c\3\2"+
|
||||
"\2\2Q\u0111\3\2\2\2S\u0118\3\2\2\2U\u0129\3\2\2\2W\u0137\3\2\2\2Y\u0148"+
|
||||
"\3\2\2\2[\u0157\3\2\2\2]\u015a\3\2\2\2_\u0163\3\2\2\2a\u016a\3\2\2\2c"+
|
||||
"\u016c\3\2\2\2e\u016e\3\2\2\2g\u0170\3\2\2\2i\u0177\3\2\2\2k\u0179\3\2"+
|
||||
"\2\2m\u017c\3\2\2\2o\u0182\3\2\2\2q\u018d\3\2\2\2st\7}\2\2t\4\3\2\2\2"+
|
||||
"uv\7\177\2\2v\6\3\2\2\2wx\7*\2\2x\b\3\2\2\2yz\7+\2\2z\n\3\2\2\2{|\7e\2"+
|
||||
"\2|}\7q\2\2}~\7p\2\2~\177\7u\2\2\177\u0080\7v\2\2\u0080\f\3\2\2\2\u0081"+
|
||||
"\u0082\7?\2\2\u0082\16\3\2\2\2\u0083\u0084\7=\2\2\u0084\20\3\2\2\2\u0085"+
|
||||
"\u0086\7k\2\2\u0086\u0087\7h\2\2\u0087\22\3\2\2\2\u0088\u0089\7g\2\2\u0089"+
|
||||
"\u008a\7n\2\2\u008a\u008b\7u\2\2\u008b\u008c\7g\2\2\u008c\24\3\2\2\2\u008d"+
|
||||
"\u008e\7y\2\2\u008e\u008f\7j\2\2\u008f\u0090\7k\2\2\u0090\u0091\7n\2\2"+
|
||||
"\u0091\u0092\7g\2\2\u0092\26\3\2\2\2\u0093\u0094\7f\2\2\u0094\u0095\7"+
|
||||
"q\2\2\u0095\30\3\2\2\2\u0096\u0097\7t\2\2\u0097\u0098\7g\2\2\u0098\u0099"+
|
||||
"\7v\2\2\u0099\u009a\7w\2\2\u009a\u009b\7t\2\2\u009b\u009c\7p\2\2\u009c"+
|
||||
"\32\3\2\2\2\u009d\u009e\7.\2\2\u009e\34\3\2\2\2\u009f\u00a0\7,\2\2\u00a0"+
|
||||
"\36\3\2\2\2\u00a1\u00a2\7]\2\2\u00a2 \3\2\2\2\u00a3\u00a4\7_\2\2\u00a4"+
|
||||
"\"\3\2\2\2\u00a5\u00a6\7-\2\2\u00a6$\3\2\2\2\u00a7\u00a8\7/\2\2\u00a8"+
|
||||
"&\3\2\2\2\u00a9\u00aa\7p\2\2\u00aa\u00ab\7q\2\2\u00ab\u00ac\7v\2\2\u00ac"+
|
||||
"(\3\2\2\2\u00ad\u00ae\7#\2\2\u00ae*\3\2\2\2\u00af\u00b0\7(\2\2\u00b0,"+
|
||||
"\3\2\2\2\u00b1\u00b2\7\61\2\2\u00b2.\3\2\2\2\u00b3\u00b4\7?\2\2\u00b4"+
|
||||
"\u00b5\7?\2\2\u00b5\60\3\2\2\2\u00b6\u00b7\7#\2\2\u00b7\u00b8\7?\2\2\u00b8"+
|
||||
"\62\3\2\2\2\u00b9\u00ba\7>\2\2\u00ba\u00bb\7@\2\2\u00bb\64\3\2\2\2\u00bc"+
|
||||
"\u00bd\7>\2\2\u00bd\66\3\2\2\2\u00be\u00bf\7>\2\2\u00bf\u00c0\7?\2\2\u00c0"+
|
||||
"8\3\2\2\2\u00c1\u00c2\7?\2\2\u00c2\u00c3\7>\2\2\u00c3:\3\2\2\2\u00c4\u00c5"+
|
||||
"\7@\2\2\u00c5\u00c6\7?\2\2\u00c6<\3\2\2\2\u00c7\u00c8\7?\2\2\u00c8\u00c9"+
|
||||
"\7@\2\2\u00c9>\3\2\2\2\u00ca\u00cb\7@\2\2\u00cb@\3\2\2\2\u00cc\u00cd\7"+
|
||||
"c\2\2\u00cd\u00ce\7p\2\2\u00ce\u00cf\7f\2\2\u00cfB\3\2\2\2\u00d0\u00d1"+
|
||||
"\7(\2\2\u00d1\u00d2\7(\2\2\u00d2D\3\2\2\2\u00d3\u00d4\7q\2\2\u00d4\u00d5"+
|
||||
"\7t\2\2\u00d5F\3\2\2\2\u00d6\u00d7\7~\2\2\u00d7\u00d8\7~\2\2\u00d8H\3"+
|
||||
"\2\2\2\u00d9\u00da\7d\2\2\u00da\u00db\7{\2\2\u00db\u00dc\7v\2\2\u00dc"+
|
||||
"\u00f3\7g\2\2\u00dd\u00de\7y\2\2\u00de\u00df\7q\2\2\u00df\u00e0\7t\2\2"+
|
||||
"\u00e0\u00f3\7f\2\2\u00e1\u00e2\7u\2\2\u00e2\u00e3\7v\2\2\u00e3\u00e4"+
|
||||
"\7t\2\2\u00e4\u00e5\7k\2\2\u00e5\u00e6\7p\2\2\u00e6\u00f3\7i\2\2\u00e7"+
|
||||
"\u00e8\7d\2\2\u00e8\u00e9\7q\2\2\u00e9\u00ea\7q\2\2\u00ea\u00eb\7n\2\2"+
|
||||
"\u00eb\u00ec\7g\2\2\u00ec\u00ed\7c\2\2\u00ed\u00f3\7p\2\2\u00ee\u00ef"+
|
||||
"\7x\2\2\u00ef\u00f0\7q\2\2\u00f0\u00f1\7k\2\2\u00f1\u00f3\7f\2\2\u00f2"+
|
||||
"\u00d9\3\2\2\2\u00f2\u00dd\3\2\2\2\u00f2\u00e1\3\2\2\2\u00f2\u00e7\3\2"+
|
||||
"\2\2\u00f2\u00ee\3\2\2\2\u00f3J\3\2\2\2\u00f4\u00fa\7$\2\2\u00f5\u00f6"+
|
||||
"\7^\2\2\u00f6\u00f9\7$\2\2\u00f7\u00f9\n\2\2\2\u00f8\u00f5\3\2\2\2\u00f8"+
|
||||
"\u00f7\3\2\2\2\u00f9\u00fc\3\2\2\2\u00fa\u00f8\3\2\2\2\u00fa\u00fb\3\2"+
|
||||
"\2\2\u00fb\u00fd\3\2\2\2\u00fc\u00fa\3\2\2\2\u00fd\u00fe\7$\2\2\u00fe"+
|
||||
"L\3\2\2\2\u00ff\u0100\7v\2\2\u0100\u0101\7t\2\2\u0101\u0102\7w\2\2\u0102"+
|
||||
"\u0109\7g\2\2\u0103\u0104\7h\2\2\u0104\u0105\7c\2\2\u0105\u0106\7n\2\2"+
|
||||
"\u0106\u0107\7u\2\2\u0107\u0109\7g\2\2\u0108\u00ff\3\2\2\2\u0108\u0103"+
|
||||
"\3\2\2\2\u0109N\3\2\2\2\u010a\u010d\5Q)\2\u010b\u010d\5Y-\2\u010c\u010a"+
|
||||
"\3\2\2\2\u010c\u010b\3\2\2\2\u010dP\3\2\2\2\u010e\u0112\5S*\2\u010f\u0112"+
|
||||
"\5U+\2\u0110\u0112\5W,\2\u0111\u010e\3\2\2\2\u0111\u010f\3\2\2\2\u0111"+
|
||||
"\u0110\3\2\2\2\u0112R\3\2\2\2\u0113\u0119\7\'\2\2\u0114\u0115\7\62\2\2"+
|
||||
"\u0115\u0119\7d\2\2\u0116\u0117\7\62\2\2\u0117\u0119\7D\2\2\u0118\u0113"+
|
||||
"\3\2\2\2\u0118\u0114\3\2\2\2\u0118\u0116\3\2\2\2\u0119\u011d\3\2\2\2\u011a"+
|
||||
"\u011c\5a\61\2\u011b\u011a\3\2\2\2\u011c\u011f\3\2\2\2\u011d\u011b\3\2"+
|
||||
"\2\2\u011d\u011e\3\2\2\2\u011e\u0120\3\2\2\2\u011f\u011d\3\2\2\2\u0120"+
|
||||
"\u0122\7\60\2\2\u0121\u0123\5a\61\2\u0122\u0121\3\2\2\2\u0123\u0124\3"+
|
||||
"\2\2\2\u0124\u0122\3\2\2\2\u0124\u0125\3\2\2\2\u0125T\3\2\2\2\u0126\u0128"+
|
||||
"\5c\62\2\u0127\u0126\3\2\2\2\u0128\u012b\3\2\2\2\u0129\u0127\3\2\2\2\u0129"+
|
||||
"\u012a\3\2\2\2\u012a\u012c\3\2\2\2\u012b\u0129\3\2\2\2\u012c\u012e\7\60"+
|
||||
"\2\2\u012d\u012f\5c\62\2\u012e\u012d\3\2\2\2\u012f\u0130\3\2\2\2\u0130"+
|
||||
"\u012e\3\2\2\2\u0130\u0131\3\2\2\2\u0131V\3\2\2\2\u0132\u0138\7&\2\2\u0133"+
|
||||
"\u0134\7\62\2\2\u0134\u0138\7z\2\2\u0135\u0136\7\62\2\2\u0136\u0138\7"+
|
||||
"Z\2\2\u0137\u0132\3\2\2\2\u0137\u0133\3\2\2\2\u0137\u0135\3\2\2\2\u0138"+
|
||||
"\u013c\3\2\2\2\u0139\u013b\5e\63\2\u013a\u0139\3\2\2\2\u013b\u013e\3\2"+
|
||||
"\2\2\u013c\u013a\3\2\2\2\u013c\u013d\3\2\2\2\u013d\u013f\3\2\2\2\u013e"+
|
||||
"\u013c\3\2\2\2\u013f\u0141\7\60\2\2\u0140\u0142\5e\63\2\u0141\u0140\3"+
|
||||
"\2\2\2\u0142\u0143\3\2\2\2\u0143\u0141\3\2\2\2\u0143\u0144\3\2\2\2\u0144"+
|
||||
"X\3\2\2\2\u0145\u0149\5]/\2\u0146\u0149\5_\60\2\u0147\u0149\5[.\2\u0148"+
|
||||
"\u0145\3\2\2\2\u0148\u0146\3\2\2\2\u0148\u0147\3\2\2\2\u0149Z\3\2\2\2"+
|
||||
"\u014a\u014b\7\62\2\2\u014b\u014d\t\3\2\2\u014c\u014e\5a\61\2\u014d\u014c"+
|
||||
"\3\2\2\2\u014e\u014f\3\2\2\2\u014f\u014d\3\2\2\2\u014f\u0150\3\2\2\2\u0150"+
|
||||
"\u0158\3\2\2\2\u0151\u0153\7\'\2\2\u0152\u0154\5a\61\2\u0153\u0152\3\2"+
|
||||
"\2\2\u0154\u0155\3\2\2\2\u0155\u0153\3\2\2\2\u0155\u0156\3\2\2\2\u0156"+
|
||||
"\u0158\3\2\2\2\u0157\u014a\3\2\2\2\u0157\u0151\3\2\2\2\u0158\\\3\2\2\2"+
|
||||
"\u0159\u015b\5c\62\2\u015a\u0159\3\2\2\2\u015b\u015c\3\2\2\2\u015c\u015a"+
|
||||
"\3\2\2\2\u015c\u015d\3\2\2\2\u015d^\3\2\2\2\u015e\u0164\7&\2\2\u015f\u0160"+
|
||||
"\7\62\2\2\u0160\u0164\7z\2\2\u0161\u0162\7\62\2\2\u0162\u0164\7Z\2\2\u0163"+
|
||||
"\u015e\3\2\2\2\u0163\u015f\3\2\2\2\u0163\u0161\3\2\2\2\u0164\u0166\3\2"+
|
||||
"\2\2\u0165\u0167\5e\63\2\u0166\u0165\3\2\2\2\u0167\u0168\3\2\2\2\u0168"+
|
||||
"\u0166\3\2\2\2\u0168\u0169\3\2\2\2\u0169`\3\2\2\2\u016a\u016b\t\4\2\2"+
|
||||
"\u016bb\3\2\2\2\u016c\u016d\t\5\2\2\u016dd\3\2\2\2\u016e\u016f\t\6\2\2"+
|
||||
"\u016ff\3\2\2\2\u0170\u0174\5i\65\2\u0171\u0173\5k\66\2\u0172\u0171\3"+
|
||||
"\2\2\2\u0173\u0176\3\2\2\2\u0174\u0172\3\2\2\2\u0174\u0175\3\2\2\2\u0175"+
|
||||
"h\3\2\2\2\u0176\u0174\3\2\2\2\u0177\u0178\t\7\2\2\u0178j\3\2\2\2\u0179"+
|
||||
"\u017a\t\b\2\2\u017al\3\2\2\2\u017b\u017d\t\t\2\2\u017c\u017b\3\2\2\2"+
|
||||
"\u017d\u017e\3\2\2\2\u017e\u017c\3\2\2\2\u017e\u017f\3\2\2\2\u017f\u0180"+
|
||||
"\3\2\2\2\u0180\u0181\b\67\2\2\u0181n\3\2\2\2\u0182\u0183\7\61\2\2\u0183"+
|
||||
"\u0184\7\61\2\2\u0184\u0188\3\2\2\2\u0185\u0187\n\n\2\2\u0186\u0185\3"+
|
||||
"\2\2\2\u0187\u018a\3\2\2\2\u0188\u0186\3\2\2\2\u0188\u0189\3\2\2\2\u0189"+
|
||||
"\u018b\3\2\2\2\u018a\u0188\3\2\2\2\u018b\u018c\b8\2\2\u018cp\3\2\2\2\u018d"+
|
||||
"\u018e\7\61\2\2\u018e\u018f\7,\2\2\u018f\u0193\3\2\2\2\u0190\u0192\13"+
|
||||
"\2\2\2\u0191\u0190\3\2\2\2\u0192\u0195\3\2\2\2\u0193\u0194\3\2\2\2\u0193"+
|
||||
"\u0191\3\2\2\2\u0194\u0196\3\2\2\2\u0195\u0193\3\2\2\2\u0196\u0197\7,"+
|
||||
"\2\2\u0197\u0198\7\61\2\2\u0198\u0199\3\2\2\2\u0199\u019a\b9\2\2\u019a"+
|
||||
"r\3\2\2\2\34\2\u00f2\u00f8\u00fa\u0108\u010c\u0111\u0118\u011d\u0124\u0129"+
|
||||
"\u0130\u0137\u013c\u0143\u0148\u014f\u0155\u0157\u015c\u0163\u0168\u0174"+
|
||||
"\u017e\u0188\u0193\3\b\2\2";
|
||||
"\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\2g\2i\2k\64m\2o\2q\65s\66u\67\3\2\13\3\2$$\4\2DDdd\3\2\62\63\3\2"+
|
||||
"\62;\5\2\62;CHch\5\2C\\aac|\6\2\62;C\\aac|\5\2\13\f\17\17\"\"\4\2\f\f"+
|
||||
"\17\17\2\u01c0\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\2"+
|
||||
"9\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"+
|
||||
"_\3\2\2\2\2a\3\2\2\2\2c\3\2\2\2\2k\3\2\2\2\2q\3\2\2\2\2s\3\2\2\2\2u\3"+
|
||||
"\2\2\2\3w\3\2\2\2\5y\3\2\2\2\7{\3\2\2\2\t}\3\2\2\2\13\177\3\2\2\2\r\u0085"+
|
||||
"\3\2\2\2\17\u0087\3\2\2\2\21\u0089\3\2\2\2\23\u008c\3\2\2\2\25\u0091\3"+
|
||||
"\2\2\2\27\u0097\3\2\2\2\31\u009a\3\2\2\2\33\u00a1\3\2\2\2\35\u00a3\3\2"+
|
||||
"\2\2\37\u00a5\3\2\2\2!\u00a7\3\2\2\2#\u00a9\3\2\2\2%\u00ab\3\2\2\2\'\u00ad"+
|
||||
"\3\2\2\2)\u00b1\3\2\2\2+\u00b3\3\2\2\2-\u00b5\3\2\2\2/\u00b8\3\2\2\2\61"+
|
||||
"\u00bb\3\2\2\2\63\u00bd\3\2\2\2\65\u00c0\3\2\2\2\67\u00c3\3\2\2\29\u00c6"+
|
||||
"\3\2\2\2;\u00c8\3\2\2\2=\u00cb\3\2\2\2?\u00ce\3\2\2\2A\u00d1\3\2\2\2C"+
|
||||
"\u00d4\3\2\2\2E\u00d6\3\2\2\2G\u00da\3\2\2\2I\u00dd\3\2\2\2K\u00e0\3\2"+
|
||||
"\2\2M\u00fc\3\2\2\2O\u00fe\3\2\2\2Q\u0112\3\2\2\2S\u0116\3\2\2\2U\u011b"+
|
||||
"\3\2\2\2W\u0122\3\2\2\2Y\u0133\3\2\2\2[\u0141\3\2\2\2]\u0152\3\2\2\2_"+
|
||||
"\u0161\3\2\2\2a\u0164\3\2\2\2c\u016d\3\2\2\2e\u0174\3\2\2\2g\u0176\3\2"+
|
||||
"\2\2i\u0178\3\2\2\2k\u017a\3\2\2\2m\u0181\3\2\2\2o\u0183\3\2\2\2q\u0186"+
|
||||
"\3\2\2\2s\u018c\3\2\2\2u\u0197\3\2\2\2wx\7}\2\2x\4\3\2\2\2yz\7\177\2\2"+
|
||||
"z\6\3\2\2\2{|\7*\2\2|\b\3\2\2\2}~\7+\2\2~\n\3\2\2\2\177\u0080\7e\2\2\u0080"+
|
||||
"\u0081\7q\2\2\u0081\u0082\7p\2\2\u0082\u0083\7u\2\2\u0083\u0084\7v\2\2"+
|
||||
"\u0084\f\3\2\2\2\u0085\u0086\7?\2\2\u0086\16\3\2\2\2\u0087\u0088\7=\2"+
|
||||
"\2\u0088\20\3\2\2\2\u0089\u008a\7k\2\2\u008a\u008b\7h\2\2\u008b\22\3\2"+
|
||||
"\2\2\u008c\u008d\7g\2\2\u008d\u008e\7n\2\2\u008e\u008f\7u\2\2\u008f\u0090"+
|
||||
"\7g\2\2\u0090\24\3\2\2\2\u0091\u0092\7y\2\2\u0092\u0093\7j\2\2\u0093\u0094"+
|
||||
"\7k\2\2\u0094\u0095\7n\2\2\u0095\u0096\7g\2\2\u0096\26\3\2\2\2\u0097\u0098"+
|
||||
"\7f\2\2\u0098\u0099\7q\2\2\u0099\30\3\2\2\2\u009a\u009b\7t\2\2\u009b\u009c"+
|
||||
"\7g\2\2\u009c\u009d\7v\2\2\u009d\u009e\7w\2\2\u009e\u009f\7t\2\2\u009f"+
|
||||
"\u00a0\7p\2\2\u00a0\32\3\2\2\2\u00a1\u00a2\7.\2\2\u00a2\34\3\2\2\2\u00a3"+
|
||||
"\u00a4\7,\2\2\u00a4\36\3\2\2\2\u00a5\u00a6\7]\2\2\u00a6 \3\2\2\2\u00a7"+
|
||||
"\u00a8\7_\2\2\u00a8\"\3\2\2\2\u00a9\u00aa\7-\2\2\u00aa$\3\2\2\2\u00ab"+
|
||||
"\u00ac\7/\2\2\u00ac&\3\2\2\2\u00ad\u00ae\7p\2\2\u00ae\u00af\7q\2\2\u00af"+
|
||||
"\u00b0\7v\2\2\u00b0(\3\2\2\2\u00b1\u00b2\7#\2\2\u00b2*\3\2\2\2\u00b3\u00b4"+
|
||||
"\7(\2\2\u00b4,\3\2\2\2\u00b5\u00b6\7@\2\2\u00b6\u00b7\7@\2\2\u00b7.\3"+
|
||||
"\2\2\2\u00b8\u00b9\7>\2\2\u00b9\u00ba\7>\2\2\u00ba\60\3\2\2\2\u00bb\u00bc"+
|
||||
"\7\61\2\2\u00bc\62\3\2\2\2\u00bd\u00be\7?\2\2\u00be\u00bf\7?\2\2\u00bf"+
|
||||
"\64\3\2\2\2\u00c0\u00c1\7#\2\2\u00c1\u00c2\7?\2\2\u00c2\66\3\2\2\2\u00c3"+
|
||||
"\u00c4\7>\2\2\u00c4\u00c5\7@\2\2\u00c58\3\2\2\2\u00c6\u00c7\7>\2\2\u00c7"+
|
||||
":\3\2\2\2\u00c8\u00c9\7>\2\2\u00c9\u00ca\7?\2\2\u00ca<\3\2\2\2\u00cb\u00cc"+
|
||||
"\7?\2\2\u00cc\u00cd\7>\2\2\u00cd>\3\2\2\2\u00ce\u00cf\7@\2\2\u00cf\u00d0"+
|
||||
"\7?\2\2\u00d0@\3\2\2\2\u00d1\u00d2\7?\2\2\u00d2\u00d3\7@\2\2\u00d3B\3"+
|
||||
"\2\2\2\u00d4\u00d5\7@\2\2\u00d5D\3\2\2\2\u00d6\u00d7\7c\2\2\u00d7\u00d8"+
|
||||
"\7p\2\2\u00d8\u00d9\7f\2\2\u00d9F\3\2\2\2\u00da\u00db\7(\2\2\u00db\u00dc"+
|
||||
"\7(\2\2\u00dcH\3\2\2\2\u00dd\u00de\7q\2\2\u00de\u00df\7t\2\2\u00dfJ\3"+
|
||||
"\2\2\2\u00e0\u00e1\7~\2\2\u00e1\u00e2\7~\2\2\u00e2L\3\2\2\2\u00e3\u00e4"+
|
||||
"\7d\2\2\u00e4\u00e5\7{\2\2\u00e5\u00e6\7v\2\2\u00e6\u00fd\7g\2\2\u00e7"+
|
||||
"\u00e8\7y\2\2\u00e8\u00e9\7q\2\2\u00e9\u00ea\7t\2\2\u00ea\u00fd\7f\2\2"+
|
||||
"\u00eb\u00ec\7u\2\2\u00ec\u00ed\7v\2\2\u00ed\u00ee\7t\2\2\u00ee\u00ef"+
|
||||
"\7k\2\2\u00ef\u00f0\7p\2\2\u00f0\u00fd\7i\2\2\u00f1\u00f2\7d\2\2\u00f2"+
|
||||
"\u00f3\7q\2\2\u00f3\u00f4\7q\2\2\u00f4\u00f5\7n\2\2\u00f5\u00f6\7g\2\2"+
|
||||
"\u00f6\u00f7\7c\2\2\u00f7\u00fd\7p\2\2\u00f8\u00f9\7x\2\2\u00f9\u00fa"+
|
||||
"\7q\2\2\u00fa\u00fb\7k\2\2\u00fb\u00fd\7f\2\2\u00fc\u00e3\3\2\2\2\u00fc"+
|
||||
"\u00e7\3\2\2\2\u00fc\u00eb\3\2\2\2\u00fc\u00f1\3\2\2\2\u00fc\u00f8\3\2"+
|
||||
"\2\2\u00fdN\3\2\2\2\u00fe\u0104\7$\2\2\u00ff\u0100\7^\2\2\u0100\u0103"+
|
||||
"\7$\2\2\u0101\u0103\n\2\2\2\u0102\u00ff\3\2\2\2\u0102\u0101\3\2\2\2\u0103"+
|
||||
"\u0106\3\2\2\2\u0104\u0102\3\2\2\2\u0104\u0105\3\2\2\2\u0105\u0107\3\2"+
|
||||
"\2\2\u0106\u0104\3\2\2\2\u0107\u0108\7$\2\2\u0108P\3\2\2\2\u0109\u010a"+
|
||||
"\7v\2\2\u010a\u010b\7t\2\2\u010b\u010c\7w\2\2\u010c\u0113\7g\2\2\u010d"+
|
||||
"\u010e\7h\2\2\u010e\u010f\7c\2\2\u010f\u0110\7n\2\2\u0110\u0111\7u\2\2"+
|
||||
"\u0111\u0113\7g\2\2\u0112\u0109\3\2\2\2\u0112\u010d\3\2\2\2\u0113R\3\2"+
|
||||
"\2\2\u0114\u0117\5U+\2\u0115\u0117\5]/\2\u0116\u0114\3\2\2\2\u0116\u0115"+
|
||||
"\3\2\2\2\u0117T\3\2\2\2\u0118\u011c\5W,\2\u0119\u011c\5Y-\2\u011a\u011c"+
|
||||
"\5[.\2\u011b\u0118\3\2\2\2\u011b\u0119\3\2\2\2\u011b\u011a\3\2\2\2\u011c"+
|
||||
"V\3\2\2\2\u011d\u0123\7\'\2\2\u011e\u011f\7\62\2\2\u011f\u0123\7d\2\2"+
|
||||
"\u0120\u0121\7\62\2\2\u0121\u0123\7D\2\2\u0122\u011d\3\2\2\2\u0122\u011e"+
|
||||
"\3\2\2\2\u0122\u0120\3\2\2\2\u0123\u0127\3\2\2\2\u0124\u0126\5e\63\2\u0125"+
|
||||
"\u0124\3\2\2\2\u0126\u0129\3\2\2\2\u0127\u0125\3\2\2\2\u0127\u0128\3\2"+
|
||||
"\2\2\u0128\u012a\3\2\2\2\u0129\u0127\3\2\2\2\u012a\u012c\7\60\2\2\u012b"+
|
||||
"\u012d\5e\63\2\u012c\u012b\3\2\2\2\u012d\u012e\3\2\2\2\u012e\u012c\3\2"+
|
||||
"\2\2\u012e\u012f\3\2\2\2\u012fX\3\2\2\2\u0130\u0132\5g\64\2\u0131\u0130"+
|
||||
"\3\2\2\2\u0132\u0135\3\2\2\2\u0133\u0131\3\2\2\2\u0133\u0134\3\2\2\2\u0134"+
|
||||
"\u0136\3\2\2\2\u0135\u0133\3\2\2\2\u0136\u0138\7\60\2\2\u0137\u0139\5"+
|
||||
"g\64\2\u0138\u0137\3\2\2\2\u0139\u013a\3\2\2\2\u013a\u0138\3\2\2\2\u013a"+
|
||||
"\u013b\3\2\2\2\u013bZ\3\2\2\2\u013c\u0142\7&\2\2\u013d\u013e\7\62\2\2"+
|
||||
"\u013e\u0142\7z\2\2\u013f\u0140\7\62\2\2\u0140\u0142\7Z\2\2\u0141\u013c"+
|
||||
"\3\2\2\2\u0141\u013d\3\2\2\2\u0141\u013f\3\2\2\2\u0142\u0146\3\2\2\2\u0143"+
|
||||
"\u0145\5i\65\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"+
|
||||
"\u014b\7\60\2\2\u014a\u014c\5i\65\2\u014b\u014a\3\2\2\2\u014c\u014d\3"+
|
||||
"\2\2\2\u014d\u014b\3\2\2\2\u014d\u014e\3\2\2\2\u014e\\\3\2\2\2\u014f\u0153"+
|
||||
"\5a\61\2\u0150\u0153\5c\62\2\u0151\u0153\5_\60\2\u0152\u014f\3\2\2\2\u0152"+
|
||||
"\u0150\3\2\2\2\u0152\u0151\3\2\2\2\u0153^\3\2\2\2\u0154\u0155\7\62\2\2"+
|
||||
"\u0155\u0157\t\3\2\2\u0156\u0158\5e\63\2\u0157\u0156\3\2\2\2\u0158\u0159"+
|
||||
"\3\2\2\2\u0159\u0157\3\2\2\2\u0159\u015a\3\2\2\2\u015a\u0162\3\2\2\2\u015b"+
|
||||
"\u015d\7\'\2\2\u015c\u015e\5e\63\2\u015d\u015c\3\2\2\2\u015e\u015f\3\2"+
|
||||
"\2\2\u015f\u015d\3\2\2\2\u015f\u0160\3\2\2\2\u0160\u0162\3\2\2\2\u0161"+
|
||||
"\u0154\3\2\2\2\u0161\u015b\3\2\2\2\u0162`\3\2\2\2\u0163\u0165\5g\64\2"+
|
||||
"\u0164\u0163\3\2\2\2\u0165\u0166\3\2\2\2\u0166\u0164\3\2\2\2\u0166\u0167"+
|
||||
"\3\2\2\2\u0167b\3\2\2\2\u0168\u016e\7&\2\2\u0169\u016a\7\62\2\2\u016a"+
|
||||
"\u016e\7z\2\2\u016b\u016c\7\62\2\2\u016c\u016e\7Z\2\2\u016d\u0168\3\2"+
|
||||
"\2\2\u016d\u0169\3\2\2\2\u016d\u016b\3\2\2\2\u016e\u0170\3\2\2\2\u016f"+
|
||||
"\u0171\5i\65\2\u0170\u016f\3\2\2\2\u0171\u0172\3\2\2\2\u0172\u0170\3\2"+
|
||||
"\2\2\u0172\u0173\3\2\2\2\u0173d\3\2\2\2\u0174\u0175\t\4\2\2\u0175f\3\2"+
|
||||
"\2\2\u0176\u0177\t\5\2\2\u0177h\3\2\2\2\u0178\u0179\t\6\2\2\u0179j\3\2"+
|
||||
"\2\2\u017a\u017e\5m\67\2\u017b\u017d\5o8\2\u017c\u017b\3\2\2\2\u017d\u0180"+
|
||||
"\3\2\2\2\u017e\u017c\3\2\2\2\u017e\u017f\3\2\2\2\u017fl\3\2\2\2\u0180"+
|
||||
"\u017e\3\2\2\2\u0181\u0182\t\7\2\2\u0182n\3\2\2\2\u0183\u0184\t\b\2\2"+
|
||||
"\u0184p\3\2\2\2\u0185\u0187\t\t\2\2\u0186\u0185\3\2\2\2\u0187\u0188\3"+
|
||||
"\2\2\2\u0188\u0186\3\2\2\2\u0188\u0189\3\2\2\2\u0189\u018a\3\2\2\2\u018a"+
|
||||
"\u018b\b9\2\2\u018br\3\2\2\2\u018c\u018d\7\61\2\2\u018d\u018e\7\61\2\2"+
|
||||
"\u018e\u0192\3\2\2\2\u018f\u0191\n\n\2\2\u0190\u018f\3\2\2\2\u0191\u0194"+
|
||||
"\3\2\2\2\u0192\u0190\3\2\2\2\u0192\u0193\3\2\2\2\u0193\u0195\3\2\2\2\u0194"+
|
||||
"\u0192\3\2\2\2\u0195\u0196\b:\2\2\u0196t\3\2\2\2\u0197\u0198\7\61\2\2"+
|
||||
"\u0198\u0199\7,\2\2\u0199\u019d\3\2\2\2\u019a\u019c\13\2\2\2\u019b\u019a"+
|
||||
"\3\2\2\2\u019c\u019f\3\2\2\2\u019d\u019e\3\2\2\2\u019d\u019b\3\2\2\2\u019e"+
|
||||
"\u01a0\3\2\2\2\u019f\u019d\3\2\2\2\u01a0\u01a1\7,\2\2\u01a1\u01a2\7\61"+
|
||||
"\2\2\u01a2\u01a3\3\2\2\2\u01a3\u01a4\b;\2\2\u01a4v\3\2\2\2\34\2\u00fc"+
|
||||
"\u0102\u0104\u0112\u0116\u011b\u0122\u0127\u012e\u0133\u013a\u0141\u0146"+
|
||||
"\u014d\u0152\u0159\u015f\u0161\u0166\u016d\u0172\u017e\u0188\u0192\u019d"+
|
||||
"\3\b\2\2";
|
||||
public static final ATN _ATN =
|
||||
new ATNDeserializer().deserialize(_serializedATN.toCharArray());
|
||||
static {
|
||||
|
@ -33,22 +33,24 @@ T__31=32
|
||||
T__32=33
|
||||
T__33=34
|
||||
T__34=35
|
||||
SIMPLETYPE=36
|
||||
STRING=37
|
||||
BOOLEAN=38
|
||||
NUMBER=39
|
||||
NUMFLOAT=40
|
||||
BINFLOAT=41
|
||||
DECFLOAT=42
|
||||
HEXFLOAT=43
|
||||
NUMINT=44
|
||||
BININTEGER=45
|
||||
DECINTEGER=46
|
||||
HEXINTEGER=47
|
||||
NAME=48
|
||||
WS=49
|
||||
COMMENT_LINE=50
|
||||
COMMENT_BLOCK=51
|
||||
T__35=36
|
||||
T__36=37
|
||||
SIMPLETYPE=38
|
||||
STRING=39
|
||||
BOOLEAN=40
|
||||
NUMBER=41
|
||||
NUMFLOAT=42
|
||||
BINFLOAT=43
|
||||
DECFLOAT=44
|
||||
HEXFLOAT=45
|
||||
NUMINT=46
|
||||
BININTEGER=47
|
||||
DECINTEGER=48
|
||||
HEXINTEGER=49
|
||||
NAME=50
|
||||
WS=51
|
||||
COMMENT_LINE=52
|
||||
COMMENT_BLOCK=53
|
||||
'{'=1
|
||||
'}'=2
|
||||
'('=3
|
||||
@ -70,17 +72,19 @@ COMMENT_BLOCK=51
|
||||
'not'=19
|
||||
'!'=20
|
||||
'&'=21
|
||||
'/'=22
|
||||
'=='=23
|
||||
'!='=24
|
||||
'<>'=25
|
||||
'<'=26
|
||||
'<='=27
|
||||
'=<'=28
|
||||
'>='=29
|
||||
'=>'=30
|
||||
'>'=31
|
||||
'and'=32
|
||||
'&&'=33
|
||||
'or'=34
|
||||
'||'=35
|
||||
'>>'=22
|
||||
'<<'=23
|
||||
'/'=24
|
||||
'=='=25
|
||||
'!='=26
|
||||
'<>'=27
|
||||
'<'=28
|
||||
'<='=29
|
||||
'=<'=30
|
||||
'>='=31
|
||||
'=>'=32
|
||||
'>'=33
|
||||
'and'=34
|
||||
'&&'=35
|
||||
'or'=36
|
||||
'||'=37
|
||||
|
@ -21,10 +21,10 @@ public class KickCParser extends Parser {
|
||||
T__9=10, T__10=11, T__11=12, T__12=13, T__13=14, T__14=15, T__15=16, T__16=17,
|
||||
T__17=18, T__18=19, T__19=20, T__20=21, T__21=22, T__22=23, T__23=24,
|
||||
T__24=25, T__25=26, T__26=27, T__27=28, T__28=29, T__29=30, T__30=31,
|
||||
T__31=32, T__32=33, T__33=34, T__34=35, SIMPLETYPE=36, STRING=37, BOOLEAN=38,
|
||||
NUMBER=39, NUMFLOAT=40, BINFLOAT=41, DECFLOAT=42, HEXFLOAT=43, NUMINT=44,
|
||||
BININTEGER=45, DECINTEGER=46, HEXINTEGER=47, NAME=48, WS=49, COMMENT_LINE=50,
|
||||
COMMENT_BLOCK=51;
|
||||
T__31=32, T__32=33, T__33=34, T__34=35, T__35=36, T__36=37, SIMPLETYPE=38,
|
||||
STRING=39, BOOLEAN=40, NUMBER=41, NUMFLOAT=42, BINFLOAT=43, DECFLOAT=44,
|
||||
HEXFLOAT=45, NUMINT=46, BININTEGER=47, DECINTEGER=48, HEXINTEGER=49, NAME=50,
|
||||
WS=51, COMMENT_LINE=52, COMMENT_BLOCK=53;
|
||||
public static final int
|
||||
RULE_file = 0, RULE_stmtSeq = 1, RULE_stmt = 2, RULE_parameterListDecl = 3,
|
||||
RULE_parameterDecl = 4, RULE_typeDecl = 5, RULE_initializer = 6, RULE_lvalue = 7,
|
||||
@ -37,16 +37,17 @@ public class KickCParser extends Parser {
|
||||
private static final String[] _LITERAL_NAMES = {
|
||||
null, "'{'", "'}'", "'('", "')'", "'const'", "'='", "';'", "'if'", "'else'",
|
||||
"'while'", "'do'", "'return'", "','", "'*'", "'['", "']'", "'+'", "'-'",
|
||||
"'not'", "'!'", "'&'", "'/'", "'=='", "'!='", "'<>'", "'<'", "'<='", "'=<'",
|
||||
"'>='", "'=>'", "'>'", "'and'", "'&&'", "'or'", "'||'"
|
||||
"'not'", "'!'", "'&'", "'>>'", "'<<'", "'/'", "'=='", "'!='", "'<>'",
|
||||
"'<'", "'<='", "'=<'", "'>='", "'=>'", "'>'", "'and'", "'&&'", "'or'",
|
||||
"'||'"
|
||||
};
|
||||
private static final String[] _SYMBOLIC_NAMES = {
|
||||
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,
|
||||
"SIMPLETYPE", "STRING", "BOOLEAN", "NUMBER", "NUMFLOAT", "BINFLOAT", "DECFLOAT",
|
||||
"HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER", "NAME",
|
||||
"WS", "COMMENT_LINE", "COMMENT_BLOCK"
|
||||
null, null, "SIMPLETYPE", "STRING", "BOOLEAN", "NUMBER", "NUMFLOAT", "BINFLOAT",
|
||||
"DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER",
|
||||
"NAME", "WS", "COMMENT_LINE", "COMMENT_BLOCK"
|
||||
};
|
||||
public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES);
|
||||
|
||||
@ -1471,7 +1472,7 @@ public class KickCParser extends Parser {
|
||||
setState(167);
|
||||
match(T__3);
|
||||
setState(168);
|
||||
expr(12);
|
||||
expr(13);
|
||||
}
|
||||
break;
|
||||
case 4:
|
||||
@ -1490,7 +1491,7 @@ public class KickCParser extends Parser {
|
||||
consume();
|
||||
}
|
||||
setState(171);
|
||||
expr(10);
|
||||
expr(11);
|
||||
}
|
||||
break;
|
||||
case 5:
|
||||
@ -1531,7 +1532,7 @@ public class KickCParser extends Parser {
|
||||
break;
|
||||
}
|
||||
_ctx.stop = _input.LT(-1);
|
||||
setState(200);
|
||||
setState(203);
|
||||
_errHandler.sync(this);
|
||||
_alt = getInterpreter().adaptivePredict(_input,19,_ctx);
|
||||
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
|
||||
@ -1539,7 +1540,7 @@ public class KickCParser extends Parser {
|
||||
if ( _parseListeners!=null ) triggerExitRuleEvent();
|
||||
_prevctx = _localctx;
|
||||
{
|
||||
setState(198);
|
||||
setState(201);
|
||||
_errHandler.sync(this);
|
||||
switch ( getInterpreter().adaptivePredict(_input,18,_ctx) ) {
|
||||
case 1:
|
||||
@ -1547,10 +1548,10 @@ public class KickCParser extends Parser {
|
||||
_localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
|
||||
pushNewRecursionContext(_localctx, _startState, RULE_expr);
|
||||
setState(178);
|
||||
if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)");
|
||||
if (!(precpred(_ctx, 10))) throw new FailedPredicateException(this, "precpred(_ctx, 10)");
|
||||
setState(179);
|
||||
_la = _input.LA(1);
|
||||
if ( !(_la==T__13 || _la==T__21) ) {
|
||||
if ( !(_la==T__21 || _la==T__22) ) {
|
||||
_errHandler.recoverInline(this);
|
||||
}
|
||||
else {
|
||||
@ -1559,7 +1560,7 @@ public class KickCParser extends Parser {
|
||||
consume();
|
||||
}
|
||||
setState(180);
|
||||
expr(10);
|
||||
expr(11);
|
||||
}
|
||||
break;
|
||||
case 2:
|
||||
@ -1567,9 +1568,29 @@ public class KickCParser extends Parser {
|
||||
_localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
|
||||
pushNewRecursionContext(_localctx, _startState, RULE_expr);
|
||||
setState(181);
|
||||
if (!(precpred(_ctx, 8))) throw new FailedPredicateException(this, "precpred(_ctx, 8)");
|
||||
if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)");
|
||||
setState(182);
|
||||
_la = _input.LA(1);
|
||||
if ( !(_la==T__13 || _la==T__23) ) {
|
||||
_errHandler.recoverInline(this);
|
||||
}
|
||||
else {
|
||||
if ( _input.LA(1)==Token.EOF ) matchedEOF = true;
|
||||
_errHandler.reportMatch(this);
|
||||
consume();
|
||||
}
|
||||
setState(183);
|
||||
expr(10);
|
||||
}
|
||||
break;
|
||||
case 3:
|
||||
{
|
||||
_localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
|
||||
pushNewRecursionContext(_localctx, _startState, RULE_expr);
|
||||
setState(184);
|
||||
if (!(precpred(_ctx, 8))) throw new FailedPredicateException(this, "precpred(_ctx, 8)");
|
||||
setState(185);
|
||||
_la = _input.LA(1);
|
||||
if ( !(_la==T__16 || _la==T__17) ) {
|
||||
_errHandler.recoverInline(this);
|
||||
}
|
||||
@ -1578,28 +1599,8 @@ public class KickCParser extends Parser {
|
||||
_errHandler.reportMatch(this);
|
||||
consume();
|
||||
}
|
||||
setState(183);
|
||||
expr(9);
|
||||
}
|
||||
break;
|
||||
case 3:
|
||||
{
|
||||
_localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
|
||||
pushNewRecursionContext(_localctx, _startState, RULE_expr);
|
||||
setState(184);
|
||||
if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)");
|
||||
setState(185);
|
||||
_la = _input.LA(1);
|
||||
if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((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__30))) != 0)) ) {
|
||||
_errHandler.recoverInline(this);
|
||||
}
|
||||
else {
|
||||
if ( _input.LA(1)==Token.EOF ) matchedEOF = true;
|
||||
_errHandler.reportMatch(this);
|
||||
consume();
|
||||
}
|
||||
setState(186);
|
||||
expr(8);
|
||||
expr(9);
|
||||
}
|
||||
break;
|
||||
case 4:
|
||||
@ -1607,10 +1608,10 @@ public class KickCParser extends Parser {
|
||||
_localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
|
||||
pushNewRecursionContext(_localctx, _startState, RULE_expr);
|
||||
setState(187);
|
||||
if (!(precpred(_ctx, 6))) throw new FailedPredicateException(this, "precpred(_ctx, 6)");
|
||||
if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)");
|
||||
setState(188);
|
||||
_la = _input.LA(1);
|
||||
if ( !(_la==T__31 || _la==T__32) ) {
|
||||
if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__24) | (1L << T__25) | (1L << T__26) | (1L << T__27) | (1L << T__28) | (1L << T__29) | (1L << T__30) | (1L << T__31) | (1L << T__32))) != 0)) ) {
|
||||
_errHandler.recoverInline(this);
|
||||
}
|
||||
else {
|
||||
@ -1619,7 +1620,7 @@ public class KickCParser extends Parser {
|
||||
consume();
|
||||
}
|
||||
setState(189);
|
||||
expr(7);
|
||||
expr(8);
|
||||
}
|
||||
break;
|
||||
case 5:
|
||||
@ -1627,7 +1628,7 @@ public class KickCParser extends Parser {
|
||||
_localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
|
||||
pushNewRecursionContext(_localctx, _startState, RULE_expr);
|
||||
setState(190);
|
||||
if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)");
|
||||
if (!(precpred(_ctx, 6))) throw new FailedPredicateException(this, "precpred(_ctx, 6)");
|
||||
setState(191);
|
||||
_la = _input.LA(1);
|
||||
if ( !(_la==T__33 || _la==T__34) ) {
|
||||
@ -1639,27 +1640,47 @@ public class KickCParser extends Parser {
|
||||
consume();
|
||||
}
|
||||
setState(192);
|
||||
expr(6);
|
||||
expr(7);
|
||||
}
|
||||
break;
|
||||
case 6:
|
||||
{
|
||||
_localctx = new ExprArrayContext(new ExprContext(_parentctx, _parentState));
|
||||
_localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState));
|
||||
pushNewRecursionContext(_localctx, _startState, RULE_expr);
|
||||
setState(193);
|
||||
if (!(precpred(_ctx, 11))) throw new FailedPredicateException(this, "precpred(_ctx, 11)");
|
||||
if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)");
|
||||
setState(194);
|
||||
match(T__14);
|
||||
_la = _input.LA(1);
|
||||
if ( !(_la==T__35 || _la==T__36) ) {
|
||||
_errHandler.recoverInline(this);
|
||||
}
|
||||
else {
|
||||
if ( _input.LA(1)==Token.EOF ) matchedEOF = true;
|
||||
_errHandler.reportMatch(this);
|
||||
consume();
|
||||
}
|
||||
setState(195);
|
||||
expr(0);
|
||||
expr(6);
|
||||
}
|
||||
break;
|
||||
case 7:
|
||||
{
|
||||
_localctx = new ExprArrayContext(new ExprContext(_parentctx, _parentState));
|
||||
pushNewRecursionContext(_localctx, _startState, RULE_expr);
|
||||
setState(196);
|
||||
if (!(precpred(_ctx, 12))) throw new FailedPredicateException(this, "precpred(_ctx, 12)");
|
||||
setState(197);
|
||||
match(T__14);
|
||||
setState(198);
|
||||
expr(0);
|
||||
setState(199);
|
||||
match(T__15);
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
setState(202);
|
||||
setState(205);
|
||||
_errHandler.sync(this);
|
||||
_alt = getInterpreter().adaptivePredict(_input,19,_ctx);
|
||||
}
|
||||
@ -1709,21 +1730,21 @@ public class KickCParser extends Parser {
|
||||
try {
|
||||
enterOuterAlt(_localctx, 1);
|
||||
{
|
||||
setState(203);
|
||||
setState(206);
|
||||
expr(0);
|
||||
setState(208);
|
||||
setState(211);
|
||||
_errHandler.sync(this);
|
||||
_la = _input.LA(1);
|
||||
while (_la==T__12) {
|
||||
{
|
||||
{
|
||||
setState(204);
|
||||
setState(207);
|
||||
match(T__12);
|
||||
setState(205);
|
||||
setState(208);
|
||||
expr(0);
|
||||
}
|
||||
}
|
||||
setState(210);
|
||||
setState(213);
|
||||
_errHandler.sync(this);
|
||||
_la = _input.LA(1);
|
||||
}
|
||||
@ -1770,23 +1791,25 @@ public class KickCParser extends Parser {
|
||||
private boolean expr_sempred(ExprContext _localctx, int predIndex) {
|
||||
switch (predIndex) {
|
||||
case 3:
|
||||
return precpred(_ctx, 9);
|
||||
return precpred(_ctx, 10);
|
||||
case 4:
|
||||
return precpred(_ctx, 8);
|
||||
return precpred(_ctx, 9);
|
||||
case 5:
|
||||
return precpred(_ctx, 7);
|
||||
return precpred(_ctx, 8);
|
||||
case 6:
|
||||
return precpred(_ctx, 6);
|
||||
return precpred(_ctx, 7);
|
||||
case 7:
|
||||
return precpred(_ctx, 5);
|
||||
return precpred(_ctx, 6);
|
||||
case 8:
|
||||
return precpred(_ctx, 11);
|
||||
return precpred(_ctx, 5);
|
||||
case 9:
|
||||
return precpred(_ctx, 12);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
public static final String _serializedATN =
|
||||
"\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\65\u00d6\4\2\t\2"+
|
||||
"\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\67\u00d9\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\3\2\3\2\3\2\3\3\6\3\33\n\3\r\3\16\3\34\3\4\3\4\5\4!\n\4\3\4\3\4"+
|
||||
"\3\4\3\4\3\4\5\4(\n\4\3\4\3\4\3\4\5\4-\n\4\3\4\3\4\3\4\5\4\62\n\4\3\4"+
|
||||
@ -1799,62 +1822,64 @@ public class KickCParser extends Parser {
|
||||
"\3\t\3\t\3\t\3\t\7\t\u0098\n\t\f\t\16\t\u009b\13\t\3\n\3\n\3\n\3\n\3\n"+
|
||||
"\3\n\3\n\3\n\5\n\u00a5\n\n\3\n\3\n\3\n\3\n\3\n\3\n\3\n\3\n\3\n\3\n\3\n"+
|
||||
"\3\n\5\n\u00b3\n\n\3\n\3\n\3\n\3\n\3\n\3\n\3\n\3\n\3\n\3\n\3\n\3\n\3\n"+
|
||||
"\3\n\3\n\3\n\3\n\3\n\3\n\3\n\7\n\u00c9\n\n\f\n\16\n\u00cc\13\n\3\13\3"+
|
||||
"\13\3\13\7\13\u00d1\n\13\f\13\16\13\u00d4\13\13\3\13\2\5\f\20\22\f\2\4"+
|
||||
"\6\b\n\f\16\20\22\24\2\b\4\2\20\20\23\27\4\2\20\20\30\30\3\2\23\24\3\2"+
|
||||
"\31!\3\2\"#\3\2$%\2\u00f2\2\26\3\2\2\2\4\32\3\2\2\2\6]\3\2\2\2\b_\3\2"+
|
||||
"\2\2\ng\3\2\2\2\fj\3\2\2\2\16\u0086\3\2\2\2\20\u0090\3\2\2\2\22\u00b2"+
|
||||
"\3\2\2\2\24\u00cd\3\2\2\2\26\27\5\4\3\2\27\30\7\2\2\3\30\3\3\2\2\2\31"+
|
||||
"\33\5\6\4\2\32\31\3\2\2\2\33\34\3\2\2\2\34\32\3\2\2\2\34\35\3\2\2\2\35"+
|
||||
"\5\3\2\2\2\36 \7\3\2\2\37!\5\4\3\2 \37\3\2\2\2 !\3\2\2\2!\"\3\2\2\2\""+
|
||||
"^\7\4\2\2#$\5\f\7\2$%\7\62\2\2%\'\7\5\2\2&(\5\b\5\2\'&\3\2\2\2\'(\3\2"+
|
||||
"\2\2()\3\2\2\2)*\7\6\2\2*,\7\3\2\2+-\5\4\3\2,+\3\2\2\2,-\3\2\2\2-.\3\2"+
|
||||
"\2\2./\7\4\2\2/^\3\2\2\2\60\62\7\7\2\2\61\60\3\2\2\2\61\62\3\2\2\2\62"+
|
||||
"\63\3\2\2\2\63\64\5\f\7\2\64\67\7\62\2\2\65\66\7\b\2\2\668\5\16\b\2\67"+
|
||||
"\65\3\2\2\2\678\3\2\2\289\3\2\2\29:\7\t\2\2:^\3\2\2\2;<\5\20\t\2<=\7\b"+
|
||||
"\2\2=>\5\22\n\2>?\7\t\2\2?^\3\2\2\2@A\5\22\n\2AB\7\t\2\2B^\3\2\2\2CD\7"+
|
||||
"\n\2\2DE\7\5\2\2EF\5\22\n\2FG\7\6\2\2GJ\5\6\4\2HI\7\13\2\2IK\5\6\4\2J"+
|
||||
"H\3\2\2\2JK\3\2\2\2K^\3\2\2\2LM\7\f\2\2MN\7\5\2\2NO\5\22\n\2OP\7\6\2\2"+
|
||||
"PQ\5\6\4\2Q^\3\2\2\2RS\7\r\2\2ST\5\6\4\2TU\7\f\2\2UV\7\5\2\2VW\5\22\n"+
|
||||
"\2WX\7\6\2\2X^\3\2\2\2YZ\7\16\2\2Z[\5\22\n\2[\\\7\t\2\2\\^\3\2\2\2]\36"+
|
||||
"\3\2\2\2]#\3\2\2\2]\61\3\2\2\2];\3\2\2\2]@\3\2\2\2]C\3\2\2\2]L\3\2\2\2"+
|
||||
"]R\3\2\2\2]Y\3\2\2\2^\7\3\2\2\2_d\5\n\6\2`a\7\17\2\2ac\5\n\6\2b`\3\2\2"+
|
||||
"\2cf\3\2\2\2db\3\2\2\2de\3\2\2\2e\t\3\2\2\2fd\3\2\2\2gh\5\f\7\2hi\7\62"+
|
||||
"\2\2i\13\3\2\2\2jk\b\7\1\2kl\7&\2\2lw\3\2\2\2mn\f\4\2\2nv\7\20\2\2op\f"+
|
||||
"\3\2\2pr\7\21\2\2qs\5\22\n\2rq\3\2\2\2rs\3\2\2\2st\3\2\2\2tv\7\22\2\2"+
|
||||
"um\3\2\2\2uo\3\2\2\2vy\3\2\2\2wu\3\2\2\2wx\3\2\2\2x\r\3\2\2\2yw\3\2\2"+
|
||||
"\2z\u0087\5\22\n\2{|\7\3\2\2|\u0081\5\16\b\2}~\7\17\2\2~\u0080\5\16\b"+
|
||||
"\2\177}\3\2\2\2\u0080\u0083\3\2\2\2\u0081\177\3\2\2\2\u0081\u0082\3\2"+
|
||||
"\2\2\u0082\u0084\3\2\2\2\u0083\u0081\3\2\2\2\u0084\u0085\7\4\2\2\u0085"+
|
||||
"\u0087\3\2\2\2\u0086z\3\2\2\2\u0086{\3\2\2\2\u0087\17\3\2\2\2\u0088\u0089"+
|
||||
"\b\t\1\2\u0089\u008a\7\5\2\2\u008a\u008b\5\20\t\2\u008b\u008c\7\6\2\2"+
|
||||
"\u008c\u0091\3\2\2\2\u008d\u0091\7\62\2\2\u008e\u008f\7\20\2\2\u008f\u0091"+
|
||||
"\5\20\t\4\u0090\u0088\3\2\2\2\u0090\u008d\3\2\2\2\u0090\u008e\3\2\2\2"+
|
||||
"\u0091\u0099\3\2\2\2\u0092\u0093\f\3\2\2\u0093\u0094\7\21\2\2\u0094\u0095"+
|
||||
"\5\22\n\2\u0095\u0096\7\22\2\2\u0096\u0098\3\2\2\2\u0097\u0092\3\2\2\2"+
|
||||
"\u0098\u009b\3\2\2\2\u0099\u0097\3\2\2\2\u0099\u009a\3\2\2\2\u009a\21"+
|
||||
"\3\2\2\2\u009b\u0099\3\2\2\2\u009c\u009d\b\n\1\2\u009d\u009e\7\5\2\2\u009e"+
|
||||
"\u009f\5\22\n\2\u009f\u00a0\7\6\2\2\u00a0\u00b3\3\2\2\2\u00a1\u00a2\7"+
|
||||
"\62\2\2\u00a2\u00a4\7\5\2\2\u00a3\u00a5\5\24\13\2\u00a4\u00a3\3\2\2\2"+
|
||||
"\u00a4\u00a5\3\2\2\2\u00a5\u00a6\3\2\2\2\u00a6\u00b3\7\6\2\2\u00a7\u00a8"+
|
||||
"\7\5\2\2\u00a8\u00a9\5\f\7\2\u00a9\u00aa\7\6\2\2\u00aa\u00ab\5\22\n\16"+
|
||||
"\u00ab\u00b3\3\2\2\2\u00ac\u00ad\t\2\2\2\u00ad\u00b3\5\22\n\f\u00ae\u00b3"+
|
||||
"\7\62\2\2\u00af\u00b3\7)\2\2\u00b0\u00b3\7\'\2\2\u00b1\u00b3\7(\2\2\u00b2"+
|
||||
"\u009c\3\2\2\2\u00b2\u00a1\3\2\2\2\u00b2\u00a7\3\2\2\2\u00b2\u00ac\3\2"+
|
||||
"\2\2\u00b2\u00ae\3\2\2\2\u00b2\u00af\3\2\2\2\u00b2\u00b0\3\2\2\2\u00b2"+
|
||||
"\u00b1\3\2\2\2\u00b3\u00ca\3\2\2\2\u00b4\u00b5\f\13\2\2\u00b5\u00b6\t"+
|
||||
"\3\2\2\u00b6\u00c9\5\22\n\f\u00b7\u00b8\f\n\2\2\u00b8\u00b9\t\4\2\2\u00b9"+
|
||||
"\u00c9\5\22\n\13\u00ba\u00bb\f\t\2\2\u00bb\u00bc\t\5\2\2\u00bc\u00c9\5"+
|
||||
"\22\n\n\u00bd\u00be\f\b\2\2\u00be\u00bf\t\6\2\2\u00bf\u00c9\5\22\n\t\u00c0"+
|
||||
"\u00c1\f\7\2\2\u00c1\u00c2\t\7\2\2\u00c2\u00c9\5\22\n\b\u00c3\u00c4\f"+
|
||||
"\r\2\2\u00c4\u00c5\7\21\2\2\u00c5\u00c6\5\22\n\2\u00c6\u00c7\7\22\2\2"+
|
||||
"\u00c7\u00c9\3\2\2\2\u00c8\u00b4\3\2\2\2\u00c8\u00b7\3\2\2\2\u00c8\u00ba"+
|
||||
"\3\2\2\2\u00c8\u00bd\3\2\2\2\u00c8\u00c0\3\2\2\2\u00c8\u00c3\3\2\2\2\u00c9"+
|
||||
"\u00cc\3\2\2\2\u00ca\u00c8\3\2\2\2\u00ca\u00cb\3\2\2\2\u00cb\23\3\2\2"+
|
||||
"\2\u00cc\u00ca\3\2\2\2\u00cd\u00d2\5\22\n\2\u00ce\u00cf\7\17\2\2\u00cf"+
|
||||
"\u00d1\5\22\n\2\u00d0\u00ce\3\2\2\2\u00d1\u00d4\3\2\2\2\u00d2\u00d0\3"+
|
||||
"\2\2\2\u00d2\u00d3\3\2\2\2\u00d3\25\3\2\2\2\u00d4\u00d2\3\2\2\2\27\34"+
|
||||
" \',\61\67J]druw\u0081\u0086\u0090\u0099\u00a4\u00b2\u00c8\u00ca\u00d2";
|
||||
"\3\n\3\n\3\n\3\n\3\n\3\n\3\n\3\n\3\n\3\n\7\n\u00cc\n\n\f\n\16\n\u00cf"+
|
||||
"\13\n\3\13\3\13\3\13\7\13\u00d4\n\13\f\13\16\13\u00d7\13\13\3\13\2\5\f"+
|
||||
"\20\22\f\2\4\6\b\n\f\16\20\22\24\2\t\4\2\20\20\23\27\3\2\30\31\4\2\20"+
|
||||
"\20\32\32\3\2\23\24\3\2\33#\3\2$%\3\2&\'\2\u00f6\2\26\3\2\2\2\4\32\3\2"+
|
||||
"\2\2\6]\3\2\2\2\b_\3\2\2\2\ng\3\2\2\2\fj\3\2\2\2\16\u0086\3\2\2\2\20\u0090"+
|
||||
"\3\2\2\2\22\u00b2\3\2\2\2\24\u00d0\3\2\2\2\26\27\5\4\3\2\27\30\7\2\2\3"+
|
||||
"\30\3\3\2\2\2\31\33\5\6\4\2\32\31\3\2\2\2\33\34\3\2\2\2\34\32\3\2\2\2"+
|
||||
"\34\35\3\2\2\2\35\5\3\2\2\2\36 \7\3\2\2\37!\5\4\3\2 \37\3\2\2\2 !\3\2"+
|
||||
"\2\2!\"\3\2\2\2\"^\7\4\2\2#$\5\f\7\2$%\7\64\2\2%\'\7\5\2\2&(\5\b\5\2\'"+
|
||||
"&\3\2\2\2\'(\3\2\2\2()\3\2\2\2)*\7\6\2\2*,\7\3\2\2+-\5\4\3\2,+\3\2\2\2"+
|
||||
",-\3\2\2\2-.\3\2\2\2./\7\4\2\2/^\3\2\2\2\60\62\7\7\2\2\61\60\3\2\2\2\61"+
|
||||
"\62\3\2\2\2\62\63\3\2\2\2\63\64\5\f\7\2\64\67\7\64\2\2\65\66\7\b\2\2\66"+
|
||||
"8\5\16\b\2\67\65\3\2\2\2\678\3\2\2\289\3\2\2\29:\7\t\2\2:^\3\2\2\2;<\5"+
|
||||
"\20\t\2<=\7\b\2\2=>\5\22\n\2>?\7\t\2\2?^\3\2\2\2@A\5\22\n\2AB\7\t\2\2"+
|
||||
"B^\3\2\2\2CD\7\n\2\2DE\7\5\2\2EF\5\22\n\2FG\7\6\2\2GJ\5\6\4\2HI\7\13\2"+
|
||||
"\2IK\5\6\4\2JH\3\2\2\2JK\3\2\2\2K^\3\2\2\2LM\7\f\2\2MN\7\5\2\2NO\5\22"+
|
||||
"\n\2OP\7\6\2\2PQ\5\6\4\2Q^\3\2\2\2RS\7\r\2\2ST\5\6\4\2TU\7\f\2\2UV\7\5"+
|
||||
"\2\2VW\5\22\n\2WX\7\6\2\2X^\3\2\2\2YZ\7\16\2\2Z[\5\22\n\2[\\\7\t\2\2\\"+
|
||||
"^\3\2\2\2]\36\3\2\2\2]#\3\2\2\2]\61\3\2\2\2];\3\2\2\2]@\3\2\2\2]C\3\2"+
|
||||
"\2\2]L\3\2\2\2]R\3\2\2\2]Y\3\2\2\2^\7\3\2\2\2_d\5\n\6\2`a\7\17\2\2ac\5"+
|
||||
"\n\6\2b`\3\2\2\2cf\3\2\2\2db\3\2\2\2de\3\2\2\2e\t\3\2\2\2fd\3\2\2\2gh"+
|
||||
"\5\f\7\2hi\7\64\2\2i\13\3\2\2\2jk\b\7\1\2kl\7(\2\2lw\3\2\2\2mn\f\4\2\2"+
|
||||
"nv\7\20\2\2op\f\3\2\2pr\7\21\2\2qs\5\22\n\2rq\3\2\2\2rs\3\2\2\2st\3\2"+
|
||||
"\2\2tv\7\22\2\2um\3\2\2\2uo\3\2\2\2vy\3\2\2\2wu\3\2\2\2wx\3\2\2\2x\r\3"+
|
||||
"\2\2\2yw\3\2\2\2z\u0087\5\22\n\2{|\7\3\2\2|\u0081\5\16\b\2}~\7\17\2\2"+
|
||||
"~\u0080\5\16\b\2\177}\3\2\2\2\u0080\u0083\3\2\2\2\u0081\177\3\2\2\2\u0081"+
|
||||
"\u0082\3\2\2\2\u0082\u0084\3\2\2\2\u0083\u0081\3\2\2\2\u0084\u0085\7\4"+
|
||||
"\2\2\u0085\u0087\3\2\2\2\u0086z\3\2\2\2\u0086{\3\2\2\2\u0087\17\3\2\2"+
|
||||
"\2\u0088\u0089\b\t\1\2\u0089\u008a\7\5\2\2\u008a\u008b\5\20\t\2\u008b"+
|
||||
"\u008c\7\6\2\2\u008c\u0091\3\2\2\2\u008d\u0091\7\64\2\2\u008e\u008f\7"+
|
||||
"\20\2\2\u008f\u0091\5\20\t\4\u0090\u0088\3\2\2\2\u0090\u008d\3\2\2\2\u0090"+
|
||||
"\u008e\3\2\2\2\u0091\u0099\3\2\2\2\u0092\u0093\f\3\2\2\u0093\u0094\7\21"+
|
||||
"\2\2\u0094\u0095\5\22\n\2\u0095\u0096\7\22\2\2\u0096\u0098\3\2\2\2\u0097"+
|
||||
"\u0092\3\2\2\2\u0098\u009b\3\2\2\2\u0099\u0097\3\2\2\2\u0099\u009a\3\2"+
|
||||
"\2\2\u009a\21\3\2\2\2\u009b\u0099\3\2\2\2\u009c\u009d\b\n\1\2\u009d\u009e"+
|
||||
"\7\5\2\2\u009e\u009f\5\22\n\2\u009f\u00a0\7\6\2\2\u00a0\u00b3\3\2\2\2"+
|
||||
"\u00a1\u00a2\7\64\2\2\u00a2\u00a4\7\5\2\2\u00a3\u00a5\5\24\13\2\u00a4"+
|
||||
"\u00a3\3\2\2\2\u00a4\u00a5\3\2\2\2\u00a5\u00a6\3\2\2\2\u00a6\u00b3\7\6"+
|
||||
"\2\2\u00a7\u00a8\7\5\2\2\u00a8\u00a9\5\f\7\2\u00a9\u00aa\7\6\2\2\u00aa"+
|
||||
"\u00ab\5\22\n\17\u00ab\u00b3\3\2\2\2\u00ac\u00ad\t\2\2\2\u00ad\u00b3\5"+
|
||||
"\22\n\r\u00ae\u00b3\7\64\2\2\u00af\u00b3\7+\2\2\u00b0\u00b3\7)\2\2\u00b1"+
|
||||
"\u00b3\7*\2\2\u00b2\u009c\3\2\2\2\u00b2\u00a1\3\2\2\2\u00b2\u00a7\3\2"+
|
||||
"\2\2\u00b2\u00ac\3\2\2\2\u00b2\u00ae\3\2\2\2\u00b2\u00af\3\2\2\2\u00b2"+
|
||||
"\u00b0\3\2\2\2\u00b2\u00b1\3\2\2\2\u00b3\u00cd\3\2\2\2\u00b4\u00b5\f\f"+
|
||||
"\2\2\u00b5\u00b6\t\3\2\2\u00b6\u00cc\5\22\n\r\u00b7\u00b8\f\13\2\2\u00b8"+
|
||||
"\u00b9\t\4\2\2\u00b9\u00cc\5\22\n\f\u00ba\u00bb\f\n\2\2\u00bb\u00bc\t"+
|
||||
"\5\2\2\u00bc\u00cc\5\22\n\13\u00bd\u00be\f\t\2\2\u00be\u00bf\t\6\2\2\u00bf"+
|
||||
"\u00cc\5\22\n\n\u00c0\u00c1\f\b\2\2\u00c1\u00c2\t\7\2\2\u00c2\u00cc\5"+
|
||||
"\22\n\t\u00c3\u00c4\f\7\2\2\u00c4\u00c5\t\b\2\2\u00c5\u00cc\5\22\n\b\u00c6"+
|
||||
"\u00c7\f\16\2\2\u00c7\u00c8\7\21\2\2\u00c8\u00c9\5\22\n\2\u00c9\u00ca"+
|
||||
"\7\22\2\2\u00ca\u00cc\3\2\2\2\u00cb\u00b4\3\2\2\2\u00cb\u00b7\3\2\2\2"+
|
||||
"\u00cb\u00ba\3\2\2\2\u00cb\u00bd\3\2\2\2\u00cb\u00c0\3\2\2\2\u00cb\u00c3"+
|
||||
"\3\2\2\2\u00cb\u00c6\3\2\2\2\u00cc\u00cf\3\2\2\2\u00cd\u00cb\3\2\2\2\u00cd"+
|
||||
"\u00ce\3\2\2\2\u00ce\23\3\2\2\2\u00cf\u00cd\3\2\2\2\u00d0\u00d5\5\22\n"+
|
||||
"\2\u00d1\u00d2\7\17\2\2\u00d2\u00d4\5\22\n\2\u00d3\u00d1\3\2\2\2\u00d4"+
|
||||
"\u00d7\3\2\2\2\u00d5\u00d3\3\2\2\2\u00d5\u00d6\3\2\2\2\u00d6\25\3\2\2"+
|
||||
"\2\u00d7\u00d5\3\2\2\2\27\34 \',\61\67J]druw\u0081\u0086\u0090\u0099\u00a4"+
|
||||
"\u00b2\u00cb\u00cd\u00d5";
|
||||
public static final ATN _ATN =
|
||||
new ATNDeserializer().deserialize(_serializedATN.toCharArray());
|
||||
static {
|
||||
|
@ -13,7 +13,7 @@ import java.util.List;
|
||||
/** Test my KickC Grammar */
|
||||
public class Main {
|
||||
public static void main(String[] args) throws IOException {
|
||||
final String fileName = "src/dk/camelot64/kickc/test/bresenham.kc";
|
||||
final String fileName = "src/dk/camelot64/kickc/test/sprtabs.kc";
|
||||
final CharStream input = CharStreams.fromFileName(fileName);
|
||||
System.out.println(input.toString());
|
||||
KickCLexer lexer = new KickCLexer(input);
|
||||
|
17
src/dk/camelot64/kickc/test/sprtabs.kc
Normal file
17
src/dk/camelot64/kickc/test/sprtabs.kc
Normal file
@ -0,0 +1,17 @@
|
||||
byte[12] sprX = $1100;
|
||||
byte[21] sprY = $1110;
|
||||
|
||||
byte i=0;
|
||||
do {
|
||||
sprX[i] = i>>2;
|
||||
i = i+1;
|
||||
} while (i<12)
|
||||
|
||||
i=0;
|
||||
byte v=0;
|
||||
do {
|
||||
sprY[i] = v;
|
||||
v = v+3;
|
||||
i = i+1;
|
||||
} while (i<21)
|
||||
|
Loading…
Reference in New Issue
Block a user