Compare commits
17 Commits
Compile-Co
...
nico
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1c59eb1b5b | ||
|
|
35458c6cbf | ||
|
|
5ac562803a | ||
|
|
4893129144 | ||
|
|
27bc69e837 | ||
|
|
4c7002c263 | ||
|
|
046634109c | ||
|
|
c40bdeb411 | ||
|
|
c70db58e20 | ||
|
|
9437b5e88d | ||
|
|
6d02dc8fa7 | ||
|
|
35b5447c7d | ||
|
|
8579c0bfc0 | ||
|
|
c574bf8100 | ||
|
|
c021b1eabf | ||
|
|
ab9d95be1f | ||
|
|
cd1a698fa5 |
File diff suppressed because one or more lines are too long
@@ -1,795 +0,0 @@
|
||||
// Generated from /Users/mannpatel/Desktop/CPSC-499/ExprLexer.g4 by ANTLR 4.13.1
|
||||
import org.antlr.v4.runtime.Lexer;
|
||||
import org.antlr.v4.runtime.CharStream;
|
||||
import org.antlr.v4.runtime.Token;
|
||||
import org.antlr.v4.runtime.TokenStream;
|
||||
import org.antlr.v4.runtime.*;
|
||||
import org.antlr.v4.runtime.atn.*;
|
||||
import org.antlr.v4.runtime.dfa.DFA;
|
||||
import org.antlr.v4.runtime.misc.*;
|
||||
|
||||
@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast", "CheckReturnValue", "this-escape"})
|
||||
public class ExprLexer extends Lexer {
|
||||
static { RuntimeMetaData.checkVersion("4.13.1", RuntimeMetaData.VERSION); }
|
||||
|
||||
protected static final DFA[] _decisionToDFA;
|
||||
protected static final PredictionContextCache _sharedContextCache =
|
||||
new PredictionContextCache();
|
||||
public static final int
|
||||
WhiteSpace=1, Comment=2, Abstract=3, Assert=4, Boolean=5, Break=6, Byte=7,
|
||||
Case=8, Catch=9, Char=10, Class=11, Const=12, Continue=13, Default=14,
|
||||
Do=15, Double=16, Else=17, Extends=18, Final=19, Finally=20, Float=21,
|
||||
For=22, Goto=23, If=24, Implements=25, Import=26, InstanceOf=27, Int=28,
|
||||
Interface=29, Long=30, Native=31, New=32, Package=33, Private=34, Protected=35,
|
||||
Public=36, Return=37, Short=38, Static=39, Strictfp=40, Super=41, Switch=42,
|
||||
Synchronized=43, This=44, Throw=45, Throws=46, Transient=47, Try=48, Void=49,
|
||||
Volatile=50, While=51, Dot=52, IntegerLiteral=53, FloatingPointLiteral=54,
|
||||
CharacterLiteral=55, StringLiteral=56, BooleanLiteral=57, NullLiteral=58,
|
||||
ParenthesesLeft=59, ParenthesesRight=60, CurlyBracketLeft=61, CurlyBracketRight=62,
|
||||
SquareBracketLeft=63, SquareBracketRight=64, Semicolon=65, Comma=66, UnsignedRightShiftAssign=67,
|
||||
EqualTo=68, NotEqualTo=69, LessThanEqualTo=70, GreaterThanEqualTo=71,
|
||||
ConditionalAND=72, ConditionalOR=73, Increment=74, Decrement=75, LeftShift=76,
|
||||
SignedRightShift=77, UnsignedRightShift=78, AddAssign=79, SubtractAssign=80,
|
||||
MultiplyAssign=81, DivideAssign=82, BitwiseANDAssign=83, BitwiseORAssign=84,
|
||||
BitwiseXORAssign=85, RemainderAssign=86, LeftShiftAssign=87, SignedRightShiftAssign=88,
|
||||
Assignment=89, BitwiseComplement=90, LessThan=91, GreaterThan=92, LogicalComplement=93,
|
||||
Question=94, Colon=95, Addition=96, Subtraction=97, Multiplication=98,
|
||||
Division=99, BitwiseAND=100, BitwiseOR=101, BitwiseXOR=102, Remainder=103,
|
||||
IDENTIFIER=104;
|
||||
public static String[] channelNames = {
|
||||
"DEFAULT_TOKEN_CHANNEL", "HIDDEN"
|
||||
};
|
||||
|
||||
public static String[] modeNames = {
|
||||
"DEFAULT_MODE"
|
||||
};
|
||||
|
||||
private static String[] makeRuleNames() {
|
||||
return new String[] {
|
||||
"LineTerminator", "WhiteSpace", "EndOfLineComment", "Comment", "TraditionalComment",
|
||||
"CommentTail", "CommentTailStar", "NotStar", "NotStarNotSlash", "Abstract",
|
||||
"Assert", "Boolean", "Break", "Byte", "Case", "Catch", "Char", "Class",
|
||||
"Const", "Continue", "Default", "Do", "Double", "Else", "Extends", "Final",
|
||||
"Finally", "Float", "For", "Goto", "If", "Implements", "Import", "InstanceOf",
|
||||
"Int", "Interface", "Long", "Native", "New", "Package", "Private", "Protected",
|
||||
"Public", "Return", "Short", "Static", "Strictfp", "Super", "Switch",
|
||||
"Synchronized", "This", "Throw", "Throws", "Transient", "Try", "Void",
|
||||
"Volatile", "While", "Dot", "IntegerLiteral", "DecimalIntegerLiteral",
|
||||
"HexIntegerLiteral", "OctalIntegerLiteral", "IntegerTypeSuffix", "DecimalNumeral",
|
||||
"HexNumeral", "HexDigits", "HexDigit", "FloatingPointLiteral", "ExponentPart",
|
||||
"ExponentIndicator", "SignedInteger", "Digits", "Digit", "NonZeroDigit",
|
||||
"Sign", "FloatTypeSuffix", "CharacterLiteral", "SingleCharacter", "StringLiteral",
|
||||
"StringCharacters", "StringCharacter", "EscapeSequence", "OctalEscape",
|
||||
"OctalNumeral", "OctalDigits", "OctalDigit", "ZeroToThree", "BooleanLiteral",
|
||||
"NullLiteral", "ParenthesesLeft", "ParenthesesRight", "CurlyBracketLeft",
|
||||
"CurlyBracketRight", "SquareBracketLeft", "SquareBracketRight", "Semicolon",
|
||||
"Comma", "UnsignedRightShiftAssign", "EqualTo", "NotEqualTo", "LessThanEqualTo",
|
||||
"GreaterThanEqualTo", "ConditionalAND", "ConditionalOR", "Increment",
|
||||
"Decrement", "LeftShift", "SignedRightShift", "UnsignedRightShift", "AddAssign",
|
||||
"SubtractAssign", "MultiplyAssign", "DivideAssign", "BitwiseANDAssign",
|
||||
"BitwiseORAssign", "BitwiseXORAssign", "RemainderAssign", "LeftShiftAssign",
|
||||
"SignedRightShiftAssign", "Assignment", "BitwiseComplement", "LessThan",
|
||||
"GreaterThan", "LogicalComplement", "Question", "Colon", "Addition",
|
||||
"Subtraction", "Multiplication", "Division", "BitwiseAND", "BitwiseOR",
|
||||
"BitwiseXOR", "Remainder", "IDENTIFIER", "JavaLetter", "JavaLetterOrDigit"
|
||||
};
|
||||
}
|
||||
public static final String[] ruleNames = makeRuleNames();
|
||||
|
||||
private static String[] makeLiteralNames() {
|
||||
return new String[] {
|
||||
null, null, null, "'abstract'", "'assert'", "'boolean'", "'break'", "'byte'",
|
||||
"'case'", "'catch'", "'char'", "'class'", "'const'", "'continue'", "'default'",
|
||||
"'do'", "'double'", "'else'", "'extends'", "'final'", "'finally'", "'float'",
|
||||
"'for'", "'goto'", "'if'", "'implements'", "'import'", "'instanceof'",
|
||||
"'int'", "'interface'", "'long'", "'native'", "'new'", "'package'", "'private'",
|
||||
"'protected'", "'public'", "'return'", "'short'", "'static'", "'strictfp'",
|
||||
"'super'", "'switch'", "'synchronized'", "'this'", "'throw'", "'throws'",
|
||||
"'transient'", "'try'", "'void'", "'volatile'", "'while'", "'.'", null,
|
||||
null, null, null, null, "'null'", "'('", "')'", "'{'", "'}'", "'['",
|
||||
"']'", "';'", "','", "'>>>='", "'=='", "'!='", "'<='", "'>='", "'&&'",
|
||||
"'||'", "'++'", "'--'", "'<<'", "'>>'", "'>>>'", "'+='", "'-='", "'*='",
|
||||
"'/='", "'&='", "'|='", "'^='", "'%='", "'<<='", "'>>='", "'='", "'~'",
|
||||
"'<'", "'>'", "'!'", "'?'", "':'", "'+'", "'-'", "'*'", "'/'", "'&'",
|
||||
"'|'", "'^'", "'%'"
|
||||
};
|
||||
}
|
||||
private static final String[] _LITERAL_NAMES = makeLiteralNames();
|
||||
private static String[] makeSymbolicNames() {
|
||||
return new String[] {
|
||||
null, "WhiteSpace", "Comment", "Abstract", "Assert", "Boolean", "Break",
|
||||
"Byte", "Case", "Catch", "Char", "Class", "Const", "Continue", "Default",
|
||||
"Do", "Double", "Else", "Extends", "Final", "Finally", "Float", "For",
|
||||
"Goto", "If", "Implements", "Import", "InstanceOf", "Int", "Interface",
|
||||
"Long", "Native", "New", "Package", "Private", "Protected", "Public",
|
||||
"Return", "Short", "Static", "Strictfp", "Super", "Switch", "Synchronized",
|
||||
"This", "Throw", "Throws", "Transient", "Try", "Void", "Volatile", "While",
|
||||
"Dot", "IntegerLiteral", "FloatingPointLiteral", "CharacterLiteral",
|
||||
"StringLiteral", "BooleanLiteral", "NullLiteral", "ParenthesesLeft",
|
||||
"ParenthesesRight", "CurlyBracketLeft", "CurlyBracketRight", "SquareBracketLeft",
|
||||
"SquareBracketRight", "Semicolon", "Comma", "UnsignedRightShiftAssign",
|
||||
"EqualTo", "NotEqualTo", "LessThanEqualTo", "GreaterThanEqualTo", "ConditionalAND",
|
||||
"ConditionalOR", "Increment", "Decrement", "LeftShift", "SignedRightShift",
|
||||
"UnsignedRightShift", "AddAssign", "SubtractAssign", "MultiplyAssign",
|
||||
"DivideAssign", "BitwiseANDAssign", "BitwiseORAssign", "BitwiseXORAssign",
|
||||
"RemainderAssign", "LeftShiftAssign", "SignedRightShiftAssign", "Assignment",
|
||||
"BitwiseComplement", "LessThan", "GreaterThan", "LogicalComplement",
|
||||
"Question", "Colon", "Addition", "Subtraction", "Multiplication", "Division",
|
||||
"BitwiseAND", "BitwiseOR", "BitwiseXOR", "Remainder", "IDENTIFIER"
|
||||
};
|
||||
}
|
||||
private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames();
|
||||
public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES);
|
||||
|
||||
/**
|
||||
* @deprecated Use {@link #VOCABULARY} instead.
|
||||
*/
|
||||
@Deprecated
|
||||
public static final String[] tokenNames;
|
||||
static {
|
||||
tokenNames = new String[_SYMBOLIC_NAMES.length];
|
||||
for (int i = 0; i < tokenNames.length; i++) {
|
||||
tokenNames[i] = VOCABULARY.getLiteralName(i);
|
||||
if (tokenNames[i] == null) {
|
||||
tokenNames[i] = VOCABULARY.getSymbolicName(i);
|
||||
}
|
||||
|
||||
if (tokenNames[i] == null) {
|
||||
tokenNames[i] = "<INVALID>";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
@Deprecated
|
||||
public String[] getTokenNames() {
|
||||
return tokenNames;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
public Vocabulary getVocabulary() {
|
||||
return VOCABULARY;
|
||||
}
|
||||
|
||||
|
||||
public ExprLexer(CharStream input) {
|
||||
super(input);
|
||||
_interp = new LexerATNSimulator(this,_ATN,_decisionToDFA,_sharedContextCache);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getGrammarFileName() { return "ExprLexer.g4"; }
|
||||
|
||||
@Override
|
||||
public String[] getRuleNames() { return ruleNames; }
|
||||
|
||||
@Override
|
||||
public String getSerializedATN() { return _serializedATN; }
|
||||
|
||||
@Override
|
||||
public String[] getChannelNames() { return channelNames; }
|
||||
|
||||
@Override
|
||||
public String[] getModeNames() { return modeNames; }
|
||||
|
||||
@Override
|
||||
public ATN getATN() { return _ATN; }
|
||||
|
||||
public static final String _serializedATN =
|
||||
"\u0004\u0000h\u03ef\u0006\uffff\uffff\u0002\u0000\u0007\u0000\u0002\u0001"+
|
||||
"\u0007\u0001\u0002\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002\u0004"+
|
||||
"\u0007\u0004\u0002\u0005\u0007\u0005\u0002\u0006\u0007\u0006\u0002\u0007"+
|
||||
"\u0007\u0007\u0002\b\u0007\b\u0002\t\u0007\t\u0002\n\u0007\n\u0002\u000b"+
|
||||
"\u0007\u000b\u0002\f\u0007\f\u0002\r\u0007\r\u0002\u000e\u0007\u000e\u0002"+
|
||||
"\u000f\u0007\u000f\u0002\u0010\u0007\u0010\u0002\u0011\u0007\u0011\u0002"+
|
||||
"\u0012\u0007\u0012\u0002\u0013\u0007\u0013\u0002\u0014\u0007\u0014\u0002"+
|
||||
"\u0015\u0007\u0015\u0002\u0016\u0007\u0016\u0002\u0017\u0007\u0017\u0002"+
|
||||
"\u0018\u0007\u0018\u0002\u0019\u0007\u0019\u0002\u001a\u0007\u001a\u0002"+
|
||||
"\u001b\u0007\u001b\u0002\u001c\u0007\u001c\u0002\u001d\u0007\u001d\u0002"+
|
||||
"\u001e\u0007\u001e\u0002\u001f\u0007\u001f\u0002 \u0007 \u0002!\u0007"+
|
||||
"!\u0002\"\u0007\"\u0002#\u0007#\u0002$\u0007$\u0002%\u0007%\u0002&\u0007"+
|
||||
"&\u0002\'\u0007\'\u0002(\u0007(\u0002)\u0007)\u0002*\u0007*\u0002+\u0007"+
|
||||
"+\u0002,\u0007,\u0002-\u0007-\u0002.\u0007.\u0002/\u0007/\u00020\u0007"+
|
||||
"0\u00021\u00071\u00022\u00072\u00023\u00073\u00024\u00074\u00025\u0007"+
|
||||
"5\u00026\u00076\u00027\u00077\u00028\u00078\u00029\u00079\u0002:\u0007"+
|
||||
":\u0002;\u0007;\u0002<\u0007<\u0002=\u0007=\u0002>\u0007>\u0002?\u0007"+
|
||||
"?\u0002@\u0007@\u0002A\u0007A\u0002B\u0007B\u0002C\u0007C\u0002D\u0007"+
|
||||
"D\u0002E\u0007E\u0002F\u0007F\u0002G\u0007G\u0002H\u0007H\u0002I\u0007"+
|
||||
"I\u0002J\u0007J\u0002K\u0007K\u0002L\u0007L\u0002M\u0007M\u0002N\u0007"+
|
||||
"N\u0002O\u0007O\u0002P\u0007P\u0002Q\u0007Q\u0002R\u0007R\u0002S\u0007"+
|
||||
"S\u0002T\u0007T\u0002U\u0007U\u0002V\u0007V\u0002W\u0007W\u0002X\u0007"+
|
||||
"X\u0002Y\u0007Y\u0002Z\u0007Z\u0002[\u0007[\u0002\\\u0007\\\u0002]\u0007"+
|
||||
"]\u0002^\u0007^\u0002_\u0007_\u0002`\u0007`\u0002a\u0007a\u0002b\u0007"+
|
||||
"b\u0002c\u0007c\u0002d\u0007d\u0002e\u0007e\u0002f\u0007f\u0002g\u0007"+
|
||||
"g\u0002h\u0007h\u0002i\u0007i\u0002j\u0007j\u0002k\u0007k\u0002l\u0007"+
|
||||
"l\u0002m\u0007m\u0002n\u0007n\u0002o\u0007o\u0002p\u0007p\u0002q\u0007"+
|
||||
"q\u0002r\u0007r\u0002s\u0007s\u0002t\u0007t\u0002u\u0007u\u0002v\u0007"+
|
||||
"v\u0002w\u0007w\u0002x\u0007x\u0002y\u0007y\u0002z\u0007z\u0002{\u0007"+
|
||||
"{\u0002|\u0007|\u0002}\u0007}\u0002~\u0007~\u0002\u007f\u0007\u007f\u0002"+
|
||||
"\u0080\u0007\u0080\u0002\u0081\u0007\u0081\u0002\u0082\u0007\u0082\u0002"+
|
||||
"\u0083\u0007\u0083\u0002\u0084\u0007\u0084\u0002\u0085\u0007\u0085\u0002"+
|
||||
"\u0086\u0007\u0086\u0002\u0087\u0007\u0087\u0002\u0088\u0007\u0088\u0002"+
|
||||
"\u0089\u0007\u0089\u0001\u0000\u0001\u0000\u0003\u0000\u0118\b\u0000\u0001"+
|
||||
"\u0000\u0003\u0000\u011b\b\u0000\u0001\u0001\u0001\u0001\u0003\u0001\u011f"+
|
||||
"\b\u0001\u0001\u0001\u0001\u0001\u0001\u0002\u0001\u0002\u0001\u0002\u0001"+
|
||||
"\u0002\u0005\u0002\u0127\b\u0002\n\u0002\f\u0002\u012a\t\u0002\u0001\u0002"+
|
||||
"\u0003\u0002\u012d\b\u0002\u0001\u0003\u0001\u0003\u0003\u0003\u0131\b"+
|
||||
"\u0003\u0001\u0003\u0001\u0003\u0001\u0004\u0001\u0004\u0001\u0004\u0001"+
|
||||
"\u0004\u0001\u0004\u0001\u0004\u0001\u0005\u0001\u0005\u0001\u0005\u0003"+
|
||||
"\u0005\u013e\b\u0005\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001"+
|
||||
"\u0006\u0001\u0006\u0003\u0006\u0146\b\u0006\u0001\u0007\u0001\u0007\u0003"+
|
||||
"\u0007\u014a\b\u0007\u0001\b\u0001\b\u0003\b\u014e\b\b\u0001\t\u0001\t"+
|
||||
"\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\n\u0001"+
|
||||
"\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\u000b\u0001\u000b\u0001"+
|
||||
"\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001"+
|
||||
"\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\r\u0001\r\u0001\r\u0001"+
|
||||
"\r\u0001\r\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e"+
|
||||
"\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f"+
|
||||
"\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0011"+
|
||||
"\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0012"+
|
||||
"\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0013"+
|
||||
"\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013"+
|
||||
"\u0001\u0013\u0001\u0013\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014"+
|
||||
"\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0015\u0001\u0015"+
|
||||
"\u0001\u0015\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016"+
|
||||
"\u0001\u0016\u0001\u0016\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017"+
|
||||
"\u0001\u0017\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018"+
|
||||
"\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0019\u0001\u0019\u0001\u0019"+
|
||||
"\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u001a\u0001\u001a\u0001\u001a"+
|
||||
"\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001b"+
|
||||
"\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001c"+
|
||||
"\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001d\u0001\u001d\u0001\u001d"+
|
||||
"\u0001\u001d\u0001\u001d\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001f"+
|
||||
"\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f"+
|
||||
"\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001 \u0001 \u0001 "+
|
||||
"\u0001 \u0001 \u0001 \u0001 \u0001!\u0001!\u0001!\u0001!\u0001!\u0001"+
|
||||
"!\u0001!\u0001!\u0001!\u0001!\u0001!\u0001\"\u0001\"\u0001\"\u0001\"\u0001"+
|
||||
"#\u0001#\u0001#\u0001#\u0001#\u0001#\u0001#\u0001#\u0001#\u0001#\u0001"+
|
||||
"$\u0001$\u0001$\u0001$\u0001$\u0001%\u0001%\u0001%\u0001%\u0001%\u0001"+
|
||||
"%\u0001%\u0001&\u0001&\u0001&\u0001&\u0001\'\u0001\'\u0001\'\u0001\'\u0001"+
|
||||
"\'\u0001\'\u0001\'\u0001\'\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001"+
|
||||
"(\u0001(\u0001)\u0001)\u0001)\u0001)\u0001)\u0001)\u0001)\u0001)\u0001"+
|
||||
")\u0001)\u0001*\u0001*\u0001*\u0001*\u0001*\u0001*\u0001*\u0001+\u0001"+
|
||||
"+\u0001+\u0001+\u0001+\u0001+\u0001+\u0001,\u0001,\u0001,\u0001,\u0001"+
|
||||
",\u0001,\u0001-\u0001-\u0001-\u0001-\u0001-\u0001-\u0001-\u0001.\u0001"+
|
||||
".\u0001.\u0001.\u0001.\u0001.\u0001.\u0001.\u0001.\u0001/\u0001/\u0001"+
|
||||
"/\u0001/\u0001/\u0001/\u00010\u00010\u00010\u00010\u00010\u00010\u0001"+
|
||||
"0\u00011\u00011\u00011\u00011\u00011\u00011\u00011\u00011\u00011\u0001"+
|
||||
"1\u00011\u00011\u00011\u00012\u00012\u00012\u00012\u00012\u00013\u0001"+
|
||||
"3\u00013\u00013\u00013\u00013\u00014\u00014\u00014\u00014\u00014\u0001"+
|
||||
"4\u00014\u00015\u00015\u00015\u00015\u00015\u00015\u00015\u00015\u0001"+
|
||||
"5\u00015\u00016\u00016\u00016\u00016\u00017\u00017\u00017\u00017\u0001"+
|
||||
"7\u00018\u00018\u00018\u00018\u00018\u00018\u00018\u00018\u00018\u0001"+
|
||||
"9\u00019\u00019\u00019\u00019\u00019\u0001:\u0001:\u0001;\u0001;\u0001"+
|
||||
";\u0003;\u02a3\b;\u0001<\u0001<\u0003<\u02a7\b<\u0001=\u0001=\u0003=\u02ab"+
|
||||
"\b=\u0001>\u0001>\u0003>\u02af\b>\u0001?\u0001?\u0001@\u0001@\u0001@\u0003"+
|
||||
"@\u02b6\b@\u0003@\u02b8\b@\u0001A\u0001A\u0001A\u0001A\u0001A\u0001A\u0003"+
|
||||
"A\u02c0\bA\u0001B\u0001B\u0001B\u0001B\u0003B\u02c6\bB\u0001C\u0001C\u0001"+
|
||||
"D\u0001D\u0001D\u0003D\u02cd\bD\u0001D\u0003D\u02d0\bD\u0001D\u0003D\u02d3"+
|
||||
"\bD\u0001D\u0001D\u0001D\u0003D\u02d8\bD\u0001D\u0003D\u02db\bD\u0001"+
|
||||
"D\u0001D\u0001D\u0003D\u02e0\bD\u0001D\u0001D\u0003D\u02e4\bD\u0001D\u0001"+
|
||||
"D\u0003D\u02e8\bD\u0001E\u0001E\u0001E\u0001F\u0001F\u0001G\u0003G\u02f0"+
|
||||
"\bG\u0001G\u0001G\u0001H\u0004H\u02f5\bH\u000bH\fH\u02f6\u0001I\u0001"+
|
||||
"I\u0003I\u02fb\bI\u0001J\u0001J\u0001K\u0001K\u0001L\u0001L\u0001M\u0001"+
|
||||
"M\u0001M\u0001M\u0001M\u0001M\u0001M\u0001M\u0003M\u030b\bM\u0001N\u0001"+
|
||||
"N\u0001O\u0001O\u0003O\u0311\bO\u0001O\u0001O\u0001P\u0004P\u0316\bP\u000b"+
|
||||
"P\fP\u0317\u0001Q\u0001Q\u0003Q\u031c\bQ\u0001R\u0001R\u0001R\u0001R\u0001"+
|
||||
"R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001"+
|
||||
"R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001"+
|
||||
"R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001"+
|
||||
"R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001R\u0003R\u0348\bR\u0001"+
|
||||
"S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001"+
|
||||
"S\u0003S\u0355\bS\u0001T\u0001T\u0001T\u0001U\u0001U\u0001V\u0001V\u0001"+
|
||||
"W\u0001W\u0001X\u0001X\u0001X\u0001X\u0001X\u0001X\u0001X\u0001X\u0001"+
|
||||
"X\u0003X\u0369\bX\u0001Y\u0001Y\u0001Y\u0001Y\u0001Y\u0001Z\u0001Z\u0001"+
|
||||
"[\u0001[\u0001\\\u0001\\\u0001]\u0001]\u0001^\u0001^\u0001_\u0001_\u0001"+
|
||||
"`\u0001`\u0001a\u0001a\u0001b\u0001b\u0001b\u0001b\u0001b\u0001c\u0001"+
|
||||
"c\u0001c\u0001d\u0001d\u0001d\u0001e\u0001e\u0001e\u0001f\u0001f\u0001"+
|
||||
"f\u0001g\u0001g\u0001g\u0001h\u0001h\u0001h\u0001i\u0001i\u0001i\u0001"+
|
||||
"j\u0001j\u0001j\u0001k\u0001k\u0001k\u0001l\u0001l\u0001l\u0001m\u0001"+
|
||||
"m\u0001m\u0001m\u0001n\u0001n\u0001n\u0001o\u0001o\u0001o\u0001p\u0001"+
|
||||
"p\u0001p\u0001q\u0001q\u0001q\u0001r\u0001r\u0001r\u0001s\u0001s\u0001"+
|
||||
"s\u0001t\u0001t\u0001t\u0001u\u0001u\u0001u\u0001v\u0001v\u0001v\u0001"+
|
||||
"v\u0001w\u0001w\u0001w\u0001w\u0001x\u0001x\u0001y\u0001y\u0001z\u0001"+
|
||||
"z\u0001{\u0001{\u0001|\u0001|\u0001}\u0001}\u0001~\u0001~\u0001\u007f"+
|
||||
"\u0001\u007f\u0001\u0080\u0001\u0080\u0001\u0081\u0001\u0081\u0001\u0082"+
|
||||
"\u0001\u0082\u0001\u0083\u0001\u0083\u0001\u0084\u0001\u0084\u0001\u0085"+
|
||||
"\u0001\u0085\u0001\u0086\u0001\u0086\u0001\u0087\u0001\u0087\u0005\u0087"+
|
||||
"\u03e7\b\u0087\n\u0087\f\u0087\u03ea\t\u0087\u0001\u0088\u0001\u0088\u0001"+
|
||||
"\u0089\u0001\u0089\u0000\u0000\u008a\u0001\u0000\u0003\u0001\u0005\u0000"+
|
||||
"\u0007\u0002\t\u0000\u000b\u0000\r\u0000\u000f\u0000\u0011\u0000\u0013"+
|
||||
"\u0003\u0015\u0004\u0017\u0005\u0019\u0006\u001b\u0007\u001d\b\u001f\t"+
|
||||
"!\n#\u000b%\f\'\r)\u000e+\u000f-\u0010/\u00111\u00123\u00135\u00147\u0015"+
|
||||
"9\u0016;\u0017=\u0018?\u0019A\u001aC\u001bE\u001cG\u001dI\u001eK\u001f"+
|
||||
"M O!Q\"S#U$W%Y&[\'](_)a*c+e,g-i.k/m0o1q2s3u4w5y\u0000{\u0000}\u0000\u007f"+
|
||||
"\u0000\u0081\u0000\u0083\u0000\u0085\u0000\u0087\u0000\u00896\u008b\u0000"+
|
||||
"\u008d\u0000\u008f\u0000\u0091\u0000\u0093\u0000\u0095\u0000\u0097\u0000"+
|
||||
"\u0099\u0000\u009b7\u009d\u0000\u009f8\u00a1\u0000\u00a3\u0000\u00a5\u0000"+
|
||||
"\u00a7\u0000\u00a9\u0000\u00ab\u0000\u00ad\u0000\u00af\u0000\u00b19\u00b3"+
|
||||
":\u00b5;\u00b7<\u00b9=\u00bb>\u00bd?\u00bf@\u00c1A\u00c3B\u00c5C\u00c7"+
|
||||
"D\u00c9E\u00cbF\u00cdG\u00cfH\u00d1I\u00d3J\u00d5K\u00d7L\u00d9M\u00db"+
|
||||
"N\u00ddO\u00dfP\u00e1Q\u00e3R\u00e5S\u00e7T\u00e9U\u00ebV\u00edW\u00ef"+
|
||||
"X\u00f1Y\u00f3Z\u00f5[\u00f7\\\u00f9]\u00fb^\u00fd_\u00ff`\u0101a\u0103"+
|
||||
"b\u0105c\u0107d\u0109e\u010bf\u010dg\u010fh\u0111\u0000\u0113\u0000\u0001"+
|
||||
"\u0000\u000f\u0003\u0000\t\t\f\f \u0002\u0000\n\n\r\r\u0002\u0000**^"+
|
||||
"^\u0003\u0000**//^^\u0002\u0000LLll\u0003\u000009AFaf\u0002\u0000EEee"+
|
||||
"\u0001\u000019\u0002\u0000++--\u0004\u0000DDFFddff\u0003\u0000\'\'\\\\"+
|
||||
"^^\u0001\u000007\u0001\u000003\u0004\u0000$$AZ__az\u0005\u0000$$09AZ_"+
|
||||
"_az\u03fd\u0000\u0003\u0001\u0000\u0000\u0000\u0000\u0007\u0001\u0000"+
|
||||
"\u0000\u0000\u0000\u0013\u0001\u0000\u0000\u0000\u0000\u0015\u0001\u0000"+
|
||||
"\u0000\u0000\u0000\u0017\u0001\u0000\u0000\u0000\u0000\u0019\u0001\u0000"+
|
||||
"\u0000\u0000\u0000\u001b\u0001\u0000\u0000\u0000\u0000\u001d\u0001\u0000"+
|
||||
"\u0000\u0000\u0000\u001f\u0001\u0000\u0000\u0000\u0000!\u0001\u0000\u0000"+
|
||||
"\u0000\u0000#\u0001\u0000\u0000\u0000\u0000%\u0001\u0000\u0000\u0000\u0000"+
|
||||
"\'\u0001\u0000\u0000\u0000\u0000)\u0001\u0000\u0000\u0000\u0000+\u0001"+
|
||||
"\u0000\u0000\u0000\u0000-\u0001\u0000\u0000\u0000\u0000/\u0001\u0000\u0000"+
|
||||
"\u0000\u00001\u0001\u0000\u0000\u0000\u00003\u0001\u0000\u0000\u0000\u0000"+
|
||||
"5\u0001\u0000\u0000\u0000\u00007\u0001\u0000\u0000\u0000\u00009\u0001"+
|
||||
"\u0000\u0000\u0000\u0000;\u0001\u0000\u0000\u0000\u0000=\u0001\u0000\u0000"+
|
||||
"\u0000\u0000?\u0001\u0000\u0000\u0000\u0000A\u0001\u0000\u0000\u0000\u0000"+
|
||||
"C\u0001\u0000\u0000\u0000\u0000E\u0001\u0000\u0000\u0000\u0000G\u0001"+
|
||||
"\u0000\u0000\u0000\u0000I\u0001\u0000\u0000\u0000\u0000K\u0001\u0000\u0000"+
|
||||
"\u0000\u0000M\u0001\u0000\u0000\u0000\u0000O\u0001\u0000\u0000\u0000\u0000"+
|
||||
"Q\u0001\u0000\u0000\u0000\u0000S\u0001\u0000\u0000\u0000\u0000U\u0001"+
|
||||
"\u0000\u0000\u0000\u0000W\u0001\u0000\u0000\u0000\u0000Y\u0001\u0000\u0000"+
|
||||
"\u0000\u0000[\u0001\u0000\u0000\u0000\u0000]\u0001\u0000\u0000\u0000\u0000"+
|
||||
"_\u0001\u0000\u0000\u0000\u0000a\u0001\u0000\u0000\u0000\u0000c\u0001"+
|
||||
"\u0000\u0000\u0000\u0000e\u0001\u0000\u0000\u0000\u0000g\u0001\u0000\u0000"+
|
||||
"\u0000\u0000i\u0001\u0000\u0000\u0000\u0000k\u0001\u0000\u0000\u0000\u0000"+
|
||||
"m\u0001\u0000\u0000\u0000\u0000o\u0001\u0000\u0000\u0000\u0000q\u0001"+
|
||||
"\u0000\u0000\u0000\u0000s\u0001\u0000\u0000\u0000\u0000u\u0001\u0000\u0000"+
|
||||
"\u0000\u0000w\u0001\u0000\u0000\u0000\u0000\u0089\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u009b\u0001\u0000\u0000\u0000\u0000\u009f\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00b1\u0001\u0000\u0000\u0000\u0000\u00b3\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00b5\u0001\u0000\u0000\u0000\u0000\u00b7\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00b9\u0001\u0000\u0000\u0000\u0000\u00bb\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00bd\u0001\u0000\u0000\u0000\u0000\u00bf\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00c1\u0001\u0000\u0000\u0000\u0000\u00c3\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00c5\u0001\u0000\u0000\u0000\u0000\u00c7\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00c9\u0001\u0000\u0000\u0000\u0000\u00cb\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00cd\u0001\u0000\u0000\u0000\u0000\u00cf\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00d1\u0001\u0000\u0000\u0000\u0000\u00d3\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00d5\u0001\u0000\u0000\u0000\u0000\u00d7\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00d9\u0001\u0000\u0000\u0000\u0000\u00db\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00dd\u0001\u0000\u0000\u0000\u0000\u00df\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00e1\u0001\u0000\u0000\u0000\u0000\u00e3\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00e5\u0001\u0000\u0000\u0000\u0000\u00e7\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00e9\u0001\u0000\u0000\u0000\u0000\u00eb\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00ed\u0001\u0000\u0000\u0000\u0000\u00ef\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00f1\u0001\u0000\u0000\u0000\u0000\u00f3\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00f5\u0001\u0000\u0000\u0000\u0000\u00f7\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00f9\u0001\u0000\u0000\u0000\u0000\u00fb\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00fd\u0001\u0000\u0000\u0000\u0000\u00ff\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u0101\u0001\u0000\u0000\u0000\u0000\u0103\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u0105\u0001\u0000\u0000\u0000\u0000\u0107\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u0109\u0001\u0000\u0000\u0000\u0000\u010b\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u010d\u0001\u0000\u0000\u0000\u0000\u010f\u0001\u0000\u0000\u0000"+
|
||||
"\u0001\u011a\u0001\u0000\u0000\u0000\u0003\u011e\u0001\u0000\u0000\u0000"+
|
||||
"\u0005\u0122\u0001\u0000\u0000\u0000\u0007\u0130\u0001\u0000\u0000\u0000"+
|
||||
"\t\u0134\u0001\u0000\u0000\u0000\u000b\u013d\u0001\u0000\u0000\u0000\r"+
|
||||
"\u0145\u0001\u0000\u0000\u0000\u000f\u0149\u0001\u0000\u0000\u0000\u0011"+
|
||||
"\u014d\u0001\u0000\u0000\u0000\u0013\u014f\u0001\u0000\u0000\u0000\u0015"+
|
||||
"\u0158\u0001\u0000\u0000\u0000\u0017\u015f\u0001\u0000\u0000\u0000\u0019"+
|
||||
"\u0167\u0001\u0000\u0000\u0000\u001b\u016d\u0001\u0000\u0000\u0000\u001d"+
|
||||
"\u0172\u0001\u0000\u0000\u0000\u001f\u0177\u0001\u0000\u0000\u0000!\u017d"+
|
||||
"\u0001\u0000\u0000\u0000#\u0182\u0001\u0000\u0000\u0000%\u0188\u0001\u0000"+
|
||||
"\u0000\u0000\'\u018e\u0001\u0000\u0000\u0000)\u0197\u0001\u0000\u0000"+
|
||||
"\u0000+\u019f\u0001\u0000\u0000\u0000-\u01a2\u0001\u0000\u0000\u0000/"+
|
||||
"\u01a9\u0001\u0000\u0000\u00001\u01ae\u0001\u0000\u0000\u00003\u01b6\u0001"+
|
||||
"\u0000\u0000\u00005\u01bc\u0001\u0000\u0000\u00007\u01c4\u0001\u0000\u0000"+
|
||||
"\u00009\u01ca\u0001\u0000\u0000\u0000;\u01ce\u0001\u0000\u0000\u0000="+
|
||||
"\u01d3\u0001\u0000\u0000\u0000?\u01d6\u0001\u0000\u0000\u0000A\u01e1\u0001"+
|
||||
"\u0000\u0000\u0000C\u01e8\u0001\u0000\u0000\u0000E\u01f3\u0001\u0000\u0000"+
|
||||
"\u0000G\u01f7\u0001\u0000\u0000\u0000I\u0201\u0001\u0000\u0000\u0000K"+
|
||||
"\u0206\u0001\u0000\u0000\u0000M\u020d\u0001\u0000\u0000\u0000O\u0211\u0001"+
|
||||
"\u0000\u0000\u0000Q\u0219\u0001\u0000\u0000\u0000S\u0221\u0001\u0000\u0000"+
|
||||
"\u0000U\u022b\u0001\u0000\u0000\u0000W\u0232\u0001\u0000\u0000\u0000Y"+
|
||||
"\u0239\u0001\u0000\u0000\u0000[\u023f\u0001\u0000\u0000\u0000]\u0246\u0001"+
|
||||
"\u0000\u0000\u0000_\u024f\u0001\u0000\u0000\u0000a\u0255\u0001\u0000\u0000"+
|
||||
"\u0000c\u025c\u0001\u0000\u0000\u0000e\u0269\u0001\u0000\u0000\u0000g"+
|
||||
"\u026e\u0001\u0000\u0000\u0000i\u0274\u0001\u0000\u0000\u0000k\u027b\u0001"+
|
||||
"\u0000\u0000\u0000m\u0285\u0001\u0000\u0000\u0000o\u0289\u0001\u0000\u0000"+
|
||||
"\u0000q\u028e\u0001\u0000\u0000\u0000s\u0297\u0001\u0000\u0000\u0000u"+
|
||||
"\u029d\u0001\u0000\u0000\u0000w\u02a2\u0001\u0000\u0000\u0000y\u02a4\u0001"+
|
||||
"\u0000\u0000\u0000{\u02a8\u0001\u0000\u0000\u0000}\u02ac\u0001\u0000\u0000"+
|
||||
"\u0000\u007f\u02b0\u0001\u0000\u0000\u0000\u0081\u02b7\u0001\u0000\u0000"+
|
||||
"\u0000\u0083\u02bf\u0001\u0000\u0000\u0000\u0085\u02c5\u0001\u0000\u0000"+
|
||||
"\u0000\u0087\u02c7\u0001\u0000\u0000\u0000\u0089\u02e7\u0001\u0000\u0000"+
|
||||
"\u0000\u008b\u02e9\u0001\u0000\u0000\u0000\u008d\u02ec\u0001\u0000\u0000"+
|
||||
"\u0000\u008f\u02ef\u0001\u0000\u0000\u0000\u0091\u02f4\u0001\u0000\u0000"+
|
||||
"\u0000\u0093\u02fa\u0001\u0000\u0000\u0000\u0095\u02fc\u0001\u0000\u0000"+
|
||||
"\u0000\u0097\u02fe\u0001\u0000\u0000\u0000\u0099\u0300\u0001\u0000\u0000"+
|
||||
"\u0000\u009b\u030a\u0001\u0000\u0000\u0000\u009d\u030c\u0001\u0000\u0000"+
|
||||
"\u0000\u009f\u030e\u0001\u0000\u0000\u0000\u00a1\u0315\u0001\u0000\u0000"+
|
||||
"\u0000\u00a3\u031b\u0001\u0000\u0000\u0000\u00a5\u031d\u0001\u0000\u0000"+
|
||||
"\u0000\u00a7\u0354\u0001\u0000\u0000\u0000\u00a9\u0356\u0001\u0000\u0000"+
|
||||
"\u0000\u00ab\u0359\u0001\u0000\u0000\u0000\u00ad\u035b\u0001\u0000\u0000"+
|
||||
"\u0000\u00af\u035d\u0001\u0000\u0000\u0000\u00b1\u0368\u0001\u0000\u0000"+
|
||||
"\u0000\u00b3\u036a\u0001\u0000\u0000\u0000\u00b5\u036f\u0001\u0000\u0000"+
|
||||
"\u0000\u00b7\u0371\u0001\u0000\u0000\u0000\u00b9\u0373\u0001\u0000\u0000"+
|
||||
"\u0000\u00bb\u0375\u0001\u0000\u0000\u0000\u00bd\u0377\u0001\u0000\u0000"+
|
||||
"\u0000\u00bf\u0379\u0001\u0000\u0000\u0000\u00c1\u037b\u0001\u0000\u0000"+
|
||||
"\u0000\u00c3\u037d\u0001\u0000\u0000\u0000\u00c5\u037f\u0001\u0000\u0000"+
|
||||
"\u0000\u00c7\u0384\u0001\u0000\u0000\u0000\u00c9\u0387\u0001\u0000\u0000"+
|
||||
"\u0000\u00cb\u038a\u0001\u0000\u0000\u0000\u00cd\u038d\u0001\u0000\u0000"+
|
||||
"\u0000\u00cf\u0390\u0001\u0000\u0000\u0000\u00d1\u0393\u0001\u0000\u0000"+
|
||||
"\u0000\u00d3\u0396\u0001\u0000\u0000\u0000\u00d5\u0399\u0001\u0000\u0000"+
|
||||
"\u0000\u00d7\u039c\u0001\u0000\u0000\u0000\u00d9\u039f\u0001\u0000\u0000"+
|
||||
"\u0000\u00db\u03a2\u0001\u0000\u0000\u0000\u00dd\u03a6\u0001\u0000\u0000"+
|
||||
"\u0000\u00df\u03a9\u0001\u0000\u0000\u0000\u00e1\u03ac\u0001\u0000\u0000"+
|
||||
"\u0000\u00e3\u03af\u0001\u0000\u0000\u0000\u00e5\u03b2\u0001\u0000\u0000"+
|
||||
"\u0000\u00e7\u03b5\u0001\u0000\u0000\u0000\u00e9\u03b8\u0001\u0000\u0000"+
|
||||
"\u0000\u00eb\u03bb\u0001\u0000\u0000\u0000\u00ed\u03be\u0001\u0000\u0000"+
|
||||
"\u0000\u00ef\u03c2\u0001\u0000\u0000\u0000\u00f1\u03c6\u0001\u0000\u0000"+
|
||||
"\u0000\u00f3\u03c8\u0001\u0000\u0000\u0000\u00f5\u03ca\u0001\u0000\u0000"+
|
||||
"\u0000\u00f7\u03cc\u0001\u0000\u0000\u0000\u00f9\u03ce\u0001\u0000\u0000"+
|
||||
"\u0000\u00fb\u03d0\u0001\u0000\u0000\u0000\u00fd\u03d2\u0001\u0000\u0000"+
|
||||
"\u0000\u00ff\u03d4\u0001\u0000\u0000\u0000\u0101\u03d6\u0001\u0000\u0000"+
|
||||
"\u0000\u0103\u03d8\u0001\u0000\u0000\u0000\u0105\u03da\u0001\u0000\u0000"+
|
||||
"\u0000\u0107\u03dc\u0001\u0000\u0000\u0000\u0109\u03de\u0001\u0000\u0000"+
|
||||
"\u0000\u010b\u03e0\u0001\u0000\u0000\u0000\u010d\u03e2\u0001\u0000\u0000"+
|
||||
"\u0000\u010f\u03e4\u0001\u0000\u0000\u0000\u0111\u03eb\u0001\u0000\u0000"+
|
||||
"\u0000\u0113\u03ed\u0001\u0000\u0000\u0000\u0115\u0117\u0005\r\u0000\u0000"+
|
||||
"\u0116\u0118\u0005\n\u0000\u0000\u0117\u0116\u0001\u0000\u0000\u0000\u0117"+
|
||||
"\u0118\u0001\u0000\u0000\u0000\u0118\u011b\u0001\u0000\u0000\u0000\u0119"+
|
||||
"\u011b\u0005\n\u0000\u0000\u011a\u0115\u0001\u0000\u0000\u0000\u011a\u0119"+
|
||||
"\u0001\u0000\u0000\u0000\u011b\u0002\u0001\u0000\u0000\u0000\u011c\u011f"+
|
||||
"\u0007\u0000\u0000\u0000\u011d\u011f\u0003\u0001\u0000\u0000\u011e\u011c"+
|
||||
"\u0001\u0000\u0000\u0000\u011e\u011d\u0001\u0000\u0000\u0000\u011f\u0120"+
|
||||
"\u0001\u0000\u0000\u0000\u0120\u0121\u0006\u0001\u0000\u0000\u0121\u0004"+
|
||||
"\u0001\u0000\u0000\u0000\u0122\u0123\u0005/\u0000\u0000\u0123\u0124\u0005"+
|
||||
"/\u0000\u0000\u0124\u0128\u0001\u0000\u0000\u0000\u0125\u0127\b\u0001"+
|
||||
"\u0000\u0000\u0126\u0125\u0001\u0000\u0000\u0000\u0127\u012a\u0001\u0000"+
|
||||
"\u0000\u0000\u0128\u0126\u0001\u0000\u0000\u0000\u0128\u0129\u0001\u0000"+
|
||||
"\u0000\u0000\u0129\u012c\u0001\u0000\u0000\u0000\u012a\u0128\u0001\u0000"+
|
||||
"\u0000\u0000\u012b\u012d\u0003\u0001\u0000\u0000\u012c\u012b\u0001\u0000"+
|
||||
"\u0000\u0000\u012c\u012d\u0001\u0000\u0000\u0000\u012d\u0006\u0001\u0000"+
|
||||
"\u0000\u0000\u012e\u0131\u0003\t\u0004\u0000\u012f\u0131\u0003\u0005\u0002"+
|
||||
"\u0000\u0130\u012e\u0001\u0000\u0000\u0000\u0130\u012f\u0001\u0000\u0000"+
|
||||
"\u0000\u0131\u0132\u0001\u0000\u0000\u0000\u0132\u0133\u0006\u0003\u0000"+
|
||||
"\u0000\u0133\b\u0001\u0000\u0000\u0000\u0134\u0135\u0005/\u0000\u0000"+
|
||||
"\u0135\u0136\u0005*\u0000\u0000\u0136\u0137\u0001\u0000\u0000\u0000\u0137"+
|
||||
"\u0138\u0003\u000f\u0007\u0000\u0138\u0139\u0003\u000b\u0005\u0000\u0139"+
|
||||
"\n\u0001\u0000\u0000\u0000\u013a\u013b\u0005*\u0000\u0000\u013b\u013e"+
|
||||
"\u0003\r\u0006\u0000\u013c\u013e\u0003\u000f\u0007\u0000\u013d\u013a\u0001"+
|
||||
"\u0000\u0000\u0000\u013d\u013c\u0001\u0000\u0000\u0000\u013e\f\u0001\u0000"+
|
||||
"\u0000\u0000\u013f\u0146\u0005/\u0000\u0000\u0140\u0141\u0005*\u0000\u0000"+
|
||||
"\u0141\u0146\u0003\r\u0006\u0000\u0142\u0143\u0003\u0011\b\u0000\u0143"+
|
||||
"\u0144\u0003\u000b\u0005\u0000\u0144\u0146\u0001\u0000\u0000\u0000\u0145"+
|
||||
"\u013f\u0001\u0000\u0000\u0000\u0145\u0140\u0001\u0000\u0000\u0000\u0145"+
|
||||
"\u0142\u0001\u0000\u0000\u0000\u0146\u000e\u0001\u0000\u0000\u0000\u0147"+
|
||||
"\u014a\u0007\u0002\u0000\u0000\u0148\u014a\u0003\u0001\u0000\u0000\u0149"+
|
||||
"\u0147\u0001\u0000\u0000\u0000\u0149\u0148\u0001\u0000\u0000\u0000\u014a"+
|
||||
"\u0010\u0001\u0000\u0000\u0000\u014b\u014e\u0007\u0003\u0000\u0000\u014c"+
|
||||
"\u014e\u0003\u0001\u0000\u0000\u014d\u014b\u0001\u0000\u0000\u0000\u014d"+
|
||||
"\u014c\u0001\u0000\u0000\u0000\u014e\u0012\u0001\u0000\u0000\u0000\u014f"+
|
||||
"\u0150\u0005a\u0000\u0000\u0150\u0151\u0005b\u0000\u0000\u0151\u0152\u0005"+
|
||||
"s\u0000\u0000\u0152\u0153\u0005t\u0000\u0000\u0153\u0154\u0005r\u0000"+
|
||||
"\u0000\u0154\u0155\u0005a\u0000\u0000\u0155\u0156\u0005c\u0000\u0000\u0156"+
|
||||
"\u0157\u0005t\u0000\u0000\u0157\u0014\u0001\u0000\u0000\u0000\u0158\u0159"+
|
||||
"\u0005a\u0000\u0000\u0159\u015a\u0005s\u0000\u0000\u015a\u015b\u0005s"+
|
||||
"\u0000\u0000\u015b\u015c\u0005e\u0000\u0000\u015c\u015d\u0005r\u0000\u0000"+
|
||||
"\u015d\u015e\u0005t\u0000\u0000\u015e\u0016\u0001\u0000\u0000\u0000\u015f"+
|
||||
"\u0160\u0005b\u0000\u0000\u0160\u0161\u0005o\u0000\u0000\u0161\u0162\u0005"+
|
||||
"o\u0000\u0000\u0162\u0163\u0005l\u0000\u0000\u0163\u0164\u0005e\u0000"+
|
||||
"\u0000\u0164\u0165\u0005a\u0000\u0000\u0165\u0166\u0005n\u0000\u0000\u0166"+
|
||||
"\u0018\u0001\u0000\u0000\u0000\u0167\u0168\u0005b\u0000\u0000\u0168\u0169"+
|
||||
"\u0005r\u0000\u0000\u0169\u016a\u0005e\u0000\u0000\u016a\u016b\u0005a"+
|
||||
"\u0000\u0000\u016b\u016c\u0005k\u0000\u0000\u016c\u001a\u0001\u0000\u0000"+
|
||||
"\u0000\u016d\u016e\u0005b\u0000\u0000\u016e\u016f\u0005y\u0000\u0000\u016f"+
|
||||
"\u0170\u0005t\u0000\u0000\u0170\u0171\u0005e\u0000\u0000\u0171\u001c\u0001"+
|
||||
"\u0000\u0000\u0000\u0172\u0173\u0005c\u0000\u0000\u0173\u0174\u0005a\u0000"+
|
||||
"\u0000\u0174\u0175\u0005s\u0000\u0000\u0175\u0176\u0005e\u0000\u0000\u0176"+
|
||||
"\u001e\u0001\u0000\u0000\u0000\u0177\u0178\u0005c\u0000\u0000\u0178\u0179"+
|
||||
"\u0005a\u0000\u0000\u0179\u017a\u0005t\u0000\u0000\u017a\u017b\u0005c"+
|
||||
"\u0000\u0000\u017b\u017c\u0005h\u0000\u0000\u017c \u0001\u0000\u0000\u0000"+
|
||||
"\u017d\u017e\u0005c\u0000\u0000\u017e\u017f\u0005h\u0000\u0000\u017f\u0180"+
|
||||
"\u0005a\u0000\u0000\u0180\u0181\u0005r\u0000\u0000\u0181\"\u0001\u0000"+
|
||||
"\u0000\u0000\u0182\u0183\u0005c\u0000\u0000\u0183\u0184\u0005l\u0000\u0000"+
|
||||
"\u0184\u0185\u0005a\u0000\u0000\u0185\u0186\u0005s\u0000\u0000\u0186\u0187"+
|
||||
"\u0005s\u0000\u0000\u0187$\u0001\u0000\u0000\u0000\u0188\u0189\u0005c"+
|
||||
"\u0000\u0000\u0189\u018a\u0005o\u0000\u0000\u018a\u018b\u0005n\u0000\u0000"+
|
||||
"\u018b\u018c\u0005s\u0000\u0000\u018c\u018d\u0005t\u0000\u0000\u018d&"+
|
||||
"\u0001\u0000\u0000\u0000\u018e\u018f\u0005c\u0000\u0000\u018f\u0190\u0005"+
|
||||
"o\u0000\u0000\u0190\u0191\u0005n\u0000\u0000\u0191\u0192\u0005t\u0000"+
|
||||
"\u0000\u0192\u0193\u0005i\u0000\u0000\u0193\u0194\u0005n\u0000\u0000\u0194"+
|
||||
"\u0195\u0005u\u0000\u0000\u0195\u0196\u0005e\u0000\u0000\u0196(\u0001"+
|
||||
"\u0000\u0000\u0000\u0197\u0198\u0005d\u0000\u0000\u0198\u0199\u0005e\u0000"+
|
||||
"\u0000\u0199\u019a\u0005f\u0000\u0000\u019a\u019b\u0005a\u0000\u0000\u019b"+
|
||||
"\u019c\u0005u\u0000\u0000\u019c\u019d\u0005l\u0000\u0000\u019d\u019e\u0005"+
|
||||
"t\u0000\u0000\u019e*\u0001\u0000\u0000\u0000\u019f\u01a0\u0005d\u0000"+
|
||||
"\u0000\u01a0\u01a1\u0005o\u0000\u0000\u01a1,\u0001\u0000\u0000\u0000\u01a2"+
|
||||
"\u01a3\u0005d\u0000\u0000\u01a3\u01a4\u0005o\u0000\u0000\u01a4\u01a5\u0005"+
|
||||
"u\u0000\u0000\u01a5\u01a6\u0005b\u0000\u0000\u01a6\u01a7\u0005l\u0000"+
|
||||
"\u0000\u01a7\u01a8\u0005e\u0000\u0000\u01a8.\u0001\u0000\u0000\u0000\u01a9"+
|
||||
"\u01aa\u0005e\u0000\u0000\u01aa\u01ab\u0005l\u0000\u0000\u01ab\u01ac\u0005"+
|
||||
"s\u0000\u0000\u01ac\u01ad\u0005e\u0000\u0000\u01ad0\u0001\u0000\u0000"+
|
||||
"\u0000\u01ae\u01af\u0005e\u0000\u0000\u01af\u01b0\u0005x\u0000\u0000\u01b0"+
|
||||
"\u01b1\u0005t\u0000\u0000\u01b1\u01b2\u0005e\u0000\u0000\u01b2\u01b3\u0005"+
|
||||
"n\u0000\u0000\u01b3\u01b4\u0005d\u0000\u0000\u01b4\u01b5\u0005s\u0000"+
|
||||
"\u0000\u01b52\u0001\u0000\u0000\u0000\u01b6\u01b7\u0005f\u0000\u0000\u01b7"+
|
||||
"\u01b8\u0005i\u0000\u0000\u01b8\u01b9\u0005n\u0000\u0000\u01b9\u01ba\u0005"+
|
||||
"a\u0000\u0000\u01ba\u01bb\u0005l\u0000\u0000\u01bb4\u0001\u0000\u0000"+
|
||||
"\u0000\u01bc\u01bd\u0005f\u0000\u0000\u01bd\u01be\u0005i\u0000\u0000\u01be"+
|
||||
"\u01bf\u0005n\u0000\u0000\u01bf\u01c0\u0005a\u0000\u0000\u01c0\u01c1\u0005"+
|
||||
"l\u0000\u0000\u01c1\u01c2\u0005l\u0000\u0000\u01c2\u01c3\u0005y\u0000"+
|
||||
"\u0000\u01c36\u0001\u0000\u0000\u0000\u01c4\u01c5\u0005f\u0000\u0000\u01c5"+
|
||||
"\u01c6\u0005l\u0000\u0000\u01c6\u01c7\u0005o\u0000\u0000\u01c7\u01c8\u0005"+
|
||||
"a\u0000\u0000\u01c8\u01c9\u0005t\u0000\u0000\u01c98\u0001\u0000\u0000"+
|
||||
"\u0000\u01ca\u01cb\u0005f\u0000\u0000\u01cb\u01cc\u0005o\u0000\u0000\u01cc"+
|
||||
"\u01cd\u0005r\u0000\u0000\u01cd:\u0001\u0000\u0000\u0000\u01ce\u01cf\u0005"+
|
||||
"g\u0000\u0000\u01cf\u01d0\u0005o\u0000\u0000\u01d0\u01d1\u0005t\u0000"+
|
||||
"\u0000\u01d1\u01d2\u0005o\u0000\u0000\u01d2<\u0001\u0000\u0000\u0000\u01d3"+
|
||||
"\u01d4\u0005i\u0000\u0000\u01d4\u01d5\u0005f\u0000\u0000\u01d5>\u0001"+
|
||||
"\u0000\u0000\u0000\u01d6\u01d7\u0005i\u0000\u0000\u01d7\u01d8\u0005m\u0000"+
|
||||
"\u0000\u01d8\u01d9\u0005p\u0000\u0000\u01d9\u01da\u0005l\u0000\u0000\u01da"+
|
||||
"\u01db\u0005e\u0000\u0000\u01db\u01dc\u0005m\u0000\u0000\u01dc\u01dd\u0005"+
|
||||
"e\u0000\u0000\u01dd\u01de\u0005n\u0000\u0000\u01de\u01df\u0005t\u0000"+
|
||||
"\u0000\u01df\u01e0\u0005s\u0000\u0000\u01e0@\u0001\u0000\u0000\u0000\u01e1"+
|
||||
"\u01e2\u0005i\u0000\u0000\u01e2\u01e3\u0005m\u0000\u0000\u01e3\u01e4\u0005"+
|
||||
"p\u0000\u0000\u01e4\u01e5\u0005o\u0000\u0000\u01e5\u01e6\u0005r\u0000"+
|
||||
"\u0000\u01e6\u01e7\u0005t\u0000\u0000\u01e7B\u0001\u0000\u0000\u0000\u01e8"+
|
||||
"\u01e9\u0005i\u0000\u0000\u01e9\u01ea\u0005n\u0000\u0000\u01ea\u01eb\u0005"+
|
||||
"s\u0000\u0000\u01eb\u01ec\u0005t\u0000\u0000\u01ec\u01ed\u0005a\u0000"+
|
||||
"\u0000\u01ed\u01ee\u0005n\u0000\u0000\u01ee\u01ef\u0005c\u0000\u0000\u01ef"+
|
||||
"\u01f0\u0005e\u0000\u0000\u01f0\u01f1\u0005o\u0000\u0000\u01f1\u01f2\u0005"+
|
||||
"f\u0000\u0000\u01f2D\u0001\u0000\u0000\u0000\u01f3\u01f4\u0005i\u0000"+
|
||||
"\u0000\u01f4\u01f5\u0005n\u0000\u0000\u01f5\u01f6\u0005t\u0000\u0000\u01f6"+
|
||||
"F\u0001\u0000\u0000\u0000\u01f7\u01f8\u0005i\u0000\u0000\u01f8\u01f9\u0005"+
|
||||
"n\u0000\u0000\u01f9\u01fa\u0005t\u0000\u0000\u01fa\u01fb\u0005e\u0000"+
|
||||
"\u0000\u01fb\u01fc\u0005r\u0000\u0000\u01fc\u01fd\u0005f\u0000\u0000\u01fd"+
|
||||
"\u01fe\u0005a\u0000\u0000\u01fe\u01ff\u0005c\u0000\u0000\u01ff\u0200\u0005"+
|
||||
"e\u0000\u0000\u0200H\u0001\u0000\u0000\u0000\u0201\u0202\u0005l\u0000"+
|
||||
"\u0000\u0202\u0203\u0005o\u0000\u0000\u0203\u0204\u0005n\u0000\u0000\u0204"+
|
||||
"\u0205\u0005g\u0000\u0000\u0205J\u0001\u0000\u0000\u0000\u0206\u0207\u0005"+
|
||||
"n\u0000\u0000\u0207\u0208\u0005a\u0000\u0000\u0208\u0209\u0005t\u0000"+
|
||||
"\u0000\u0209\u020a\u0005i\u0000\u0000\u020a\u020b\u0005v\u0000\u0000\u020b"+
|
||||
"\u020c\u0005e\u0000\u0000\u020cL\u0001\u0000\u0000\u0000\u020d\u020e\u0005"+
|
||||
"n\u0000\u0000\u020e\u020f\u0005e\u0000\u0000\u020f\u0210\u0005w\u0000"+
|
||||
"\u0000\u0210N\u0001\u0000\u0000\u0000\u0211\u0212\u0005p\u0000\u0000\u0212"+
|
||||
"\u0213\u0005a\u0000\u0000\u0213\u0214\u0005c\u0000\u0000\u0214\u0215\u0005"+
|
||||
"k\u0000\u0000\u0215\u0216\u0005a\u0000\u0000\u0216\u0217\u0005g\u0000"+
|
||||
"\u0000\u0217\u0218\u0005e\u0000\u0000\u0218P\u0001\u0000\u0000\u0000\u0219"+
|
||||
"\u021a\u0005p\u0000\u0000\u021a\u021b\u0005r\u0000\u0000\u021b\u021c\u0005"+
|
||||
"i\u0000\u0000\u021c\u021d\u0005v\u0000\u0000\u021d\u021e\u0005a\u0000"+
|
||||
"\u0000\u021e\u021f\u0005t\u0000\u0000\u021f\u0220\u0005e\u0000\u0000\u0220"+
|
||||
"R\u0001\u0000\u0000\u0000\u0221\u0222\u0005p\u0000\u0000\u0222\u0223\u0005"+
|
||||
"r\u0000\u0000\u0223\u0224\u0005o\u0000\u0000\u0224\u0225\u0005t\u0000"+
|
||||
"\u0000\u0225\u0226\u0005e\u0000\u0000\u0226\u0227\u0005c\u0000\u0000\u0227"+
|
||||
"\u0228\u0005t\u0000\u0000\u0228\u0229\u0005e\u0000\u0000\u0229\u022a\u0005"+
|
||||
"d\u0000\u0000\u022aT\u0001\u0000\u0000\u0000\u022b\u022c\u0005p\u0000"+
|
||||
"\u0000\u022c\u022d\u0005u\u0000\u0000\u022d\u022e\u0005b\u0000\u0000\u022e"+
|
||||
"\u022f\u0005l\u0000\u0000\u022f\u0230\u0005i\u0000\u0000\u0230\u0231\u0005"+
|
||||
"c\u0000\u0000\u0231V\u0001\u0000\u0000\u0000\u0232\u0233\u0005r\u0000"+
|
||||
"\u0000\u0233\u0234\u0005e\u0000\u0000\u0234\u0235\u0005t\u0000\u0000\u0235"+
|
||||
"\u0236\u0005u\u0000\u0000\u0236\u0237\u0005r\u0000\u0000\u0237\u0238\u0005"+
|
||||
"n\u0000\u0000\u0238X\u0001\u0000\u0000\u0000\u0239\u023a\u0005s\u0000"+
|
||||
"\u0000\u023a\u023b\u0005h\u0000\u0000\u023b\u023c\u0005o\u0000\u0000\u023c"+
|
||||
"\u023d\u0005r\u0000\u0000\u023d\u023e\u0005t\u0000\u0000\u023eZ\u0001"+
|
||||
"\u0000\u0000\u0000\u023f\u0240\u0005s\u0000\u0000\u0240\u0241\u0005t\u0000"+
|
||||
"\u0000\u0241\u0242\u0005a\u0000\u0000\u0242\u0243\u0005t\u0000\u0000\u0243"+
|
||||
"\u0244\u0005i\u0000\u0000\u0244\u0245\u0005c\u0000\u0000\u0245\\\u0001"+
|
||||
"\u0000\u0000\u0000\u0246\u0247\u0005s\u0000\u0000\u0247\u0248\u0005t\u0000"+
|
||||
"\u0000\u0248\u0249\u0005r\u0000\u0000\u0249\u024a\u0005i\u0000\u0000\u024a"+
|
||||
"\u024b\u0005c\u0000\u0000\u024b\u024c\u0005t\u0000\u0000\u024c\u024d\u0005"+
|
||||
"f\u0000\u0000\u024d\u024e\u0005p\u0000\u0000\u024e^\u0001\u0000\u0000"+
|
||||
"\u0000\u024f\u0250\u0005s\u0000\u0000\u0250\u0251\u0005u\u0000\u0000\u0251"+
|
||||
"\u0252\u0005p\u0000\u0000\u0252\u0253\u0005e\u0000\u0000\u0253\u0254\u0005"+
|
||||
"r\u0000\u0000\u0254`\u0001\u0000\u0000\u0000\u0255\u0256\u0005s\u0000"+
|
||||
"\u0000\u0256\u0257\u0005w\u0000\u0000\u0257\u0258\u0005i\u0000\u0000\u0258"+
|
||||
"\u0259\u0005t\u0000\u0000\u0259\u025a\u0005c\u0000\u0000\u025a\u025b\u0005"+
|
||||
"h\u0000\u0000\u025bb\u0001\u0000\u0000\u0000\u025c\u025d\u0005s\u0000"+
|
||||
"\u0000\u025d\u025e\u0005y\u0000\u0000\u025e\u025f\u0005n\u0000\u0000\u025f"+
|
||||
"\u0260\u0005c\u0000\u0000\u0260\u0261\u0005h\u0000\u0000\u0261\u0262\u0005"+
|
||||
"r\u0000\u0000\u0262\u0263\u0005o\u0000\u0000\u0263\u0264\u0005n\u0000"+
|
||||
"\u0000\u0264\u0265\u0005i\u0000\u0000\u0265\u0266\u0005z\u0000\u0000\u0266"+
|
||||
"\u0267\u0005e\u0000\u0000\u0267\u0268\u0005d\u0000\u0000\u0268d\u0001"+
|
||||
"\u0000\u0000\u0000\u0269\u026a\u0005t\u0000\u0000\u026a\u026b\u0005h\u0000"+
|
||||
"\u0000\u026b\u026c\u0005i\u0000\u0000\u026c\u026d\u0005s\u0000\u0000\u026d"+
|
||||
"f\u0001\u0000\u0000\u0000\u026e\u026f\u0005t\u0000\u0000\u026f\u0270\u0005"+
|
||||
"h\u0000\u0000\u0270\u0271\u0005r\u0000\u0000\u0271\u0272\u0005o\u0000"+
|
||||
"\u0000\u0272\u0273\u0005w\u0000\u0000\u0273h\u0001\u0000\u0000\u0000\u0274"+
|
||||
"\u0275\u0005t\u0000\u0000\u0275\u0276\u0005h\u0000\u0000\u0276\u0277\u0005"+
|
||||
"r\u0000\u0000\u0277\u0278\u0005o\u0000\u0000\u0278\u0279\u0005w\u0000"+
|
||||
"\u0000\u0279\u027a\u0005s\u0000\u0000\u027aj\u0001\u0000\u0000\u0000\u027b"+
|
||||
"\u027c\u0005t\u0000\u0000\u027c\u027d\u0005r\u0000\u0000\u027d\u027e\u0005"+
|
||||
"a\u0000\u0000\u027e\u027f\u0005n\u0000\u0000\u027f\u0280\u0005s\u0000"+
|
||||
"\u0000\u0280\u0281\u0005i\u0000\u0000\u0281\u0282\u0005e\u0000\u0000\u0282"+
|
||||
"\u0283\u0005n\u0000\u0000\u0283\u0284\u0005t\u0000\u0000\u0284l\u0001"+
|
||||
"\u0000\u0000\u0000\u0285\u0286\u0005t\u0000\u0000\u0286\u0287\u0005r\u0000"+
|
||||
"\u0000\u0287\u0288\u0005y\u0000\u0000\u0288n\u0001\u0000\u0000\u0000\u0289"+
|
||||
"\u028a\u0005v\u0000\u0000\u028a\u028b\u0005o\u0000\u0000\u028b\u028c\u0005"+
|
||||
"i\u0000\u0000\u028c\u028d\u0005d\u0000\u0000\u028dp\u0001\u0000\u0000"+
|
||||
"\u0000\u028e\u028f\u0005v\u0000\u0000\u028f\u0290\u0005o\u0000\u0000\u0290"+
|
||||
"\u0291\u0005l\u0000\u0000\u0291\u0292\u0005a\u0000\u0000\u0292\u0293\u0005"+
|
||||
"t\u0000\u0000\u0293\u0294\u0005i\u0000\u0000\u0294\u0295\u0005l\u0000"+
|
||||
"\u0000\u0295\u0296\u0005e\u0000\u0000\u0296r\u0001\u0000\u0000\u0000\u0297"+
|
||||
"\u0298\u0005w\u0000\u0000\u0298\u0299\u0005h\u0000\u0000\u0299\u029a\u0005"+
|
||||
"i\u0000\u0000\u029a\u029b\u0005l\u0000\u0000\u029b\u029c\u0005e\u0000"+
|
||||
"\u0000\u029ct\u0001\u0000\u0000\u0000\u029d\u029e\u0005.\u0000\u0000\u029e"+
|
||||
"v\u0001\u0000\u0000\u0000\u029f\u02a3\u0003y<\u0000\u02a0\u02a3\u0003"+
|
||||
"{=\u0000\u02a1\u02a3\u0003}>\u0000\u02a2\u029f\u0001\u0000\u0000\u0000"+
|
||||
"\u02a2\u02a0\u0001\u0000\u0000\u0000\u02a2\u02a1\u0001\u0000\u0000\u0000"+
|
||||
"\u02a3x\u0001\u0000\u0000\u0000\u02a4\u02a6\u0003\u0081@\u0000\u02a5\u02a7"+
|
||||
"\u0003\u007f?\u0000\u02a6\u02a5\u0001\u0000\u0000\u0000\u02a6\u02a7\u0001"+
|
||||
"\u0000\u0000\u0000\u02a7z\u0001\u0000\u0000\u0000\u02a8\u02aa\u0003\u0083"+
|
||||
"A\u0000\u02a9\u02ab\u0003\u007f?\u0000\u02aa\u02a9\u0001\u0000\u0000\u0000"+
|
||||
"\u02aa\u02ab\u0001\u0000\u0000\u0000\u02ab|\u0001\u0000\u0000\u0000\u02ac"+
|
||||
"\u02ae\u0003\u00a9T\u0000\u02ad\u02af\u0003\u007f?\u0000\u02ae\u02ad\u0001"+
|
||||
"\u0000\u0000\u0000\u02ae\u02af\u0001\u0000\u0000\u0000\u02af~\u0001\u0000"+
|
||||
"\u0000\u0000\u02b0\u02b1\u0007\u0004\u0000\u0000\u02b1\u0080\u0001\u0000"+
|
||||
"\u0000\u0000\u02b2\u02b8\u00050\u0000\u0000\u02b3\u02b5\u0003\u0095J\u0000"+
|
||||
"\u02b4\u02b6\u0003\u0091H\u0000\u02b5\u02b4\u0001\u0000\u0000\u0000\u02b5"+
|
||||
"\u02b6\u0001\u0000\u0000\u0000\u02b6\u02b8\u0001\u0000\u0000\u0000\u02b7"+
|
||||
"\u02b2\u0001\u0000\u0000\u0000\u02b7\u02b3\u0001\u0000\u0000\u0000\u02b8"+
|
||||
"\u0082\u0001\u0000\u0000\u0000\u02b9\u02ba\u00050\u0000\u0000\u02ba\u02bb"+
|
||||
"\u0005x\u0000\u0000\u02bb\u02c0\u0003\u0085B\u0000\u02bc\u02bd\u00050"+
|
||||
"\u0000\u0000\u02bd\u02be\u0005X\u0000\u0000\u02be\u02c0\u0003\u0085B\u0000"+
|
||||
"\u02bf\u02b9\u0001\u0000\u0000\u0000\u02bf\u02bc\u0001\u0000\u0000\u0000"+
|
||||
"\u02c0\u0084\u0001\u0000\u0000\u0000\u02c1\u02c6\u0003\u0087C\u0000\u02c2"+
|
||||
"\u02c3\u0003\u0087C\u0000\u02c3\u02c4\u0003\u0085B\u0000\u02c4\u02c6\u0001"+
|
||||
"\u0000\u0000\u0000\u02c5\u02c1\u0001\u0000\u0000\u0000\u02c5\u02c2\u0001"+
|
||||
"\u0000\u0000\u0000\u02c6\u0086\u0001\u0000\u0000\u0000\u02c7\u02c8\u0007"+
|
||||
"\u0005\u0000\u0000\u02c8\u0088\u0001\u0000\u0000\u0000\u02c9\u02ca\u0003"+
|
||||
"\u0091H\u0000\u02ca\u02cc\u0005.\u0000\u0000\u02cb\u02cd\u0003\u0091H"+
|
||||
"\u0000\u02cc\u02cb\u0001\u0000\u0000\u0000\u02cc\u02cd\u0001\u0000\u0000"+
|
||||
"\u0000\u02cd\u02cf\u0001\u0000\u0000\u0000\u02ce\u02d0\u0003\u008bE\u0000"+
|
||||
"\u02cf\u02ce\u0001\u0000\u0000\u0000\u02cf\u02d0\u0001\u0000\u0000\u0000"+
|
||||
"\u02d0\u02d2\u0001\u0000\u0000\u0000\u02d1\u02d3\u0003\u0099L\u0000\u02d2"+
|
||||
"\u02d1\u0001\u0000\u0000\u0000\u02d2\u02d3\u0001\u0000\u0000\u0000\u02d3"+
|
||||
"\u02e8\u0001\u0000\u0000\u0000\u02d4\u02d5\u0005.\u0000\u0000\u02d5\u02d7"+
|
||||
"\u0003\u0091H\u0000\u02d6\u02d8\u0003\u008bE\u0000\u02d7\u02d6\u0001\u0000"+
|
||||
"\u0000\u0000\u02d7\u02d8\u0001\u0000\u0000\u0000\u02d8\u02da\u0001\u0000"+
|
||||
"\u0000\u0000\u02d9\u02db\u0003\u0099L\u0000\u02da\u02d9\u0001\u0000\u0000"+
|
||||
"\u0000\u02da\u02db\u0001\u0000\u0000\u0000\u02db\u02e8\u0001\u0000\u0000"+
|
||||
"\u0000\u02dc\u02dd\u0003\u0091H\u0000\u02dd\u02df\u0003\u008bE\u0000\u02de"+
|
||||
"\u02e0\u0003\u0099L\u0000\u02df\u02de\u0001\u0000\u0000\u0000\u02df\u02e0"+
|
||||
"\u0001\u0000\u0000\u0000\u02e0\u02e8\u0001\u0000\u0000\u0000\u02e1\u02e3"+
|
||||
"\u0003\u0091H\u0000\u02e2\u02e4\u0003\u008bE\u0000\u02e3\u02e2\u0001\u0000"+
|
||||
"\u0000\u0000\u02e3\u02e4\u0001\u0000\u0000\u0000\u02e4\u02e5\u0001\u0000"+
|
||||
"\u0000\u0000\u02e5\u02e6\u0003\u0099L\u0000\u02e6\u02e8\u0001\u0000\u0000"+
|
||||
"\u0000\u02e7\u02c9\u0001\u0000\u0000\u0000\u02e7\u02d4\u0001\u0000\u0000"+
|
||||
"\u0000\u02e7\u02dc\u0001\u0000\u0000\u0000\u02e7\u02e1\u0001\u0000\u0000"+
|
||||
"\u0000\u02e8\u008a\u0001\u0000\u0000\u0000\u02e9\u02ea\u0003\u008dF\u0000"+
|
||||
"\u02ea\u02eb\u0003\u008fG\u0000\u02eb\u008c\u0001\u0000\u0000\u0000\u02ec"+
|
||||
"\u02ed\u0007\u0006\u0000\u0000\u02ed\u008e\u0001\u0000\u0000\u0000\u02ee"+
|
||||
"\u02f0\u0003\u0097K\u0000\u02ef\u02ee\u0001\u0000\u0000\u0000\u02ef\u02f0"+
|
||||
"\u0001\u0000\u0000\u0000\u02f0\u02f1\u0001\u0000\u0000\u0000\u02f1\u02f2"+
|
||||
"\u0003\u0091H\u0000\u02f2\u0090\u0001\u0000\u0000\u0000\u02f3\u02f5\u0003"+
|
||||
"\u0093I\u0000\u02f4\u02f3\u0001\u0000\u0000\u0000\u02f5\u02f6\u0001\u0000"+
|
||||
"\u0000\u0000\u02f6\u02f4\u0001\u0000\u0000\u0000\u02f6\u02f7\u0001\u0000"+
|
||||
"\u0000\u0000\u02f7\u0092\u0001\u0000\u0000\u0000\u02f8\u02fb\u00050\u0000"+
|
||||
"\u0000\u02f9\u02fb\u0003\u0095J\u0000\u02fa\u02f8\u0001\u0000\u0000\u0000"+
|
||||
"\u02fa\u02f9\u0001\u0000\u0000\u0000\u02fb\u0094\u0001\u0000\u0000\u0000"+
|
||||
"\u02fc\u02fd\u0007\u0007\u0000\u0000\u02fd\u0096\u0001\u0000\u0000\u0000"+
|
||||
"\u02fe\u02ff\u0007\b\u0000\u0000\u02ff\u0098\u0001\u0000\u0000\u0000\u0300"+
|
||||
"\u0301\u0007\t\u0000\u0000\u0301\u009a\u0001\u0000\u0000\u0000\u0302\u0303"+
|
||||
"\u0005\'\u0000\u0000\u0303\u0304\u0003\u009dN\u0000\u0304\u0305\u0005"+
|
||||
"\'\u0000\u0000\u0305\u030b\u0001\u0000\u0000\u0000\u0306\u0307\u0005\'"+
|
||||
"\u0000\u0000\u0307\u0308\u0003\u00a5R\u0000\u0308\u0309\u0005\'\u0000"+
|
||||
"\u0000\u0309\u030b\u0001\u0000\u0000\u0000\u030a\u0302\u0001\u0000\u0000"+
|
||||
"\u0000\u030a\u0306\u0001\u0000\u0000\u0000\u030b\u009c\u0001\u0000\u0000"+
|
||||
"\u0000\u030c\u030d\u0007\n\u0000\u0000\u030d\u009e\u0001\u0000\u0000\u0000"+
|
||||
"\u030e\u0310\u0005\"\u0000\u0000\u030f\u0311\u0003\u00a1P\u0000\u0310"+
|
||||
"\u030f\u0001\u0000\u0000\u0000\u0310\u0311\u0001\u0000\u0000\u0000\u0311"+
|
||||
"\u0312\u0001\u0000\u0000\u0000\u0312\u0313\u0005\"\u0000\u0000\u0313\u00a0"+
|
||||
"\u0001\u0000\u0000\u0000\u0314\u0316\u0003\u00a3Q\u0000\u0315\u0314\u0001"+
|
||||
"\u0000\u0000\u0000\u0316\u0317\u0001\u0000\u0000\u0000\u0317\u0315\u0001"+
|
||||
"\u0000\u0000\u0000\u0317\u0318\u0001\u0000\u0000\u0000\u0318\u00a2\u0001"+
|
||||
"\u0000\u0000\u0000\u0319\u031c\u0003\u009dN\u0000\u031a\u031c\u0003\u00a5"+
|
||||
"R\u0000\u031b\u0319\u0001\u0000\u0000\u0000\u031b\u031a\u0001\u0000\u0000"+
|
||||
"\u0000\u031c\u00a4\u0001\u0000\u0000\u0000\u031d\u0347\u0005\\\u0000\u0000"+
|
||||
"\u031e\u031f\u0005u\u0000\u0000\u031f\u0320\u00050\u0000\u0000\u0320\u0321"+
|
||||
"\u00050\u0000\u0000\u0321\u0322\u00050\u0000\u0000\u0322\u0348\u00058"+
|
||||
"\u0000\u0000\u0323\u0324\u0005u\u0000\u0000\u0324\u0325\u00050\u0000\u0000"+
|
||||
"\u0325\u0326\u00050\u0000\u0000\u0326\u0327\u00050\u0000\u0000\u0327\u0348"+
|
||||
"\u00059\u0000\u0000\u0328\u0329\u0005u\u0000\u0000\u0329\u032a\u00050"+
|
||||
"\u0000\u0000\u032a\u032b\u00050\u0000\u0000\u032b\u032c\u00050\u0000\u0000"+
|
||||
"\u032c\u0348\u0005a\u0000\u0000\u032d\u032e\u0005u\u0000\u0000\u032e\u032f"+
|
||||
"\u00050\u0000\u0000\u032f\u0330\u00050\u0000\u0000\u0330\u0331\u00050"+
|
||||
"\u0000\u0000\u0331\u0348\u0005c\u0000\u0000\u0332\u0333\u0005u\u0000\u0000"+
|
||||
"\u0333\u0334\u00050\u0000\u0000\u0334\u0335\u00050\u0000\u0000\u0335\u0336"+
|
||||
"\u00050\u0000\u0000\u0336\u0348\u0005d\u0000\u0000\u0337\u0338\u0005u"+
|
||||
"\u0000\u0000\u0338\u0339\u00050\u0000\u0000\u0339\u033a\u00050\u0000\u0000"+
|
||||
"\u033a\u033b\u00052\u0000\u0000\u033b\u0348\u00052\u0000\u0000\u033c\u033d"+
|
||||
"\u0005u\u0000\u0000\u033d\u033e\u00050\u0000\u0000\u033e\u033f\u00050"+
|
||||
"\u0000\u0000\u033f\u0340\u00052\u0000\u0000\u0340\u0348\u00057\u0000\u0000"+
|
||||
"\u0341\u0342\u0005u\u0000\u0000\u0342\u0343\u00050\u0000\u0000\u0343\u0344"+
|
||||
"\u00050\u0000\u0000\u0344\u0345\u00055\u0000\u0000\u0345\u0348\u0005c"+
|
||||
"\u0000\u0000\u0346\u0348\u0003\u00a7S\u0000\u0347\u031e\u0001\u0000\u0000"+
|
||||
"\u0000\u0347\u0323\u0001\u0000\u0000\u0000\u0347\u0328\u0001\u0000\u0000"+
|
||||
"\u0000\u0347\u032d\u0001\u0000\u0000\u0000\u0347\u0332\u0001\u0000\u0000"+
|
||||
"\u0000\u0347\u0337\u0001\u0000\u0000\u0000\u0347\u033c\u0001\u0000\u0000"+
|
||||
"\u0000\u0347\u0341\u0001\u0000\u0000\u0000\u0347\u0346\u0001\u0000\u0000"+
|
||||
"\u0000\u0348\u00a6\u0001\u0000\u0000\u0000\u0349\u034a\u0005\\\u0000\u0000"+
|
||||
"\u034a\u0355\u0003\u00adV\u0000\u034b\u034c\u0005\\\u0000\u0000\u034c"+
|
||||
"\u034d\u0003\u00adV\u0000\u034d\u034e\u0003\u00adV\u0000\u034e\u0355\u0001"+
|
||||
"\u0000\u0000\u0000\u034f\u0350\u0005\\\u0000\u0000\u0350\u0351\u0003\u00af"+
|
||||
"W\u0000\u0351\u0352\u0003\u00adV\u0000\u0352\u0353\u0003\u00adV\u0000"+
|
||||
"\u0353\u0355\u0001\u0000\u0000\u0000\u0354\u0349\u0001\u0000\u0000\u0000"+
|
||||
"\u0354\u034b\u0001\u0000\u0000\u0000\u0354\u034f\u0001\u0000\u0000\u0000"+
|
||||
"\u0355\u00a8\u0001\u0000\u0000\u0000\u0356\u0357\u00050\u0000\u0000\u0357"+
|
||||
"\u0358\u0003\u00abU\u0000\u0358\u00aa\u0001\u0000\u0000\u0000\u0359\u035a"+
|
||||
"\u0003\u00adV\u0000\u035a\u00ac\u0001\u0000\u0000\u0000\u035b\u035c\u0007"+
|
||||
"\u000b\u0000\u0000\u035c\u00ae\u0001\u0000\u0000\u0000\u035d\u035e\u0007"+
|
||||
"\f\u0000\u0000\u035e\u00b0\u0001\u0000\u0000\u0000\u035f\u0360\u0005t"+
|
||||
"\u0000\u0000\u0360\u0361\u0005r\u0000\u0000\u0361\u0362\u0005u\u0000\u0000"+
|
||||
"\u0362\u0369\u0005e\u0000\u0000\u0363\u0364\u0005f\u0000\u0000\u0364\u0365"+
|
||||
"\u0005a\u0000\u0000\u0365\u0366\u0005l\u0000\u0000\u0366\u0367\u0005s"+
|
||||
"\u0000\u0000\u0367\u0369\u0005e\u0000\u0000\u0368\u035f\u0001\u0000\u0000"+
|
||||
"\u0000\u0368\u0363\u0001\u0000\u0000\u0000\u0369\u00b2\u0001\u0000\u0000"+
|
||||
"\u0000\u036a\u036b\u0005n\u0000\u0000\u036b\u036c\u0005u\u0000\u0000\u036c"+
|
||||
"\u036d\u0005l\u0000\u0000\u036d\u036e\u0005l\u0000\u0000\u036e\u00b4\u0001"+
|
||||
"\u0000\u0000\u0000\u036f\u0370\u0005(\u0000\u0000\u0370\u00b6\u0001\u0000"+
|
||||
"\u0000\u0000\u0371\u0372\u0005)\u0000\u0000\u0372\u00b8\u0001\u0000\u0000"+
|
||||
"\u0000\u0373\u0374\u0005{\u0000\u0000\u0374\u00ba\u0001\u0000\u0000\u0000"+
|
||||
"\u0375\u0376\u0005}\u0000\u0000\u0376\u00bc\u0001\u0000\u0000\u0000\u0377"+
|
||||
"\u0378\u0005[\u0000\u0000\u0378\u00be\u0001\u0000\u0000\u0000\u0379\u037a"+
|
||||
"\u0005]\u0000\u0000\u037a\u00c0\u0001\u0000\u0000\u0000\u037b\u037c\u0005"+
|
||||
";\u0000\u0000\u037c\u00c2\u0001\u0000\u0000\u0000\u037d\u037e\u0005,\u0000"+
|
||||
"\u0000\u037e\u00c4\u0001\u0000\u0000\u0000\u037f\u0380\u0005>\u0000\u0000"+
|
||||
"\u0380\u0381\u0005>\u0000\u0000\u0381\u0382\u0005>\u0000\u0000\u0382\u0383"+
|
||||
"\u0005=\u0000\u0000\u0383\u00c6\u0001\u0000\u0000\u0000\u0384\u0385\u0005"+
|
||||
"=\u0000\u0000\u0385\u0386\u0005=\u0000\u0000\u0386\u00c8\u0001\u0000\u0000"+
|
||||
"\u0000\u0387\u0388\u0005!\u0000\u0000\u0388\u0389\u0005=\u0000\u0000\u0389"+
|
||||
"\u00ca\u0001\u0000\u0000\u0000\u038a\u038b\u0005<\u0000\u0000\u038b\u038c"+
|
||||
"\u0005=\u0000\u0000\u038c\u00cc\u0001\u0000\u0000\u0000\u038d\u038e\u0005"+
|
||||
">\u0000\u0000\u038e\u038f\u0005=\u0000\u0000\u038f\u00ce\u0001\u0000\u0000"+
|
||||
"\u0000\u0390\u0391\u0005&\u0000\u0000\u0391\u0392\u0005&\u0000\u0000\u0392"+
|
||||
"\u00d0\u0001\u0000\u0000\u0000\u0393\u0394\u0005|\u0000\u0000\u0394\u0395"+
|
||||
"\u0005|\u0000\u0000\u0395\u00d2\u0001\u0000\u0000\u0000\u0396\u0397\u0005"+
|
||||
"+\u0000\u0000\u0397\u0398\u0005+\u0000\u0000\u0398\u00d4\u0001\u0000\u0000"+
|
||||
"\u0000\u0399\u039a\u0005-\u0000\u0000\u039a\u039b\u0005-\u0000\u0000\u039b"+
|
||||
"\u00d6\u0001\u0000\u0000\u0000\u039c\u039d\u0005<\u0000\u0000\u039d\u039e"+
|
||||
"\u0005<\u0000\u0000\u039e\u00d8\u0001\u0000\u0000\u0000\u039f\u03a0\u0005"+
|
||||
">\u0000\u0000\u03a0\u03a1\u0005>\u0000\u0000\u03a1\u00da\u0001\u0000\u0000"+
|
||||
"\u0000\u03a2\u03a3\u0005>\u0000\u0000\u03a3\u03a4\u0005>\u0000\u0000\u03a4"+
|
||||
"\u03a5\u0005>\u0000\u0000\u03a5\u00dc\u0001\u0000\u0000\u0000\u03a6\u03a7"+
|
||||
"\u0005+\u0000\u0000\u03a7\u03a8\u0005=\u0000\u0000\u03a8\u00de\u0001\u0000"+
|
||||
"\u0000\u0000\u03a9\u03aa\u0005-\u0000\u0000\u03aa\u03ab\u0005=\u0000\u0000"+
|
||||
"\u03ab\u00e0\u0001\u0000\u0000\u0000\u03ac\u03ad\u0005*\u0000\u0000\u03ad"+
|
||||
"\u03ae\u0005=\u0000\u0000\u03ae\u00e2\u0001\u0000\u0000\u0000\u03af\u03b0"+
|
||||
"\u0005/\u0000\u0000\u03b0\u03b1\u0005=\u0000\u0000\u03b1\u00e4\u0001\u0000"+
|
||||
"\u0000\u0000\u03b2\u03b3\u0005&\u0000\u0000\u03b3\u03b4\u0005=\u0000\u0000"+
|
||||
"\u03b4\u00e6\u0001\u0000\u0000\u0000\u03b5\u03b6\u0005|\u0000\u0000\u03b6"+
|
||||
"\u03b7\u0005=\u0000\u0000\u03b7\u00e8\u0001\u0000\u0000\u0000\u03b8\u03b9"+
|
||||
"\u0005^\u0000\u0000\u03b9\u03ba\u0005=\u0000\u0000\u03ba\u00ea\u0001\u0000"+
|
||||
"\u0000\u0000\u03bb\u03bc\u0005%\u0000\u0000\u03bc\u03bd\u0005=\u0000\u0000"+
|
||||
"\u03bd\u00ec\u0001\u0000\u0000\u0000\u03be\u03bf\u0005<\u0000\u0000\u03bf"+
|
||||
"\u03c0\u0005<\u0000\u0000\u03c0\u03c1\u0005=\u0000\u0000\u03c1\u00ee\u0001"+
|
||||
"\u0000\u0000\u0000\u03c2\u03c3\u0005>\u0000\u0000\u03c3\u03c4\u0005>\u0000"+
|
||||
"\u0000\u03c4\u03c5\u0005=\u0000\u0000\u03c5\u00f0\u0001\u0000\u0000\u0000"+
|
||||
"\u03c6\u03c7\u0005=\u0000\u0000\u03c7\u00f2\u0001\u0000\u0000\u0000\u03c8"+
|
||||
"\u03c9\u0005~\u0000\u0000\u03c9\u00f4\u0001\u0000\u0000\u0000\u03ca\u03cb"+
|
||||
"\u0005<\u0000\u0000\u03cb\u00f6\u0001\u0000\u0000\u0000\u03cc\u03cd\u0005"+
|
||||
">\u0000\u0000\u03cd\u00f8\u0001\u0000\u0000\u0000\u03ce\u03cf\u0005!\u0000"+
|
||||
"\u0000\u03cf\u00fa\u0001\u0000\u0000\u0000\u03d0\u03d1\u0005?\u0000\u0000"+
|
||||
"\u03d1\u00fc\u0001\u0000\u0000\u0000\u03d2\u03d3\u0005:\u0000\u0000\u03d3"+
|
||||
"\u00fe\u0001\u0000\u0000\u0000\u03d4\u03d5\u0005+\u0000\u0000\u03d5\u0100"+
|
||||
"\u0001\u0000\u0000\u0000\u03d6\u03d7\u0005-\u0000\u0000\u03d7\u0102\u0001"+
|
||||
"\u0000\u0000\u0000\u03d8\u03d9\u0005*\u0000\u0000\u03d9\u0104\u0001\u0000"+
|
||||
"\u0000\u0000\u03da\u03db\u0005/\u0000\u0000\u03db\u0106\u0001\u0000\u0000"+
|
||||
"\u0000\u03dc\u03dd\u0005&\u0000\u0000\u03dd\u0108\u0001\u0000\u0000\u0000"+
|
||||
"\u03de\u03df\u0005|\u0000\u0000\u03df\u010a\u0001\u0000\u0000\u0000\u03e0"+
|
||||
"\u03e1\u0005^\u0000\u0000\u03e1\u010c\u0001\u0000\u0000\u0000\u03e2\u03e3"+
|
||||
"\u0005%\u0000\u0000\u03e3\u010e\u0001\u0000\u0000\u0000\u03e4\u03e8\u0003"+
|
||||
"\u0111\u0088\u0000\u03e5\u03e7\u0003\u0113\u0089\u0000\u03e6\u03e5\u0001"+
|
||||
"\u0000\u0000\u0000\u03e7\u03ea\u0001\u0000\u0000\u0000\u03e8\u03e6\u0001"+
|
||||
"\u0000\u0000\u0000\u03e8\u03e9\u0001\u0000\u0000\u0000\u03e9\u0110\u0001"+
|
||||
"\u0000\u0000\u0000\u03ea\u03e8\u0001\u0000\u0000\u0000\u03eb\u03ec\u0007"+
|
||||
"\r\u0000\u0000\u03ec\u0112\u0001\u0000\u0000\u0000\u03ed\u03ee\u0007\u000e"+
|
||||
"\u0000\u0000\u03ee\u0114\u0001\u0000\u0000\u0000&\u0000\u0117\u011a\u011e"+
|
||||
"\u0128\u012c\u0130\u013d\u0145\u0149\u014d\u02a2\u02a6\u02aa\u02ae\u02b5"+
|
||||
"\u02b7\u02bf\u02c5\u02cc\u02cf\u02d2\u02d7\u02da\u02df\u02e3\u02e7\u02ef"+
|
||||
"\u02f6\u02fa\u030a\u0310\u0317\u031b\u0347\u0354\u0368\u03e8\u0001\u0006"+
|
||||
"\u0000\u0000";
|
||||
public static final ATN _ATN =
|
||||
new ATNDeserializer().deserialize(_serializedATN.toCharArray());
|
||||
static {
|
||||
_decisionToDFA = new DFA[_ATN.getNumberOfDecisions()];
|
||||
for (int i = 0; i < _ATN.getNumberOfDecisions(); i++) {
|
||||
_decisionToDFA[i] = new DFA(_ATN.getDecisionState(i), i);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,200 +0,0 @@
|
||||
WhiteSpace=1
|
||||
Comment=2
|
||||
Abstract=3
|
||||
Assert=4
|
||||
Boolean=5
|
||||
Break=6
|
||||
Byte=7
|
||||
Case=8
|
||||
Catch=9
|
||||
Char=10
|
||||
Class=11
|
||||
Const=12
|
||||
Continue=13
|
||||
Default=14
|
||||
Do=15
|
||||
Double=16
|
||||
Else=17
|
||||
Extends=18
|
||||
Final=19
|
||||
Finally=20
|
||||
Float=21
|
||||
For=22
|
||||
Goto=23
|
||||
If=24
|
||||
Implements=25
|
||||
Import=26
|
||||
InstanceOf=27
|
||||
Int=28
|
||||
Interface=29
|
||||
Long=30
|
||||
Native=31
|
||||
New=32
|
||||
Package=33
|
||||
Private=34
|
||||
Protected=35
|
||||
Public=36
|
||||
Return=37
|
||||
Short=38
|
||||
Static=39
|
||||
Strictfp=40
|
||||
Super=41
|
||||
Switch=42
|
||||
Synchronized=43
|
||||
This=44
|
||||
Throw=45
|
||||
Throws=46
|
||||
Transient=47
|
||||
Try=48
|
||||
Void=49
|
||||
Volatile=50
|
||||
While=51
|
||||
Dot=52
|
||||
IntegerLiteral=53
|
||||
FloatingPointLiteral=54
|
||||
CharacterLiteral=55
|
||||
StringLiteral=56
|
||||
BooleanLiteral=57
|
||||
NullLiteral=58
|
||||
ParenthesesLeft=59
|
||||
ParenthesesRight=60
|
||||
CurlyBracketLeft=61
|
||||
CurlyBracketRight=62
|
||||
SquareBracketLeft=63
|
||||
SquareBracketRight=64
|
||||
Semicolon=65
|
||||
Comma=66
|
||||
UnsignedRightShiftAssign=67
|
||||
EqualTo=68
|
||||
NotEqualTo=69
|
||||
LessThanEqualTo=70
|
||||
GreaterThanEqualTo=71
|
||||
ConditionalAND=72
|
||||
ConditionalOR=73
|
||||
Increment=74
|
||||
Decrement=75
|
||||
LeftShift=76
|
||||
SignedRightShift=77
|
||||
UnsignedRightShift=78
|
||||
AddAssign=79
|
||||
SubtractAssign=80
|
||||
MultiplyAssign=81
|
||||
DivideAssign=82
|
||||
BitwiseANDAssign=83
|
||||
BitwiseORAssign=84
|
||||
BitwiseXORAssign=85
|
||||
RemainderAssign=86
|
||||
LeftShiftAssign=87
|
||||
SignedRightShiftAssign=88
|
||||
Assignment=89
|
||||
BitwiseComplement=90
|
||||
LessThan=91
|
||||
GreaterThan=92
|
||||
LogicalComplement=93
|
||||
Question=94
|
||||
Colon=95
|
||||
Addition=96
|
||||
Subtraction=97
|
||||
Multiplication=98
|
||||
Division=99
|
||||
BitwiseAND=100
|
||||
BitwiseOR=101
|
||||
BitwiseXOR=102
|
||||
Remainder=103
|
||||
IDENTIFIER=104
|
||||
'abstract'=3
|
||||
'assert'=4
|
||||
'boolean'=5
|
||||
'break'=6
|
||||
'byte'=7
|
||||
'case'=8
|
||||
'catch'=9
|
||||
'char'=10
|
||||
'class'=11
|
||||
'const'=12
|
||||
'continue'=13
|
||||
'default'=14
|
||||
'do'=15
|
||||
'double'=16
|
||||
'else'=17
|
||||
'extends'=18
|
||||
'final'=19
|
||||
'finally'=20
|
||||
'float'=21
|
||||
'for'=22
|
||||
'goto'=23
|
||||
'if'=24
|
||||
'implements'=25
|
||||
'import'=26
|
||||
'instanceof'=27
|
||||
'int'=28
|
||||
'interface'=29
|
||||
'long'=30
|
||||
'native'=31
|
||||
'new'=32
|
||||
'package'=33
|
||||
'private'=34
|
||||
'protected'=35
|
||||
'public'=36
|
||||
'return'=37
|
||||
'short'=38
|
||||
'static'=39
|
||||
'strictfp'=40
|
||||
'super'=41
|
||||
'switch'=42
|
||||
'synchronized'=43
|
||||
'this'=44
|
||||
'throw'=45
|
||||
'throws'=46
|
||||
'transient'=47
|
||||
'try'=48
|
||||
'void'=49
|
||||
'volatile'=50
|
||||
'while'=51
|
||||
'.'=52
|
||||
'null'=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
|
||||
'<<='=87
|
||||
'>>='=88
|
||||
'='=89
|
||||
'~'=90
|
||||
'<'=91
|
||||
'>'=92
|
||||
'!'=93
|
||||
'?'=94
|
||||
':'=95
|
||||
'+'=96
|
||||
'-'=97
|
||||
'*'=98
|
||||
'/'=99
|
||||
'&'=100
|
||||
'|'=101
|
||||
'^'=102
|
||||
'%'=103
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
@@ -1,200 +0,0 @@
|
||||
WhiteSpace=1
|
||||
Comment=2
|
||||
Abstract=3
|
||||
Assert=4
|
||||
Boolean=5
|
||||
Break=6
|
||||
Byte=7
|
||||
Case=8
|
||||
Catch=9
|
||||
Char=10
|
||||
Class=11
|
||||
Const=12
|
||||
Continue=13
|
||||
Default=14
|
||||
Do=15
|
||||
Double=16
|
||||
Else=17
|
||||
Extends=18
|
||||
Final=19
|
||||
Finally=20
|
||||
Float=21
|
||||
For=22
|
||||
Goto=23
|
||||
If=24
|
||||
Implements=25
|
||||
Import=26
|
||||
InstanceOf=27
|
||||
Int=28
|
||||
Interface=29
|
||||
Long=30
|
||||
Native=31
|
||||
New=32
|
||||
Package=33
|
||||
Private=34
|
||||
Protected=35
|
||||
Public=36
|
||||
Return=37
|
||||
Short=38
|
||||
Static=39
|
||||
Strictfp=40
|
||||
Super=41
|
||||
Switch=42
|
||||
Synchronized=43
|
||||
This=44
|
||||
Throw=45
|
||||
Throws=46
|
||||
Transient=47
|
||||
Try=48
|
||||
Void=49
|
||||
Volatile=50
|
||||
While=51
|
||||
Dot=52
|
||||
IntegerLiteral=53
|
||||
FloatingPointLiteral=54
|
||||
CharacterLiteral=55
|
||||
StringLiteral=56
|
||||
BooleanLiteral=57
|
||||
NullLiteral=58
|
||||
ParenthesesLeft=59
|
||||
ParenthesesRight=60
|
||||
CurlyBracketLeft=61
|
||||
CurlyBracketRight=62
|
||||
SquareBracketLeft=63
|
||||
SquareBracketRight=64
|
||||
Semicolon=65
|
||||
Comma=66
|
||||
UnsignedRightShiftAssign=67
|
||||
EqualTo=68
|
||||
NotEqualTo=69
|
||||
LessThanEqualTo=70
|
||||
GreaterThanEqualTo=71
|
||||
ConditionalAND=72
|
||||
ConditionalOR=73
|
||||
Increment=74
|
||||
Decrement=75
|
||||
LeftShift=76
|
||||
SignedRightShift=77
|
||||
UnsignedRightShift=78
|
||||
AddAssign=79
|
||||
SubtractAssign=80
|
||||
MultiplyAssign=81
|
||||
DivideAssign=82
|
||||
BitwiseANDAssign=83
|
||||
BitwiseORAssign=84
|
||||
BitwiseXORAssign=85
|
||||
RemainderAssign=86
|
||||
LeftShiftAssign=87
|
||||
SignedRightShiftAssign=88
|
||||
Assignment=89
|
||||
BitwiseComplement=90
|
||||
LessThan=91
|
||||
GreaterThan=92
|
||||
LogicalComplement=93
|
||||
Question=94
|
||||
Colon=95
|
||||
Addition=96
|
||||
Subtraction=97
|
||||
Multiplication=98
|
||||
Division=99
|
||||
BitwiseAND=100
|
||||
BitwiseOR=101
|
||||
BitwiseXOR=102
|
||||
Remainder=103
|
||||
IDENTIFIER=104
|
||||
'abstract'=3
|
||||
'assert'=4
|
||||
'boolean'=5
|
||||
'break'=6
|
||||
'byte'=7
|
||||
'case'=8
|
||||
'catch'=9
|
||||
'char'=10
|
||||
'class'=11
|
||||
'const'=12
|
||||
'continue'=13
|
||||
'default'=14
|
||||
'do'=15
|
||||
'double'=16
|
||||
'else'=17
|
||||
'extends'=18
|
||||
'final'=19
|
||||
'finally'=20
|
||||
'float'=21
|
||||
'for'=22
|
||||
'goto'=23
|
||||
'if'=24
|
||||
'implements'=25
|
||||
'import'=26
|
||||
'instanceof'=27
|
||||
'int'=28
|
||||
'interface'=29
|
||||
'long'=30
|
||||
'native'=31
|
||||
'new'=32
|
||||
'package'=33
|
||||
'private'=34
|
||||
'protected'=35
|
||||
'public'=36
|
||||
'return'=37
|
||||
'short'=38
|
||||
'static'=39
|
||||
'strictfp'=40
|
||||
'super'=41
|
||||
'switch'=42
|
||||
'synchronized'=43
|
||||
'this'=44
|
||||
'throw'=45
|
||||
'throws'=46
|
||||
'transient'=47
|
||||
'try'=48
|
||||
'void'=49
|
||||
'volatile'=50
|
||||
'while'=51
|
||||
'.'=52
|
||||
'null'=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
|
||||
'<<='=87
|
||||
'>>='=88
|
||||
'='=89
|
||||
'~'=90
|
||||
'<'=91
|
||||
'>'=92
|
||||
'!'=93
|
||||
'?'=94
|
||||
':'=95
|
||||
'+'=96
|
||||
'-'=97
|
||||
'*'=98
|
||||
'/'=99
|
||||
'&'=100
|
||||
'|'=101
|
||||
'^'=102
|
||||
'%'=103
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
@@ -1,200 +0,0 @@
|
||||
WhiteSpace=1
|
||||
Comment=2
|
||||
Abstract=3
|
||||
Assert=4
|
||||
Boolean=5
|
||||
Break=6
|
||||
Byte=7
|
||||
Case=8
|
||||
Catch=9
|
||||
Char=10
|
||||
Class=11
|
||||
Const=12
|
||||
Continue=13
|
||||
Default=14
|
||||
Do=15
|
||||
Double=16
|
||||
Else=17
|
||||
Extends=18
|
||||
Final=19
|
||||
Finally=20
|
||||
Float=21
|
||||
For=22
|
||||
Goto=23
|
||||
If=24
|
||||
Implements=25
|
||||
Import=26
|
||||
InstanceOf=27
|
||||
Int=28
|
||||
Interface=29
|
||||
Long=30
|
||||
Native=31
|
||||
New=32
|
||||
Package=33
|
||||
Private=34
|
||||
Protected=35
|
||||
Public=36
|
||||
Return=37
|
||||
Short=38
|
||||
Static=39
|
||||
Strictfp=40
|
||||
Super=41
|
||||
Switch=42
|
||||
Synchronized=43
|
||||
This=44
|
||||
Throw=45
|
||||
Throws=46
|
||||
Transient=47
|
||||
Try=48
|
||||
Void=49
|
||||
Volatile=50
|
||||
While=51
|
||||
Dot=52
|
||||
IntegerLiteral=53
|
||||
FloatingPointLiteral=54
|
||||
CharacterLiteral=55
|
||||
StringLiteral=56
|
||||
BooleanLiteral=57
|
||||
NullLiteral=58
|
||||
ParenthesesLeft=59
|
||||
ParenthesesRight=60
|
||||
CurlyBracketLeft=61
|
||||
CurlyBracketRight=62
|
||||
SquareBracketLeft=63
|
||||
SquareBracketRight=64
|
||||
Semicolon=65
|
||||
Comma=66
|
||||
UnsignedRightShiftAssign=67
|
||||
EqualTo=68
|
||||
NotEqualTo=69
|
||||
LessThanEqualTo=70
|
||||
GreaterThanEqualTo=71
|
||||
ConditionalAND=72
|
||||
ConditionalOR=73
|
||||
Increment=74
|
||||
Decrement=75
|
||||
LeftShift=76
|
||||
SignedRightShift=77
|
||||
UnsignedRightShift=78
|
||||
AddAssign=79
|
||||
SubtractAssign=80
|
||||
MultiplyAssign=81
|
||||
DivideAssign=82
|
||||
BitwiseANDAssign=83
|
||||
BitwiseORAssign=84
|
||||
BitwiseXORAssign=85
|
||||
RemainderAssign=86
|
||||
LeftShiftAssign=87
|
||||
SignedRightShiftAssign=88
|
||||
Assignment=89
|
||||
BitwiseComplement=90
|
||||
LessThan=91
|
||||
GreaterThan=92
|
||||
LogicalComplement=93
|
||||
Question=94
|
||||
Colon=95
|
||||
Addition=96
|
||||
Subtraction=97
|
||||
Multiplication=98
|
||||
Division=99
|
||||
BitwiseAND=100
|
||||
BitwiseOR=101
|
||||
BitwiseXOR=102
|
||||
Remainder=103
|
||||
IDENTIFIER=104
|
||||
'abstract'=3
|
||||
'assert'=4
|
||||
'boolean'=5
|
||||
'break'=6
|
||||
'byte'=7
|
||||
'case'=8
|
||||
'catch'=9
|
||||
'char'=10
|
||||
'class'=11
|
||||
'const'=12
|
||||
'continue'=13
|
||||
'default'=14
|
||||
'do'=15
|
||||
'double'=16
|
||||
'else'=17
|
||||
'extends'=18
|
||||
'final'=19
|
||||
'finally'=20
|
||||
'float'=21
|
||||
'for'=22
|
||||
'goto'=23
|
||||
'if'=24
|
||||
'implements'=25
|
||||
'import'=26
|
||||
'instanceof'=27
|
||||
'int'=28
|
||||
'interface'=29
|
||||
'long'=30
|
||||
'native'=31
|
||||
'new'=32
|
||||
'package'=33
|
||||
'private'=34
|
||||
'protected'=35
|
||||
'public'=36
|
||||
'return'=37
|
||||
'short'=38
|
||||
'static'=39
|
||||
'strictfp'=40
|
||||
'super'=41
|
||||
'switch'=42
|
||||
'synchronized'=43
|
||||
'this'=44
|
||||
'throw'=45
|
||||
'throws'=46
|
||||
'transient'=47
|
||||
'try'=48
|
||||
'void'=49
|
||||
'volatile'=50
|
||||
'while'=51
|
||||
'.'=52
|
||||
'null'=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
|
||||
'<<='=87
|
||||
'>>='=88
|
||||
'='=89
|
||||
'~'=90
|
||||
'<'=91
|
||||
'>'=92
|
||||
'!'=93
|
||||
'?'=94
|
||||
':'=95
|
||||
'+'=96
|
||||
'-'=97
|
||||
'*'=98
|
||||
'/'=99
|
||||
'&'=100
|
||||
'|'=101
|
||||
'^'=102
|
||||
'%'=103
|
||||
16
.gitignore
vendored
16
.gitignore
vendored
@@ -1,14 +1,2 @@
|
||||
### Gradle ###
|
||||
.gradle/
|
||||
**/build/
|
||||
!gradle/wrapper/gradle-wrapper.jar
|
||||
!gradle/wrapper/gradle-wrapper.properties
|
||||
|
||||
### IntelliJ ###
|
||||
.idea/
|
||||
*.iml
|
||||
out/
|
||||
|
||||
### OS ###
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
/bin
|
||||
.vscode/
|
||||
Binary file not shown.
@@ -1,219 +0,0 @@
|
||||
lexer grammar ExprLexer;
|
||||
|
||||
fragment LineTerminator: '\r' '\n'? | '\n';
|
||||
|
||||
WhiteSpace: (' ' | '\t' | '\f' | LineTerminator) -> skip;
|
||||
|
||||
fragment EndOfLineComment: '//' ~('\r' | '\n')* LineTerminator?;
|
||||
|
||||
Comment: (TraditionalComment | EndOfLineComment) -> skip;
|
||||
|
||||
fragment TraditionalComment:
|
||||
'/*' NotStar CommentTail;
|
||||
|
||||
fragment CommentTail: '*' CommentTailStar | NotStar ;
|
||||
|
||||
fragment CommentTailStar:
|
||||
'/' | '*' CommentTailStar | NotStarNotSlash CommentTail;
|
||||
|
||||
fragment NotStar:
|
||||
[^*] | LineTerminator;
|
||||
|
||||
fragment NotStarNotSlash:
|
||||
[^*/] | LineTerminator;
|
||||
|
||||
Abstract: 'abstract';
|
||||
Assert: 'assert';
|
||||
Boolean: 'boolean';
|
||||
Break: 'break';
|
||||
Byte: 'byte';
|
||||
Case: 'case';
|
||||
Catch: 'catch';
|
||||
Char: 'char';
|
||||
Class: 'class';
|
||||
Const: 'const';
|
||||
Continue: 'continue';
|
||||
Default: 'default';
|
||||
Do: 'do';
|
||||
Double: 'double';
|
||||
Else: 'else';
|
||||
Extends: 'extends';
|
||||
Final: 'final';
|
||||
Finally: 'finally';
|
||||
Float: 'float';
|
||||
For: 'for';
|
||||
Goto: 'goto';
|
||||
If: 'if';
|
||||
Implements: 'implements';
|
||||
Import: 'import';
|
||||
InstanceOf: 'instanceof';
|
||||
Int: 'int';
|
||||
Interface: 'interface';
|
||||
Long: 'long';
|
||||
Native: 'native';
|
||||
New: 'new';
|
||||
Package: 'package';
|
||||
Private: 'private';
|
||||
Protected: 'protected';
|
||||
Public: 'public';
|
||||
Return: 'return';
|
||||
Short: 'short';
|
||||
Static: 'static';
|
||||
Strictfp: 'strictfp';
|
||||
Super: 'super';
|
||||
Switch: 'switch';
|
||||
Synchronized: 'synchronized';
|
||||
This: 'this';
|
||||
Throw: 'throw';
|
||||
Throws: 'throws';
|
||||
Transient: 'transient';
|
||||
Try: 'try';
|
||||
Void: 'void';
|
||||
Volatile: 'volatile';
|
||||
While: 'while';
|
||||
|
||||
Dot: '.';
|
||||
|
||||
IntegerLiteral: DecimalIntegerLiteral | HexIntegerLiteral | OctalIntegerLiteral;
|
||||
|
||||
fragment DecimalIntegerLiteral:
|
||||
DecimalNumeral IntegerTypeSuffix?;
|
||||
|
||||
fragment HexIntegerLiteral:
|
||||
HexNumeral IntegerTypeSuffix?;
|
||||
|
||||
fragment OctalIntegerLiteral:
|
||||
OctalNumeral IntegerTypeSuffix?;
|
||||
|
||||
fragment IntegerTypeSuffix:
|
||||
[lL];
|
||||
|
||||
fragment DecimalNumeral:
|
||||
'0' | NonZeroDigit Digits?;
|
||||
|
||||
fragment HexNumeral:
|
||||
'0' 'x' HexDigits | '0' 'X' HexDigits;
|
||||
|
||||
fragment HexDigits:
|
||||
HexDigit | HexDigit HexDigits;
|
||||
|
||||
fragment HexDigit:
|
||||
[0-9a-fA-F];
|
||||
|
||||
FloatingPointLiteral: Digits '.' Digits? ExponentPart? FloatTypeSuffix?
|
||||
| '.' Digits ExponentPart? FloatTypeSuffix?
|
||||
| Digits ExponentPart FloatTypeSuffix?
|
||||
| Digits ExponentPart? FloatTypeSuffix;
|
||||
|
||||
fragment ExponentPart:
|
||||
ExponentIndicator SignedInteger;
|
||||
|
||||
fragment ExponentIndicator:
|
||||
[eE];
|
||||
|
||||
fragment SignedInteger:
|
||||
Sign? Digits;
|
||||
|
||||
fragment Digits:
|
||||
Digit+;
|
||||
|
||||
fragment Digit:
|
||||
'0' | NonZeroDigit;
|
||||
|
||||
fragment NonZeroDigit:
|
||||
[1-9];
|
||||
|
||||
fragment Sign:
|
||||
[+-];
|
||||
|
||||
fragment FloatTypeSuffix:
|
||||
[fFdD];
|
||||
|
||||
CharacterLiteral: '\'' SingleCharacter '\'' | '\'' EscapeSequence '\'';
|
||||
|
||||
fragment SingleCharacter:
|
||||
[^'\\];
|
||||
|
||||
StringLiteral: '"' StringCharacters? '"';
|
||||
|
||||
fragment StringCharacters:
|
||||
StringCharacter+;
|
||||
|
||||
fragment StringCharacter:
|
||||
SingleCharacter | EscapeSequence;
|
||||
|
||||
fragment EscapeSequence:
|
||||
'\\' ('u0008' | 'u0009' | 'u000a' | 'u000c' | 'u000d' | 'u0022' | 'u0027' | 'u005c' | OctalEscape);
|
||||
|
||||
fragment OctalEscape:
|
||||
'\\' OctalDigit | '\\' OctalDigit OctalDigit | '\\' ZeroToThree OctalDigit OctalDigit;
|
||||
|
||||
fragment OctalNumeral:
|
||||
'0' OctalDigits;
|
||||
|
||||
fragment OctalDigits:
|
||||
OctalDigit;
|
||||
|
||||
fragment OctalDigit:
|
||||
[0-7];
|
||||
|
||||
fragment ZeroToThree:
|
||||
[0-3];
|
||||
|
||||
BooleanLiteral: 'true' | 'false' ;
|
||||
|
||||
NullLiteral: 'null';
|
||||
|
||||
ParenthesesLeft: '(';
|
||||
ParenthesesRight: ')';
|
||||
CurlyBracketLeft: '{';
|
||||
CurlyBracketRight: '}';
|
||||
SquareBracketLeft: '[';
|
||||
SquareBracketRight: ']';
|
||||
Semicolon: ';';
|
||||
Comma: ',';
|
||||
|
||||
UnsignedRightShiftAssign: '>>>=';
|
||||
EqualTo: '==';
|
||||
NotEqualTo: '!=';
|
||||
LessThanEqualTo: '<=';
|
||||
GreaterThanEqualTo: '>=';
|
||||
ConditionalAND: '&&';
|
||||
ConditionalOR: '||';
|
||||
Increment: '++';
|
||||
Decrement: '--';
|
||||
LeftShift: '<<';
|
||||
SignedRightShift: '>>';
|
||||
UnsignedRightShift: '>>>';
|
||||
AddAssign: '+=';
|
||||
SubtractAssign: '-=';
|
||||
MultiplyAssign: '*=';
|
||||
DivideAssign: '/=';
|
||||
BitwiseANDAssign: '&=';
|
||||
BitwiseORAssign: '|=';
|
||||
BitwiseXORAssign: '^=';
|
||||
RemainderAssign: '%=';
|
||||
LeftShiftAssign: '<<=';
|
||||
SignedRightShiftAssign: '>>=';
|
||||
Assignment: '=';
|
||||
BitwiseComplement: '~';
|
||||
LessThan: '<';
|
||||
GreaterThan: '>';
|
||||
LogicalComplement: '!';
|
||||
Question: '?';
|
||||
Colon: ':';
|
||||
Addition: '+';
|
||||
Subtraction: '-';
|
||||
Multiplication: '*';
|
||||
Division: '/';
|
||||
BitwiseAND: '&';
|
||||
BitwiseOR: '|';
|
||||
BitwiseXOR: '^';
|
||||
Remainder: '%';
|
||||
|
||||
IDENTIFIER: JavaLetter JavaLetterOrDigit*;
|
||||
fragment JavaLetter:
|
||||
[a-zA-Z$_];
|
||||
|
||||
fragment JavaLetterOrDigit:
|
||||
[A-Za-z0-9$_];
|
||||
File diff suppressed because one or more lines are too long
@@ -1,795 +0,0 @@
|
||||
// Generated from ExprLexer.g4 by ANTLR 4.13.2
|
||||
import org.antlr.v4.runtime.Lexer;
|
||||
import org.antlr.v4.runtime.CharStream;
|
||||
import org.antlr.v4.runtime.Token;
|
||||
import org.antlr.v4.runtime.TokenStream;
|
||||
import org.antlr.v4.runtime.*;
|
||||
import org.antlr.v4.runtime.atn.*;
|
||||
import org.antlr.v4.runtime.dfa.DFA;
|
||||
import org.antlr.v4.runtime.misc.*;
|
||||
|
||||
@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast", "CheckReturnValue", "this-escape"})
|
||||
public class ExprLexer extends Lexer {
|
||||
static { RuntimeMetaData.checkVersion("4.13.2", RuntimeMetaData.VERSION); }
|
||||
|
||||
protected static final DFA[] _decisionToDFA;
|
||||
protected static final PredictionContextCache _sharedContextCache =
|
||||
new PredictionContextCache();
|
||||
public static final int
|
||||
WhiteSpace=1, Comment=2, Abstract=3, Assert=4, Boolean=5, Break=6, Byte=7,
|
||||
Case=8, Catch=9, Char=10, Class=11, Const=12, Continue=13, Default=14,
|
||||
Do=15, Double=16, Else=17, Extends=18, Final=19, Finally=20, Float=21,
|
||||
For=22, Goto=23, If=24, Implements=25, Import=26, InstanceOf=27, Int=28,
|
||||
Interface=29, Long=30, Native=31, New=32, Package=33, Private=34, Protected=35,
|
||||
Public=36, Return=37, Short=38, Static=39, Strictfp=40, Super=41, Switch=42,
|
||||
Synchronized=43, This=44, Throw=45, Throws=46, Transient=47, Try=48, Void=49,
|
||||
Volatile=50, While=51, Dot=52, IntegerLiteral=53, FloatingPointLiteral=54,
|
||||
CharacterLiteral=55, StringLiteral=56, BooleanLiteral=57, NullLiteral=58,
|
||||
ParenthesesLeft=59, ParenthesesRight=60, CurlyBracketLeft=61, CurlyBracketRight=62,
|
||||
SquareBracketLeft=63, SquareBracketRight=64, Semicolon=65, Comma=66, UnsignedRightShiftAssign=67,
|
||||
EqualTo=68, NotEqualTo=69, LessThanEqualTo=70, GreaterThanEqualTo=71,
|
||||
ConditionalAND=72, ConditionalOR=73, Increment=74, Decrement=75, LeftShift=76,
|
||||
SignedRightShift=77, UnsignedRightShift=78, AddAssign=79, SubtractAssign=80,
|
||||
MultiplyAssign=81, DivideAssign=82, BitwiseANDAssign=83, BitwiseORAssign=84,
|
||||
BitwiseXORAssign=85, RemainderAssign=86, LeftShiftAssign=87, SignedRightShiftAssign=88,
|
||||
Assignment=89, BitwiseComplement=90, LessThan=91, GreaterThan=92, LogicalComplement=93,
|
||||
Question=94, Colon=95, Addition=96, Subtraction=97, Multiplication=98,
|
||||
Division=99, BitwiseAND=100, BitwiseOR=101, BitwiseXOR=102, Remainder=103,
|
||||
IDENTIFIER=104;
|
||||
public static String[] channelNames = {
|
||||
"DEFAULT_TOKEN_CHANNEL", "HIDDEN"
|
||||
};
|
||||
|
||||
public static String[] modeNames = {
|
||||
"DEFAULT_MODE"
|
||||
};
|
||||
|
||||
private static String[] makeRuleNames() {
|
||||
return new String[] {
|
||||
"LineTerminator", "WhiteSpace", "EndOfLineComment", "Comment", "TraditionalComment",
|
||||
"CommentTail", "CommentTailStar", "NotStar", "NotStarNotSlash", "Abstract",
|
||||
"Assert", "Boolean", "Break", "Byte", "Case", "Catch", "Char", "Class",
|
||||
"Const", "Continue", "Default", "Do", "Double", "Else", "Extends", "Final",
|
||||
"Finally", "Float", "For", "Goto", "If", "Implements", "Import", "InstanceOf",
|
||||
"Int", "Interface", "Long", "Native", "New", "Package", "Private", "Protected",
|
||||
"Public", "Return", "Short", "Static", "Strictfp", "Super", "Switch",
|
||||
"Synchronized", "This", "Throw", "Throws", "Transient", "Try", "Void",
|
||||
"Volatile", "While", "Dot", "IntegerLiteral", "DecimalIntegerLiteral",
|
||||
"HexIntegerLiteral", "OctalIntegerLiteral", "IntegerTypeSuffix", "DecimalNumeral",
|
||||
"HexNumeral", "HexDigits", "HexDigit", "FloatingPointLiteral", "ExponentPart",
|
||||
"ExponentIndicator", "SignedInteger", "Digits", "Digit", "NonZeroDigit",
|
||||
"Sign", "FloatTypeSuffix", "CharacterLiteral", "SingleCharacter", "StringLiteral",
|
||||
"StringCharacters", "StringCharacter", "EscapeSequence", "OctalEscape",
|
||||
"OctalNumeral", "OctalDigits", "OctalDigit", "ZeroToThree", "BooleanLiteral",
|
||||
"NullLiteral", "ParenthesesLeft", "ParenthesesRight", "CurlyBracketLeft",
|
||||
"CurlyBracketRight", "SquareBracketLeft", "SquareBracketRight", "Semicolon",
|
||||
"Comma", "UnsignedRightShiftAssign", "EqualTo", "NotEqualTo", "LessThanEqualTo",
|
||||
"GreaterThanEqualTo", "ConditionalAND", "ConditionalOR", "Increment",
|
||||
"Decrement", "LeftShift", "SignedRightShift", "UnsignedRightShift", "AddAssign",
|
||||
"SubtractAssign", "MultiplyAssign", "DivideAssign", "BitwiseANDAssign",
|
||||
"BitwiseORAssign", "BitwiseXORAssign", "RemainderAssign", "LeftShiftAssign",
|
||||
"SignedRightShiftAssign", "Assignment", "BitwiseComplement", "LessThan",
|
||||
"GreaterThan", "LogicalComplement", "Question", "Colon", "Addition",
|
||||
"Subtraction", "Multiplication", "Division", "BitwiseAND", "BitwiseOR",
|
||||
"BitwiseXOR", "Remainder", "IDENTIFIER", "JavaLetter", "JavaLetterOrDigit"
|
||||
};
|
||||
}
|
||||
public static final String[] ruleNames = makeRuleNames();
|
||||
|
||||
private static String[] makeLiteralNames() {
|
||||
return new String[] {
|
||||
null, null, null, "'abstract'", "'assert'", "'boolean'", "'break'", "'byte'",
|
||||
"'case'", "'catch'", "'char'", "'class'", "'const'", "'continue'", "'default'",
|
||||
"'do'", "'double'", "'else'", "'extends'", "'final'", "'finally'", "'float'",
|
||||
"'for'", "'goto'", "'if'", "'implements'", "'import'", "'instanceof'",
|
||||
"'int'", "'interface'", "'long'", "'native'", "'new'", "'package'", "'private'",
|
||||
"'protected'", "'public'", "'return'", "'short'", "'static'", "'strictfp'",
|
||||
"'super'", "'switch'", "'synchronized'", "'this'", "'throw'", "'throws'",
|
||||
"'transient'", "'try'", "'void'", "'volatile'", "'while'", "'.'", null,
|
||||
null, null, null, null, "'null'", "'('", "')'", "'{'", "'}'", "'['",
|
||||
"']'", "';'", "','", "'>>>='", "'=='", "'!='", "'<='", "'>='", "'&&'",
|
||||
"'||'", "'++'", "'--'", "'<<'", "'>>'", "'>>>'", "'+='", "'-='", "'*='",
|
||||
"'/='", "'&='", "'|='", "'^='", "'%='", "'<<='", "'>>='", "'='", "'~'",
|
||||
"'<'", "'>'", "'!'", "'?'", "':'", "'+'", "'-'", "'*'", "'/'", "'&'",
|
||||
"'|'", "'^'", "'%'"
|
||||
};
|
||||
}
|
||||
private static final String[] _LITERAL_NAMES = makeLiteralNames();
|
||||
private static String[] makeSymbolicNames() {
|
||||
return new String[] {
|
||||
null, "WhiteSpace", "Comment", "Abstract", "Assert", "Boolean", "Break",
|
||||
"Byte", "Case", "Catch", "Char", "Class", "Const", "Continue", "Default",
|
||||
"Do", "Double", "Else", "Extends", "Final", "Finally", "Float", "For",
|
||||
"Goto", "If", "Implements", "Import", "InstanceOf", "Int", "Interface",
|
||||
"Long", "Native", "New", "Package", "Private", "Protected", "Public",
|
||||
"Return", "Short", "Static", "Strictfp", "Super", "Switch", "Synchronized",
|
||||
"This", "Throw", "Throws", "Transient", "Try", "Void", "Volatile", "While",
|
||||
"Dot", "IntegerLiteral", "FloatingPointLiteral", "CharacterLiteral",
|
||||
"StringLiteral", "BooleanLiteral", "NullLiteral", "ParenthesesLeft",
|
||||
"ParenthesesRight", "CurlyBracketLeft", "CurlyBracketRight", "SquareBracketLeft",
|
||||
"SquareBracketRight", "Semicolon", "Comma", "UnsignedRightShiftAssign",
|
||||
"EqualTo", "NotEqualTo", "LessThanEqualTo", "GreaterThanEqualTo", "ConditionalAND",
|
||||
"ConditionalOR", "Increment", "Decrement", "LeftShift", "SignedRightShift",
|
||||
"UnsignedRightShift", "AddAssign", "SubtractAssign", "MultiplyAssign",
|
||||
"DivideAssign", "BitwiseANDAssign", "BitwiseORAssign", "BitwiseXORAssign",
|
||||
"RemainderAssign", "LeftShiftAssign", "SignedRightShiftAssign", "Assignment",
|
||||
"BitwiseComplement", "LessThan", "GreaterThan", "LogicalComplement",
|
||||
"Question", "Colon", "Addition", "Subtraction", "Multiplication", "Division",
|
||||
"BitwiseAND", "BitwiseOR", "BitwiseXOR", "Remainder", "IDENTIFIER"
|
||||
};
|
||||
}
|
||||
private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames();
|
||||
public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES);
|
||||
|
||||
/**
|
||||
* @deprecated Use {@link #VOCABULARY} instead.
|
||||
*/
|
||||
@Deprecated
|
||||
public static final String[] tokenNames;
|
||||
static {
|
||||
tokenNames = new String[_SYMBOLIC_NAMES.length];
|
||||
for (int i = 0; i < tokenNames.length; i++) {
|
||||
tokenNames[i] = VOCABULARY.getLiteralName(i);
|
||||
if (tokenNames[i] == null) {
|
||||
tokenNames[i] = VOCABULARY.getSymbolicName(i);
|
||||
}
|
||||
|
||||
if (tokenNames[i] == null) {
|
||||
tokenNames[i] = "<INVALID>";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
@Deprecated
|
||||
public String[] getTokenNames() {
|
||||
return tokenNames;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
public Vocabulary getVocabulary() {
|
||||
return VOCABULARY;
|
||||
}
|
||||
|
||||
|
||||
public ExprLexer(CharStream input) {
|
||||
super(input);
|
||||
_interp = new LexerATNSimulator(this,_ATN,_decisionToDFA,_sharedContextCache);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getGrammarFileName() { return "ExprLexer.g4"; }
|
||||
|
||||
@Override
|
||||
public String[] getRuleNames() { return ruleNames; }
|
||||
|
||||
@Override
|
||||
public String getSerializedATN() { return _serializedATN; }
|
||||
|
||||
@Override
|
||||
public String[] getChannelNames() { return channelNames; }
|
||||
|
||||
@Override
|
||||
public String[] getModeNames() { return modeNames; }
|
||||
|
||||
@Override
|
||||
public ATN getATN() { return _ATN; }
|
||||
|
||||
public static final String _serializedATN =
|
||||
"\u0004\u0000h\u03ef\u0006\uffff\uffff\u0002\u0000\u0007\u0000\u0002\u0001"+
|
||||
"\u0007\u0001\u0002\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002\u0004"+
|
||||
"\u0007\u0004\u0002\u0005\u0007\u0005\u0002\u0006\u0007\u0006\u0002\u0007"+
|
||||
"\u0007\u0007\u0002\b\u0007\b\u0002\t\u0007\t\u0002\n\u0007\n\u0002\u000b"+
|
||||
"\u0007\u000b\u0002\f\u0007\f\u0002\r\u0007\r\u0002\u000e\u0007\u000e\u0002"+
|
||||
"\u000f\u0007\u000f\u0002\u0010\u0007\u0010\u0002\u0011\u0007\u0011\u0002"+
|
||||
"\u0012\u0007\u0012\u0002\u0013\u0007\u0013\u0002\u0014\u0007\u0014\u0002"+
|
||||
"\u0015\u0007\u0015\u0002\u0016\u0007\u0016\u0002\u0017\u0007\u0017\u0002"+
|
||||
"\u0018\u0007\u0018\u0002\u0019\u0007\u0019\u0002\u001a\u0007\u001a\u0002"+
|
||||
"\u001b\u0007\u001b\u0002\u001c\u0007\u001c\u0002\u001d\u0007\u001d\u0002"+
|
||||
"\u001e\u0007\u001e\u0002\u001f\u0007\u001f\u0002 \u0007 \u0002!\u0007"+
|
||||
"!\u0002\"\u0007\"\u0002#\u0007#\u0002$\u0007$\u0002%\u0007%\u0002&\u0007"+
|
||||
"&\u0002\'\u0007\'\u0002(\u0007(\u0002)\u0007)\u0002*\u0007*\u0002+\u0007"+
|
||||
"+\u0002,\u0007,\u0002-\u0007-\u0002.\u0007.\u0002/\u0007/\u00020\u0007"+
|
||||
"0\u00021\u00071\u00022\u00072\u00023\u00073\u00024\u00074\u00025\u0007"+
|
||||
"5\u00026\u00076\u00027\u00077\u00028\u00078\u00029\u00079\u0002:\u0007"+
|
||||
":\u0002;\u0007;\u0002<\u0007<\u0002=\u0007=\u0002>\u0007>\u0002?\u0007"+
|
||||
"?\u0002@\u0007@\u0002A\u0007A\u0002B\u0007B\u0002C\u0007C\u0002D\u0007"+
|
||||
"D\u0002E\u0007E\u0002F\u0007F\u0002G\u0007G\u0002H\u0007H\u0002I\u0007"+
|
||||
"I\u0002J\u0007J\u0002K\u0007K\u0002L\u0007L\u0002M\u0007M\u0002N\u0007"+
|
||||
"N\u0002O\u0007O\u0002P\u0007P\u0002Q\u0007Q\u0002R\u0007R\u0002S\u0007"+
|
||||
"S\u0002T\u0007T\u0002U\u0007U\u0002V\u0007V\u0002W\u0007W\u0002X\u0007"+
|
||||
"X\u0002Y\u0007Y\u0002Z\u0007Z\u0002[\u0007[\u0002\\\u0007\\\u0002]\u0007"+
|
||||
"]\u0002^\u0007^\u0002_\u0007_\u0002`\u0007`\u0002a\u0007a\u0002b\u0007"+
|
||||
"b\u0002c\u0007c\u0002d\u0007d\u0002e\u0007e\u0002f\u0007f\u0002g\u0007"+
|
||||
"g\u0002h\u0007h\u0002i\u0007i\u0002j\u0007j\u0002k\u0007k\u0002l\u0007"+
|
||||
"l\u0002m\u0007m\u0002n\u0007n\u0002o\u0007o\u0002p\u0007p\u0002q\u0007"+
|
||||
"q\u0002r\u0007r\u0002s\u0007s\u0002t\u0007t\u0002u\u0007u\u0002v\u0007"+
|
||||
"v\u0002w\u0007w\u0002x\u0007x\u0002y\u0007y\u0002z\u0007z\u0002{\u0007"+
|
||||
"{\u0002|\u0007|\u0002}\u0007}\u0002~\u0007~\u0002\u007f\u0007\u007f\u0002"+
|
||||
"\u0080\u0007\u0080\u0002\u0081\u0007\u0081\u0002\u0082\u0007\u0082\u0002"+
|
||||
"\u0083\u0007\u0083\u0002\u0084\u0007\u0084\u0002\u0085\u0007\u0085\u0002"+
|
||||
"\u0086\u0007\u0086\u0002\u0087\u0007\u0087\u0002\u0088\u0007\u0088\u0002"+
|
||||
"\u0089\u0007\u0089\u0001\u0000\u0001\u0000\u0003\u0000\u0118\b\u0000\u0001"+
|
||||
"\u0000\u0003\u0000\u011b\b\u0000\u0001\u0001\u0001\u0001\u0003\u0001\u011f"+
|
||||
"\b\u0001\u0001\u0001\u0001\u0001\u0001\u0002\u0001\u0002\u0001\u0002\u0001"+
|
||||
"\u0002\u0005\u0002\u0127\b\u0002\n\u0002\f\u0002\u012a\t\u0002\u0001\u0002"+
|
||||
"\u0003\u0002\u012d\b\u0002\u0001\u0003\u0001\u0003\u0003\u0003\u0131\b"+
|
||||
"\u0003\u0001\u0003\u0001\u0003\u0001\u0004\u0001\u0004\u0001\u0004\u0001"+
|
||||
"\u0004\u0001\u0004\u0001\u0004\u0001\u0005\u0001\u0005\u0001\u0005\u0003"+
|
||||
"\u0005\u013e\b\u0005\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001"+
|
||||
"\u0006\u0001\u0006\u0003\u0006\u0146\b\u0006\u0001\u0007\u0001\u0007\u0003"+
|
||||
"\u0007\u014a\b\u0007\u0001\b\u0001\b\u0003\b\u014e\b\b\u0001\t\u0001\t"+
|
||||
"\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\n\u0001"+
|
||||
"\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\u000b\u0001\u000b\u0001"+
|
||||
"\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001"+
|
||||
"\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\r\u0001\r\u0001\r\u0001"+
|
||||
"\r\u0001\r\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e"+
|
||||
"\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f"+
|
||||
"\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0011"+
|
||||
"\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0012"+
|
||||
"\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0013"+
|
||||
"\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013"+
|
||||
"\u0001\u0013\u0001\u0013\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014"+
|
||||
"\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0015\u0001\u0015"+
|
||||
"\u0001\u0015\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016"+
|
||||
"\u0001\u0016\u0001\u0016\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017"+
|
||||
"\u0001\u0017\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018"+
|
||||
"\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0019\u0001\u0019\u0001\u0019"+
|
||||
"\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u001a\u0001\u001a\u0001\u001a"+
|
||||
"\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001b"+
|
||||
"\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001c"+
|
||||
"\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001d\u0001\u001d\u0001\u001d"+
|
||||
"\u0001\u001d\u0001\u001d\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001f"+
|
||||
"\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f"+
|
||||
"\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001 \u0001 \u0001 "+
|
||||
"\u0001 \u0001 \u0001 \u0001 \u0001!\u0001!\u0001!\u0001!\u0001!\u0001"+
|
||||
"!\u0001!\u0001!\u0001!\u0001!\u0001!\u0001\"\u0001\"\u0001\"\u0001\"\u0001"+
|
||||
"#\u0001#\u0001#\u0001#\u0001#\u0001#\u0001#\u0001#\u0001#\u0001#\u0001"+
|
||||
"$\u0001$\u0001$\u0001$\u0001$\u0001%\u0001%\u0001%\u0001%\u0001%\u0001"+
|
||||
"%\u0001%\u0001&\u0001&\u0001&\u0001&\u0001\'\u0001\'\u0001\'\u0001\'\u0001"+
|
||||
"\'\u0001\'\u0001\'\u0001\'\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001"+
|
||||
"(\u0001(\u0001)\u0001)\u0001)\u0001)\u0001)\u0001)\u0001)\u0001)\u0001"+
|
||||
")\u0001)\u0001*\u0001*\u0001*\u0001*\u0001*\u0001*\u0001*\u0001+\u0001"+
|
||||
"+\u0001+\u0001+\u0001+\u0001+\u0001+\u0001,\u0001,\u0001,\u0001,\u0001"+
|
||||
",\u0001,\u0001-\u0001-\u0001-\u0001-\u0001-\u0001-\u0001-\u0001.\u0001"+
|
||||
".\u0001.\u0001.\u0001.\u0001.\u0001.\u0001.\u0001.\u0001/\u0001/\u0001"+
|
||||
"/\u0001/\u0001/\u0001/\u00010\u00010\u00010\u00010\u00010\u00010\u0001"+
|
||||
"0\u00011\u00011\u00011\u00011\u00011\u00011\u00011\u00011\u00011\u0001"+
|
||||
"1\u00011\u00011\u00011\u00012\u00012\u00012\u00012\u00012\u00013\u0001"+
|
||||
"3\u00013\u00013\u00013\u00013\u00014\u00014\u00014\u00014\u00014\u0001"+
|
||||
"4\u00014\u00015\u00015\u00015\u00015\u00015\u00015\u00015\u00015\u0001"+
|
||||
"5\u00015\u00016\u00016\u00016\u00016\u00017\u00017\u00017\u00017\u0001"+
|
||||
"7\u00018\u00018\u00018\u00018\u00018\u00018\u00018\u00018\u00018\u0001"+
|
||||
"9\u00019\u00019\u00019\u00019\u00019\u0001:\u0001:\u0001;\u0001;\u0001"+
|
||||
";\u0003;\u02a3\b;\u0001<\u0001<\u0003<\u02a7\b<\u0001=\u0001=\u0003=\u02ab"+
|
||||
"\b=\u0001>\u0001>\u0003>\u02af\b>\u0001?\u0001?\u0001@\u0001@\u0001@\u0003"+
|
||||
"@\u02b6\b@\u0003@\u02b8\b@\u0001A\u0001A\u0001A\u0001A\u0001A\u0001A\u0003"+
|
||||
"A\u02c0\bA\u0001B\u0001B\u0001B\u0001B\u0003B\u02c6\bB\u0001C\u0001C\u0001"+
|
||||
"D\u0001D\u0001D\u0003D\u02cd\bD\u0001D\u0003D\u02d0\bD\u0001D\u0003D\u02d3"+
|
||||
"\bD\u0001D\u0001D\u0001D\u0003D\u02d8\bD\u0001D\u0003D\u02db\bD\u0001"+
|
||||
"D\u0001D\u0001D\u0003D\u02e0\bD\u0001D\u0001D\u0003D\u02e4\bD\u0001D\u0001"+
|
||||
"D\u0003D\u02e8\bD\u0001E\u0001E\u0001E\u0001F\u0001F\u0001G\u0003G\u02f0"+
|
||||
"\bG\u0001G\u0001G\u0001H\u0004H\u02f5\bH\u000bH\fH\u02f6\u0001I\u0001"+
|
||||
"I\u0003I\u02fb\bI\u0001J\u0001J\u0001K\u0001K\u0001L\u0001L\u0001M\u0001"+
|
||||
"M\u0001M\u0001M\u0001M\u0001M\u0001M\u0001M\u0003M\u030b\bM\u0001N\u0001"+
|
||||
"N\u0001O\u0001O\u0003O\u0311\bO\u0001O\u0001O\u0001P\u0004P\u0316\bP\u000b"+
|
||||
"P\fP\u0317\u0001Q\u0001Q\u0003Q\u031c\bQ\u0001R\u0001R\u0001R\u0001R\u0001"+
|
||||
"R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001"+
|
||||
"R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001"+
|
||||
"R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001"+
|
||||
"R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001R\u0001R\u0003R\u0348\bR\u0001"+
|
||||
"S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001S\u0001"+
|
||||
"S\u0003S\u0355\bS\u0001T\u0001T\u0001T\u0001U\u0001U\u0001V\u0001V\u0001"+
|
||||
"W\u0001W\u0001X\u0001X\u0001X\u0001X\u0001X\u0001X\u0001X\u0001X\u0001"+
|
||||
"X\u0003X\u0369\bX\u0001Y\u0001Y\u0001Y\u0001Y\u0001Y\u0001Z\u0001Z\u0001"+
|
||||
"[\u0001[\u0001\\\u0001\\\u0001]\u0001]\u0001^\u0001^\u0001_\u0001_\u0001"+
|
||||
"`\u0001`\u0001a\u0001a\u0001b\u0001b\u0001b\u0001b\u0001b\u0001c\u0001"+
|
||||
"c\u0001c\u0001d\u0001d\u0001d\u0001e\u0001e\u0001e\u0001f\u0001f\u0001"+
|
||||
"f\u0001g\u0001g\u0001g\u0001h\u0001h\u0001h\u0001i\u0001i\u0001i\u0001"+
|
||||
"j\u0001j\u0001j\u0001k\u0001k\u0001k\u0001l\u0001l\u0001l\u0001m\u0001"+
|
||||
"m\u0001m\u0001m\u0001n\u0001n\u0001n\u0001o\u0001o\u0001o\u0001p\u0001"+
|
||||
"p\u0001p\u0001q\u0001q\u0001q\u0001r\u0001r\u0001r\u0001s\u0001s\u0001"+
|
||||
"s\u0001t\u0001t\u0001t\u0001u\u0001u\u0001u\u0001v\u0001v\u0001v\u0001"+
|
||||
"v\u0001w\u0001w\u0001w\u0001w\u0001x\u0001x\u0001y\u0001y\u0001z\u0001"+
|
||||
"z\u0001{\u0001{\u0001|\u0001|\u0001}\u0001}\u0001~\u0001~\u0001\u007f"+
|
||||
"\u0001\u007f\u0001\u0080\u0001\u0080\u0001\u0081\u0001\u0081\u0001\u0082"+
|
||||
"\u0001\u0082\u0001\u0083\u0001\u0083\u0001\u0084\u0001\u0084\u0001\u0085"+
|
||||
"\u0001\u0085\u0001\u0086\u0001\u0086\u0001\u0087\u0001\u0087\u0005\u0087"+
|
||||
"\u03e7\b\u0087\n\u0087\f\u0087\u03ea\t\u0087\u0001\u0088\u0001\u0088\u0001"+
|
||||
"\u0089\u0001\u0089\u0000\u0000\u008a\u0001\u0000\u0003\u0001\u0005\u0000"+
|
||||
"\u0007\u0002\t\u0000\u000b\u0000\r\u0000\u000f\u0000\u0011\u0000\u0013"+
|
||||
"\u0003\u0015\u0004\u0017\u0005\u0019\u0006\u001b\u0007\u001d\b\u001f\t"+
|
||||
"!\n#\u000b%\f\'\r)\u000e+\u000f-\u0010/\u00111\u00123\u00135\u00147\u0015"+
|
||||
"9\u0016;\u0017=\u0018?\u0019A\u001aC\u001bE\u001cG\u001dI\u001eK\u001f"+
|
||||
"M O!Q\"S#U$W%Y&[\'](_)a*c+e,g-i.k/m0o1q2s3u4w5y\u0000{\u0000}\u0000\u007f"+
|
||||
"\u0000\u0081\u0000\u0083\u0000\u0085\u0000\u0087\u0000\u00896\u008b\u0000"+
|
||||
"\u008d\u0000\u008f\u0000\u0091\u0000\u0093\u0000\u0095\u0000\u0097\u0000"+
|
||||
"\u0099\u0000\u009b7\u009d\u0000\u009f8\u00a1\u0000\u00a3\u0000\u00a5\u0000"+
|
||||
"\u00a7\u0000\u00a9\u0000\u00ab\u0000\u00ad\u0000\u00af\u0000\u00b19\u00b3"+
|
||||
":\u00b5;\u00b7<\u00b9=\u00bb>\u00bd?\u00bf@\u00c1A\u00c3B\u00c5C\u00c7"+
|
||||
"D\u00c9E\u00cbF\u00cdG\u00cfH\u00d1I\u00d3J\u00d5K\u00d7L\u00d9M\u00db"+
|
||||
"N\u00ddO\u00dfP\u00e1Q\u00e3R\u00e5S\u00e7T\u00e9U\u00ebV\u00edW\u00ef"+
|
||||
"X\u00f1Y\u00f3Z\u00f5[\u00f7\\\u00f9]\u00fb^\u00fd_\u00ff`\u0101a\u0103"+
|
||||
"b\u0105c\u0107d\u0109e\u010bf\u010dg\u010fh\u0111\u0000\u0113\u0000\u0001"+
|
||||
"\u0000\u000f\u0003\u0000\t\t\f\f \u0002\u0000\n\n\r\r\u0002\u0000**^"+
|
||||
"^\u0003\u0000**//^^\u0002\u0000LLll\u0003\u000009AFaf\u0002\u0000EEee"+
|
||||
"\u0001\u000019\u0002\u0000++--\u0004\u0000DDFFddff\u0003\u0000\'\'\\\\"+
|
||||
"^^\u0001\u000007\u0001\u000003\u0004\u0000$$AZ__az\u0005\u0000$$09AZ_"+
|
||||
"_az\u03fd\u0000\u0003\u0001\u0000\u0000\u0000\u0000\u0007\u0001\u0000"+
|
||||
"\u0000\u0000\u0000\u0013\u0001\u0000\u0000\u0000\u0000\u0015\u0001\u0000"+
|
||||
"\u0000\u0000\u0000\u0017\u0001\u0000\u0000\u0000\u0000\u0019\u0001\u0000"+
|
||||
"\u0000\u0000\u0000\u001b\u0001\u0000\u0000\u0000\u0000\u001d\u0001\u0000"+
|
||||
"\u0000\u0000\u0000\u001f\u0001\u0000\u0000\u0000\u0000!\u0001\u0000\u0000"+
|
||||
"\u0000\u0000#\u0001\u0000\u0000\u0000\u0000%\u0001\u0000\u0000\u0000\u0000"+
|
||||
"\'\u0001\u0000\u0000\u0000\u0000)\u0001\u0000\u0000\u0000\u0000+\u0001"+
|
||||
"\u0000\u0000\u0000\u0000-\u0001\u0000\u0000\u0000\u0000/\u0001\u0000\u0000"+
|
||||
"\u0000\u00001\u0001\u0000\u0000\u0000\u00003\u0001\u0000\u0000\u0000\u0000"+
|
||||
"5\u0001\u0000\u0000\u0000\u00007\u0001\u0000\u0000\u0000\u00009\u0001"+
|
||||
"\u0000\u0000\u0000\u0000;\u0001\u0000\u0000\u0000\u0000=\u0001\u0000\u0000"+
|
||||
"\u0000\u0000?\u0001\u0000\u0000\u0000\u0000A\u0001\u0000\u0000\u0000\u0000"+
|
||||
"C\u0001\u0000\u0000\u0000\u0000E\u0001\u0000\u0000\u0000\u0000G\u0001"+
|
||||
"\u0000\u0000\u0000\u0000I\u0001\u0000\u0000\u0000\u0000K\u0001\u0000\u0000"+
|
||||
"\u0000\u0000M\u0001\u0000\u0000\u0000\u0000O\u0001\u0000\u0000\u0000\u0000"+
|
||||
"Q\u0001\u0000\u0000\u0000\u0000S\u0001\u0000\u0000\u0000\u0000U\u0001"+
|
||||
"\u0000\u0000\u0000\u0000W\u0001\u0000\u0000\u0000\u0000Y\u0001\u0000\u0000"+
|
||||
"\u0000\u0000[\u0001\u0000\u0000\u0000\u0000]\u0001\u0000\u0000\u0000\u0000"+
|
||||
"_\u0001\u0000\u0000\u0000\u0000a\u0001\u0000\u0000\u0000\u0000c\u0001"+
|
||||
"\u0000\u0000\u0000\u0000e\u0001\u0000\u0000\u0000\u0000g\u0001\u0000\u0000"+
|
||||
"\u0000\u0000i\u0001\u0000\u0000\u0000\u0000k\u0001\u0000\u0000\u0000\u0000"+
|
||||
"m\u0001\u0000\u0000\u0000\u0000o\u0001\u0000\u0000\u0000\u0000q\u0001"+
|
||||
"\u0000\u0000\u0000\u0000s\u0001\u0000\u0000\u0000\u0000u\u0001\u0000\u0000"+
|
||||
"\u0000\u0000w\u0001\u0000\u0000\u0000\u0000\u0089\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u009b\u0001\u0000\u0000\u0000\u0000\u009f\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00b1\u0001\u0000\u0000\u0000\u0000\u00b3\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00b5\u0001\u0000\u0000\u0000\u0000\u00b7\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00b9\u0001\u0000\u0000\u0000\u0000\u00bb\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00bd\u0001\u0000\u0000\u0000\u0000\u00bf\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00c1\u0001\u0000\u0000\u0000\u0000\u00c3\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00c5\u0001\u0000\u0000\u0000\u0000\u00c7\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00c9\u0001\u0000\u0000\u0000\u0000\u00cb\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00cd\u0001\u0000\u0000\u0000\u0000\u00cf\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00d1\u0001\u0000\u0000\u0000\u0000\u00d3\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00d5\u0001\u0000\u0000\u0000\u0000\u00d7\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00d9\u0001\u0000\u0000\u0000\u0000\u00db\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00dd\u0001\u0000\u0000\u0000\u0000\u00df\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00e1\u0001\u0000\u0000\u0000\u0000\u00e3\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00e5\u0001\u0000\u0000\u0000\u0000\u00e7\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00e9\u0001\u0000\u0000\u0000\u0000\u00eb\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00ed\u0001\u0000\u0000\u0000\u0000\u00ef\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00f1\u0001\u0000\u0000\u0000\u0000\u00f3\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00f5\u0001\u0000\u0000\u0000\u0000\u00f7\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00f9\u0001\u0000\u0000\u0000\u0000\u00fb\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u00fd\u0001\u0000\u0000\u0000\u0000\u00ff\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u0101\u0001\u0000\u0000\u0000\u0000\u0103\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u0105\u0001\u0000\u0000\u0000\u0000\u0107\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u0109\u0001\u0000\u0000\u0000\u0000\u010b\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u010d\u0001\u0000\u0000\u0000\u0000\u010f\u0001\u0000\u0000\u0000"+
|
||||
"\u0001\u011a\u0001\u0000\u0000\u0000\u0003\u011e\u0001\u0000\u0000\u0000"+
|
||||
"\u0005\u0122\u0001\u0000\u0000\u0000\u0007\u0130\u0001\u0000\u0000\u0000"+
|
||||
"\t\u0134\u0001\u0000\u0000\u0000\u000b\u013d\u0001\u0000\u0000\u0000\r"+
|
||||
"\u0145\u0001\u0000\u0000\u0000\u000f\u0149\u0001\u0000\u0000\u0000\u0011"+
|
||||
"\u014d\u0001\u0000\u0000\u0000\u0013\u014f\u0001\u0000\u0000\u0000\u0015"+
|
||||
"\u0158\u0001\u0000\u0000\u0000\u0017\u015f\u0001\u0000\u0000\u0000\u0019"+
|
||||
"\u0167\u0001\u0000\u0000\u0000\u001b\u016d\u0001\u0000\u0000\u0000\u001d"+
|
||||
"\u0172\u0001\u0000\u0000\u0000\u001f\u0177\u0001\u0000\u0000\u0000!\u017d"+
|
||||
"\u0001\u0000\u0000\u0000#\u0182\u0001\u0000\u0000\u0000%\u0188\u0001\u0000"+
|
||||
"\u0000\u0000\'\u018e\u0001\u0000\u0000\u0000)\u0197\u0001\u0000\u0000"+
|
||||
"\u0000+\u019f\u0001\u0000\u0000\u0000-\u01a2\u0001\u0000\u0000\u0000/"+
|
||||
"\u01a9\u0001\u0000\u0000\u00001\u01ae\u0001\u0000\u0000\u00003\u01b6\u0001"+
|
||||
"\u0000\u0000\u00005\u01bc\u0001\u0000\u0000\u00007\u01c4\u0001\u0000\u0000"+
|
||||
"\u00009\u01ca\u0001\u0000\u0000\u0000;\u01ce\u0001\u0000\u0000\u0000="+
|
||||
"\u01d3\u0001\u0000\u0000\u0000?\u01d6\u0001\u0000\u0000\u0000A\u01e1\u0001"+
|
||||
"\u0000\u0000\u0000C\u01e8\u0001\u0000\u0000\u0000E\u01f3\u0001\u0000\u0000"+
|
||||
"\u0000G\u01f7\u0001\u0000\u0000\u0000I\u0201\u0001\u0000\u0000\u0000K"+
|
||||
"\u0206\u0001\u0000\u0000\u0000M\u020d\u0001\u0000\u0000\u0000O\u0211\u0001"+
|
||||
"\u0000\u0000\u0000Q\u0219\u0001\u0000\u0000\u0000S\u0221\u0001\u0000\u0000"+
|
||||
"\u0000U\u022b\u0001\u0000\u0000\u0000W\u0232\u0001\u0000\u0000\u0000Y"+
|
||||
"\u0239\u0001\u0000\u0000\u0000[\u023f\u0001\u0000\u0000\u0000]\u0246\u0001"+
|
||||
"\u0000\u0000\u0000_\u024f\u0001\u0000\u0000\u0000a\u0255\u0001\u0000\u0000"+
|
||||
"\u0000c\u025c\u0001\u0000\u0000\u0000e\u0269\u0001\u0000\u0000\u0000g"+
|
||||
"\u026e\u0001\u0000\u0000\u0000i\u0274\u0001\u0000\u0000\u0000k\u027b\u0001"+
|
||||
"\u0000\u0000\u0000m\u0285\u0001\u0000\u0000\u0000o\u0289\u0001\u0000\u0000"+
|
||||
"\u0000q\u028e\u0001\u0000\u0000\u0000s\u0297\u0001\u0000\u0000\u0000u"+
|
||||
"\u029d\u0001\u0000\u0000\u0000w\u02a2\u0001\u0000\u0000\u0000y\u02a4\u0001"+
|
||||
"\u0000\u0000\u0000{\u02a8\u0001\u0000\u0000\u0000}\u02ac\u0001\u0000\u0000"+
|
||||
"\u0000\u007f\u02b0\u0001\u0000\u0000\u0000\u0081\u02b7\u0001\u0000\u0000"+
|
||||
"\u0000\u0083\u02bf\u0001\u0000\u0000\u0000\u0085\u02c5\u0001\u0000\u0000"+
|
||||
"\u0000\u0087\u02c7\u0001\u0000\u0000\u0000\u0089\u02e7\u0001\u0000\u0000"+
|
||||
"\u0000\u008b\u02e9\u0001\u0000\u0000\u0000\u008d\u02ec\u0001\u0000\u0000"+
|
||||
"\u0000\u008f\u02ef\u0001\u0000\u0000\u0000\u0091\u02f4\u0001\u0000\u0000"+
|
||||
"\u0000\u0093\u02fa\u0001\u0000\u0000\u0000\u0095\u02fc\u0001\u0000\u0000"+
|
||||
"\u0000\u0097\u02fe\u0001\u0000\u0000\u0000\u0099\u0300\u0001\u0000\u0000"+
|
||||
"\u0000\u009b\u030a\u0001\u0000\u0000\u0000\u009d\u030c\u0001\u0000\u0000"+
|
||||
"\u0000\u009f\u030e\u0001\u0000\u0000\u0000\u00a1\u0315\u0001\u0000\u0000"+
|
||||
"\u0000\u00a3\u031b\u0001\u0000\u0000\u0000\u00a5\u031d\u0001\u0000\u0000"+
|
||||
"\u0000\u00a7\u0354\u0001\u0000\u0000\u0000\u00a9\u0356\u0001\u0000\u0000"+
|
||||
"\u0000\u00ab\u0359\u0001\u0000\u0000\u0000\u00ad\u035b\u0001\u0000\u0000"+
|
||||
"\u0000\u00af\u035d\u0001\u0000\u0000\u0000\u00b1\u0368\u0001\u0000\u0000"+
|
||||
"\u0000\u00b3\u036a\u0001\u0000\u0000\u0000\u00b5\u036f\u0001\u0000\u0000"+
|
||||
"\u0000\u00b7\u0371\u0001\u0000\u0000\u0000\u00b9\u0373\u0001\u0000\u0000"+
|
||||
"\u0000\u00bb\u0375\u0001\u0000\u0000\u0000\u00bd\u0377\u0001\u0000\u0000"+
|
||||
"\u0000\u00bf\u0379\u0001\u0000\u0000\u0000\u00c1\u037b\u0001\u0000\u0000"+
|
||||
"\u0000\u00c3\u037d\u0001\u0000\u0000\u0000\u00c5\u037f\u0001\u0000\u0000"+
|
||||
"\u0000\u00c7\u0384\u0001\u0000\u0000\u0000\u00c9\u0387\u0001\u0000\u0000"+
|
||||
"\u0000\u00cb\u038a\u0001\u0000\u0000\u0000\u00cd\u038d\u0001\u0000\u0000"+
|
||||
"\u0000\u00cf\u0390\u0001\u0000\u0000\u0000\u00d1\u0393\u0001\u0000\u0000"+
|
||||
"\u0000\u00d3\u0396\u0001\u0000\u0000\u0000\u00d5\u0399\u0001\u0000\u0000"+
|
||||
"\u0000\u00d7\u039c\u0001\u0000\u0000\u0000\u00d9\u039f\u0001\u0000\u0000"+
|
||||
"\u0000\u00db\u03a2\u0001\u0000\u0000\u0000\u00dd\u03a6\u0001\u0000\u0000"+
|
||||
"\u0000\u00df\u03a9\u0001\u0000\u0000\u0000\u00e1\u03ac\u0001\u0000\u0000"+
|
||||
"\u0000\u00e3\u03af\u0001\u0000\u0000\u0000\u00e5\u03b2\u0001\u0000\u0000"+
|
||||
"\u0000\u00e7\u03b5\u0001\u0000\u0000\u0000\u00e9\u03b8\u0001\u0000\u0000"+
|
||||
"\u0000\u00eb\u03bb\u0001\u0000\u0000\u0000\u00ed\u03be\u0001\u0000\u0000"+
|
||||
"\u0000\u00ef\u03c2\u0001\u0000\u0000\u0000\u00f1\u03c6\u0001\u0000\u0000"+
|
||||
"\u0000\u00f3\u03c8\u0001\u0000\u0000\u0000\u00f5\u03ca\u0001\u0000\u0000"+
|
||||
"\u0000\u00f7\u03cc\u0001\u0000\u0000\u0000\u00f9\u03ce\u0001\u0000\u0000"+
|
||||
"\u0000\u00fb\u03d0\u0001\u0000\u0000\u0000\u00fd\u03d2\u0001\u0000\u0000"+
|
||||
"\u0000\u00ff\u03d4\u0001\u0000\u0000\u0000\u0101\u03d6\u0001\u0000\u0000"+
|
||||
"\u0000\u0103\u03d8\u0001\u0000\u0000\u0000\u0105\u03da\u0001\u0000\u0000"+
|
||||
"\u0000\u0107\u03dc\u0001\u0000\u0000\u0000\u0109\u03de\u0001\u0000\u0000"+
|
||||
"\u0000\u010b\u03e0\u0001\u0000\u0000\u0000\u010d\u03e2\u0001\u0000\u0000"+
|
||||
"\u0000\u010f\u03e4\u0001\u0000\u0000\u0000\u0111\u03eb\u0001\u0000\u0000"+
|
||||
"\u0000\u0113\u03ed\u0001\u0000\u0000\u0000\u0115\u0117\u0005\r\u0000\u0000"+
|
||||
"\u0116\u0118\u0005\n\u0000\u0000\u0117\u0116\u0001\u0000\u0000\u0000\u0117"+
|
||||
"\u0118\u0001\u0000\u0000\u0000\u0118\u011b\u0001\u0000\u0000\u0000\u0119"+
|
||||
"\u011b\u0005\n\u0000\u0000\u011a\u0115\u0001\u0000\u0000\u0000\u011a\u0119"+
|
||||
"\u0001\u0000\u0000\u0000\u011b\u0002\u0001\u0000\u0000\u0000\u011c\u011f"+
|
||||
"\u0007\u0000\u0000\u0000\u011d\u011f\u0003\u0001\u0000\u0000\u011e\u011c"+
|
||||
"\u0001\u0000\u0000\u0000\u011e\u011d\u0001\u0000\u0000\u0000\u011f\u0120"+
|
||||
"\u0001\u0000\u0000\u0000\u0120\u0121\u0006\u0001\u0000\u0000\u0121\u0004"+
|
||||
"\u0001\u0000\u0000\u0000\u0122\u0123\u0005/\u0000\u0000\u0123\u0124\u0005"+
|
||||
"/\u0000\u0000\u0124\u0128\u0001\u0000\u0000\u0000\u0125\u0127\b\u0001"+
|
||||
"\u0000\u0000\u0126\u0125\u0001\u0000\u0000\u0000\u0127\u012a\u0001\u0000"+
|
||||
"\u0000\u0000\u0128\u0126\u0001\u0000\u0000\u0000\u0128\u0129\u0001\u0000"+
|
||||
"\u0000\u0000\u0129\u012c\u0001\u0000\u0000\u0000\u012a\u0128\u0001\u0000"+
|
||||
"\u0000\u0000\u012b\u012d\u0003\u0001\u0000\u0000\u012c\u012b\u0001\u0000"+
|
||||
"\u0000\u0000\u012c\u012d\u0001\u0000\u0000\u0000\u012d\u0006\u0001\u0000"+
|
||||
"\u0000\u0000\u012e\u0131\u0003\t\u0004\u0000\u012f\u0131\u0003\u0005\u0002"+
|
||||
"\u0000\u0130\u012e\u0001\u0000\u0000\u0000\u0130\u012f\u0001\u0000\u0000"+
|
||||
"\u0000\u0131\u0132\u0001\u0000\u0000\u0000\u0132\u0133\u0006\u0003\u0000"+
|
||||
"\u0000\u0133\b\u0001\u0000\u0000\u0000\u0134\u0135\u0005/\u0000\u0000"+
|
||||
"\u0135\u0136\u0005*\u0000\u0000\u0136\u0137\u0001\u0000\u0000\u0000\u0137"+
|
||||
"\u0138\u0003\u000f\u0007\u0000\u0138\u0139\u0003\u000b\u0005\u0000\u0139"+
|
||||
"\n\u0001\u0000\u0000\u0000\u013a\u013b\u0005*\u0000\u0000\u013b\u013e"+
|
||||
"\u0003\r\u0006\u0000\u013c\u013e\u0003\u000f\u0007\u0000\u013d\u013a\u0001"+
|
||||
"\u0000\u0000\u0000\u013d\u013c\u0001\u0000\u0000\u0000\u013e\f\u0001\u0000"+
|
||||
"\u0000\u0000\u013f\u0146\u0005/\u0000\u0000\u0140\u0141\u0005*\u0000\u0000"+
|
||||
"\u0141\u0146\u0003\r\u0006\u0000\u0142\u0143\u0003\u0011\b\u0000\u0143"+
|
||||
"\u0144\u0003\u000b\u0005\u0000\u0144\u0146\u0001\u0000\u0000\u0000\u0145"+
|
||||
"\u013f\u0001\u0000\u0000\u0000\u0145\u0140\u0001\u0000\u0000\u0000\u0145"+
|
||||
"\u0142\u0001\u0000\u0000\u0000\u0146\u000e\u0001\u0000\u0000\u0000\u0147"+
|
||||
"\u014a\u0007\u0002\u0000\u0000\u0148\u014a\u0003\u0001\u0000\u0000\u0149"+
|
||||
"\u0147\u0001\u0000\u0000\u0000\u0149\u0148\u0001\u0000\u0000\u0000\u014a"+
|
||||
"\u0010\u0001\u0000\u0000\u0000\u014b\u014e\u0007\u0003\u0000\u0000\u014c"+
|
||||
"\u014e\u0003\u0001\u0000\u0000\u014d\u014b\u0001\u0000\u0000\u0000\u014d"+
|
||||
"\u014c\u0001\u0000\u0000\u0000\u014e\u0012\u0001\u0000\u0000\u0000\u014f"+
|
||||
"\u0150\u0005a\u0000\u0000\u0150\u0151\u0005b\u0000\u0000\u0151\u0152\u0005"+
|
||||
"s\u0000\u0000\u0152\u0153\u0005t\u0000\u0000\u0153\u0154\u0005r\u0000"+
|
||||
"\u0000\u0154\u0155\u0005a\u0000\u0000\u0155\u0156\u0005c\u0000\u0000\u0156"+
|
||||
"\u0157\u0005t\u0000\u0000\u0157\u0014\u0001\u0000\u0000\u0000\u0158\u0159"+
|
||||
"\u0005a\u0000\u0000\u0159\u015a\u0005s\u0000\u0000\u015a\u015b\u0005s"+
|
||||
"\u0000\u0000\u015b\u015c\u0005e\u0000\u0000\u015c\u015d\u0005r\u0000\u0000"+
|
||||
"\u015d\u015e\u0005t\u0000\u0000\u015e\u0016\u0001\u0000\u0000\u0000\u015f"+
|
||||
"\u0160\u0005b\u0000\u0000\u0160\u0161\u0005o\u0000\u0000\u0161\u0162\u0005"+
|
||||
"o\u0000\u0000\u0162\u0163\u0005l\u0000\u0000\u0163\u0164\u0005e\u0000"+
|
||||
"\u0000\u0164\u0165\u0005a\u0000\u0000\u0165\u0166\u0005n\u0000\u0000\u0166"+
|
||||
"\u0018\u0001\u0000\u0000\u0000\u0167\u0168\u0005b\u0000\u0000\u0168\u0169"+
|
||||
"\u0005r\u0000\u0000\u0169\u016a\u0005e\u0000\u0000\u016a\u016b\u0005a"+
|
||||
"\u0000\u0000\u016b\u016c\u0005k\u0000\u0000\u016c\u001a\u0001\u0000\u0000"+
|
||||
"\u0000\u016d\u016e\u0005b\u0000\u0000\u016e\u016f\u0005y\u0000\u0000\u016f"+
|
||||
"\u0170\u0005t\u0000\u0000\u0170\u0171\u0005e\u0000\u0000\u0171\u001c\u0001"+
|
||||
"\u0000\u0000\u0000\u0172\u0173\u0005c\u0000\u0000\u0173\u0174\u0005a\u0000"+
|
||||
"\u0000\u0174\u0175\u0005s\u0000\u0000\u0175\u0176\u0005e\u0000\u0000\u0176"+
|
||||
"\u001e\u0001\u0000\u0000\u0000\u0177\u0178\u0005c\u0000\u0000\u0178\u0179"+
|
||||
"\u0005a\u0000\u0000\u0179\u017a\u0005t\u0000\u0000\u017a\u017b\u0005c"+
|
||||
"\u0000\u0000\u017b\u017c\u0005h\u0000\u0000\u017c \u0001\u0000\u0000\u0000"+
|
||||
"\u017d\u017e\u0005c\u0000\u0000\u017e\u017f\u0005h\u0000\u0000\u017f\u0180"+
|
||||
"\u0005a\u0000\u0000\u0180\u0181\u0005r\u0000\u0000\u0181\"\u0001\u0000"+
|
||||
"\u0000\u0000\u0182\u0183\u0005c\u0000\u0000\u0183\u0184\u0005l\u0000\u0000"+
|
||||
"\u0184\u0185\u0005a\u0000\u0000\u0185\u0186\u0005s\u0000\u0000\u0186\u0187"+
|
||||
"\u0005s\u0000\u0000\u0187$\u0001\u0000\u0000\u0000\u0188\u0189\u0005c"+
|
||||
"\u0000\u0000\u0189\u018a\u0005o\u0000\u0000\u018a\u018b\u0005n\u0000\u0000"+
|
||||
"\u018b\u018c\u0005s\u0000\u0000\u018c\u018d\u0005t\u0000\u0000\u018d&"+
|
||||
"\u0001\u0000\u0000\u0000\u018e\u018f\u0005c\u0000\u0000\u018f\u0190\u0005"+
|
||||
"o\u0000\u0000\u0190\u0191\u0005n\u0000\u0000\u0191\u0192\u0005t\u0000"+
|
||||
"\u0000\u0192\u0193\u0005i\u0000\u0000\u0193\u0194\u0005n\u0000\u0000\u0194"+
|
||||
"\u0195\u0005u\u0000\u0000\u0195\u0196\u0005e\u0000\u0000\u0196(\u0001"+
|
||||
"\u0000\u0000\u0000\u0197\u0198\u0005d\u0000\u0000\u0198\u0199\u0005e\u0000"+
|
||||
"\u0000\u0199\u019a\u0005f\u0000\u0000\u019a\u019b\u0005a\u0000\u0000\u019b"+
|
||||
"\u019c\u0005u\u0000\u0000\u019c\u019d\u0005l\u0000\u0000\u019d\u019e\u0005"+
|
||||
"t\u0000\u0000\u019e*\u0001\u0000\u0000\u0000\u019f\u01a0\u0005d\u0000"+
|
||||
"\u0000\u01a0\u01a1\u0005o\u0000\u0000\u01a1,\u0001\u0000\u0000\u0000\u01a2"+
|
||||
"\u01a3\u0005d\u0000\u0000\u01a3\u01a4\u0005o\u0000\u0000\u01a4\u01a5\u0005"+
|
||||
"u\u0000\u0000\u01a5\u01a6\u0005b\u0000\u0000\u01a6\u01a7\u0005l\u0000"+
|
||||
"\u0000\u01a7\u01a8\u0005e\u0000\u0000\u01a8.\u0001\u0000\u0000\u0000\u01a9"+
|
||||
"\u01aa\u0005e\u0000\u0000\u01aa\u01ab\u0005l\u0000\u0000\u01ab\u01ac\u0005"+
|
||||
"s\u0000\u0000\u01ac\u01ad\u0005e\u0000\u0000\u01ad0\u0001\u0000\u0000"+
|
||||
"\u0000\u01ae\u01af\u0005e\u0000\u0000\u01af\u01b0\u0005x\u0000\u0000\u01b0"+
|
||||
"\u01b1\u0005t\u0000\u0000\u01b1\u01b2\u0005e\u0000\u0000\u01b2\u01b3\u0005"+
|
||||
"n\u0000\u0000\u01b3\u01b4\u0005d\u0000\u0000\u01b4\u01b5\u0005s\u0000"+
|
||||
"\u0000\u01b52\u0001\u0000\u0000\u0000\u01b6\u01b7\u0005f\u0000\u0000\u01b7"+
|
||||
"\u01b8\u0005i\u0000\u0000\u01b8\u01b9\u0005n\u0000\u0000\u01b9\u01ba\u0005"+
|
||||
"a\u0000\u0000\u01ba\u01bb\u0005l\u0000\u0000\u01bb4\u0001\u0000\u0000"+
|
||||
"\u0000\u01bc\u01bd\u0005f\u0000\u0000\u01bd\u01be\u0005i\u0000\u0000\u01be"+
|
||||
"\u01bf\u0005n\u0000\u0000\u01bf\u01c0\u0005a\u0000\u0000\u01c0\u01c1\u0005"+
|
||||
"l\u0000\u0000\u01c1\u01c2\u0005l\u0000\u0000\u01c2\u01c3\u0005y\u0000"+
|
||||
"\u0000\u01c36\u0001\u0000\u0000\u0000\u01c4\u01c5\u0005f\u0000\u0000\u01c5"+
|
||||
"\u01c6\u0005l\u0000\u0000\u01c6\u01c7\u0005o\u0000\u0000\u01c7\u01c8\u0005"+
|
||||
"a\u0000\u0000\u01c8\u01c9\u0005t\u0000\u0000\u01c98\u0001\u0000\u0000"+
|
||||
"\u0000\u01ca\u01cb\u0005f\u0000\u0000\u01cb\u01cc\u0005o\u0000\u0000\u01cc"+
|
||||
"\u01cd\u0005r\u0000\u0000\u01cd:\u0001\u0000\u0000\u0000\u01ce\u01cf\u0005"+
|
||||
"g\u0000\u0000\u01cf\u01d0\u0005o\u0000\u0000\u01d0\u01d1\u0005t\u0000"+
|
||||
"\u0000\u01d1\u01d2\u0005o\u0000\u0000\u01d2<\u0001\u0000\u0000\u0000\u01d3"+
|
||||
"\u01d4\u0005i\u0000\u0000\u01d4\u01d5\u0005f\u0000\u0000\u01d5>\u0001"+
|
||||
"\u0000\u0000\u0000\u01d6\u01d7\u0005i\u0000\u0000\u01d7\u01d8\u0005m\u0000"+
|
||||
"\u0000\u01d8\u01d9\u0005p\u0000\u0000\u01d9\u01da\u0005l\u0000\u0000\u01da"+
|
||||
"\u01db\u0005e\u0000\u0000\u01db\u01dc\u0005m\u0000\u0000\u01dc\u01dd\u0005"+
|
||||
"e\u0000\u0000\u01dd\u01de\u0005n\u0000\u0000\u01de\u01df\u0005t\u0000"+
|
||||
"\u0000\u01df\u01e0\u0005s\u0000\u0000\u01e0@\u0001\u0000\u0000\u0000\u01e1"+
|
||||
"\u01e2\u0005i\u0000\u0000\u01e2\u01e3\u0005m\u0000\u0000\u01e3\u01e4\u0005"+
|
||||
"p\u0000\u0000\u01e4\u01e5\u0005o\u0000\u0000\u01e5\u01e6\u0005r\u0000"+
|
||||
"\u0000\u01e6\u01e7\u0005t\u0000\u0000\u01e7B\u0001\u0000\u0000\u0000\u01e8"+
|
||||
"\u01e9\u0005i\u0000\u0000\u01e9\u01ea\u0005n\u0000\u0000\u01ea\u01eb\u0005"+
|
||||
"s\u0000\u0000\u01eb\u01ec\u0005t\u0000\u0000\u01ec\u01ed\u0005a\u0000"+
|
||||
"\u0000\u01ed\u01ee\u0005n\u0000\u0000\u01ee\u01ef\u0005c\u0000\u0000\u01ef"+
|
||||
"\u01f0\u0005e\u0000\u0000\u01f0\u01f1\u0005o\u0000\u0000\u01f1\u01f2\u0005"+
|
||||
"f\u0000\u0000\u01f2D\u0001\u0000\u0000\u0000\u01f3\u01f4\u0005i\u0000"+
|
||||
"\u0000\u01f4\u01f5\u0005n\u0000\u0000\u01f5\u01f6\u0005t\u0000\u0000\u01f6"+
|
||||
"F\u0001\u0000\u0000\u0000\u01f7\u01f8\u0005i\u0000\u0000\u01f8\u01f9\u0005"+
|
||||
"n\u0000\u0000\u01f9\u01fa\u0005t\u0000\u0000\u01fa\u01fb\u0005e\u0000"+
|
||||
"\u0000\u01fb\u01fc\u0005r\u0000\u0000\u01fc\u01fd\u0005f\u0000\u0000\u01fd"+
|
||||
"\u01fe\u0005a\u0000\u0000\u01fe\u01ff\u0005c\u0000\u0000\u01ff\u0200\u0005"+
|
||||
"e\u0000\u0000\u0200H\u0001\u0000\u0000\u0000\u0201\u0202\u0005l\u0000"+
|
||||
"\u0000\u0202\u0203\u0005o\u0000\u0000\u0203\u0204\u0005n\u0000\u0000\u0204"+
|
||||
"\u0205\u0005g\u0000\u0000\u0205J\u0001\u0000\u0000\u0000\u0206\u0207\u0005"+
|
||||
"n\u0000\u0000\u0207\u0208\u0005a\u0000\u0000\u0208\u0209\u0005t\u0000"+
|
||||
"\u0000\u0209\u020a\u0005i\u0000\u0000\u020a\u020b\u0005v\u0000\u0000\u020b"+
|
||||
"\u020c\u0005e\u0000\u0000\u020cL\u0001\u0000\u0000\u0000\u020d\u020e\u0005"+
|
||||
"n\u0000\u0000\u020e\u020f\u0005e\u0000\u0000\u020f\u0210\u0005w\u0000"+
|
||||
"\u0000\u0210N\u0001\u0000\u0000\u0000\u0211\u0212\u0005p\u0000\u0000\u0212"+
|
||||
"\u0213\u0005a\u0000\u0000\u0213\u0214\u0005c\u0000\u0000\u0214\u0215\u0005"+
|
||||
"k\u0000\u0000\u0215\u0216\u0005a\u0000\u0000\u0216\u0217\u0005g\u0000"+
|
||||
"\u0000\u0217\u0218\u0005e\u0000\u0000\u0218P\u0001\u0000\u0000\u0000\u0219"+
|
||||
"\u021a\u0005p\u0000\u0000\u021a\u021b\u0005r\u0000\u0000\u021b\u021c\u0005"+
|
||||
"i\u0000\u0000\u021c\u021d\u0005v\u0000\u0000\u021d\u021e\u0005a\u0000"+
|
||||
"\u0000\u021e\u021f\u0005t\u0000\u0000\u021f\u0220\u0005e\u0000\u0000\u0220"+
|
||||
"R\u0001\u0000\u0000\u0000\u0221\u0222\u0005p\u0000\u0000\u0222\u0223\u0005"+
|
||||
"r\u0000\u0000\u0223\u0224\u0005o\u0000\u0000\u0224\u0225\u0005t\u0000"+
|
||||
"\u0000\u0225\u0226\u0005e\u0000\u0000\u0226\u0227\u0005c\u0000\u0000\u0227"+
|
||||
"\u0228\u0005t\u0000\u0000\u0228\u0229\u0005e\u0000\u0000\u0229\u022a\u0005"+
|
||||
"d\u0000\u0000\u022aT\u0001\u0000\u0000\u0000\u022b\u022c\u0005p\u0000"+
|
||||
"\u0000\u022c\u022d\u0005u\u0000\u0000\u022d\u022e\u0005b\u0000\u0000\u022e"+
|
||||
"\u022f\u0005l\u0000\u0000\u022f\u0230\u0005i\u0000\u0000\u0230\u0231\u0005"+
|
||||
"c\u0000\u0000\u0231V\u0001\u0000\u0000\u0000\u0232\u0233\u0005r\u0000"+
|
||||
"\u0000\u0233\u0234\u0005e\u0000\u0000\u0234\u0235\u0005t\u0000\u0000\u0235"+
|
||||
"\u0236\u0005u\u0000\u0000\u0236\u0237\u0005r\u0000\u0000\u0237\u0238\u0005"+
|
||||
"n\u0000\u0000\u0238X\u0001\u0000\u0000\u0000\u0239\u023a\u0005s\u0000"+
|
||||
"\u0000\u023a\u023b\u0005h\u0000\u0000\u023b\u023c\u0005o\u0000\u0000\u023c"+
|
||||
"\u023d\u0005r\u0000\u0000\u023d\u023e\u0005t\u0000\u0000\u023eZ\u0001"+
|
||||
"\u0000\u0000\u0000\u023f\u0240\u0005s\u0000\u0000\u0240\u0241\u0005t\u0000"+
|
||||
"\u0000\u0241\u0242\u0005a\u0000\u0000\u0242\u0243\u0005t\u0000\u0000\u0243"+
|
||||
"\u0244\u0005i\u0000\u0000\u0244\u0245\u0005c\u0000\u0000\u0245\\\u0001"+
|
||||
"\u0000\u0000\u0000\u0246\u0247\u0005s\u0000\u0000\u0247\u0248\u0005t\u0000"+
|
||||
"\u0000\u0248\u0249\u0005r\u0000\u0000\u0249\u024a\u0005i\u0000\u0000\u024a"+
|
||||
"\u024b\u0005c\u0000\u0000\u024b\u024c\u0005t\u0000\u0000\u024c\u024d\u0005"+
|
||||
"f\u0000\u0000\u024d\u024e\u0005p\u0000\u0000\u024e^\u0001\u0000\u0000"+
|
||||
"\u0000\u024f\u0250\u0005s\u0000\u0000\u0250\u0251\u0005u\u0000\u0000\u0251"+
|
||||
"\u0252\u0005p\u0000\u0000\u0252\u0253\u0005e\u0000\u0000\u0253\u0254\u0005"+
|
||||
"r\u0000\u0000\u0254`\u0001\u0000\u0000\u0000\u0255\u0256\u0005s\u0000"+
|
||||
"\u0000\u0256\u0257\u0005w\u0000\u0000\u0257\u0258\u0005i\u0000\u0000\u0258"+
|
||||
"\u0259\u0005t\u0000\u0000\u0259\u025a\u0005c\u0000\u0000\u025a\u025b\u0005"+
|
||||
"h\u0000\u0000\u025bb\u0001\u0000\u0000\u0000\u025c\u025d\u0005s\u0000"+
|
||||
"\u0000\u025d\u025e\u0005y\u0000\u0000\u025e\u025f\u0005n\u0000\u0000\u025f"+
|
||||
"\u0260\u0005c\u0000\u0000\u0260\u0261\u0005h\u0000\u0000\u0261\u0262\u0005"+
|
||||
"r\u0000\u0000\u0262\u0263\u0005o\u0000\u0000\u0263\u0264\u0005n\u0000"+
|
||||
"\u0000\u0264\u0265\u0005i\u0000\u0000\u0265\u0266\u0005z\u0000\u0000\u0266"+
|
||||
"\u0267\u0005e\u0000\u0000\u0267\u0268\u0005d\u0000\u0000\u0268d\u0001"+
|
||||
"\u0000\u0000\u0000\u0269\u026a\u0005t\u0000\u0000\u026a\u026b\u0005h\u0000"+
|
||||
"\u0000\u026b\u026c\u0005i\u0000\u0000\u026c\u026d\u0005s\u0000\u0000\u026d"+
|
||||
"f\u0001\u0000\u0000\u0000\u026e\u026f\u0005t\u0000\u0000\u026f\u0270\u0005"+
|
||||
"h\u0000\u0000\u0270\u0271\u0005r\u0000\u0000\u0271\u0272\u0005o\u0000"+
|
||||
"\u0000\u0272\u0273\u0005w\u0000\u0000\u0273h\u0001\u0000\u0000\u0000\u0274"+
|
||||
"\u0275\u0005t\u0000\u0000\u0275\u0276\u0005h\u0000\u0000\u0276\u0277\u0005"+
|
||||
"r\u0000\u0000\u0277\u0278\u0005o\u0000\u0000\u0278\u0279\u0005w\u0000"+
|
||||
"\u0000\u0279\u027a\u0005s\u0000\u0000\u027aj\u0001\u0000\u0000\u0000\u027b"+
|
||||
"\u027c\u0005t\u0000\u0000\u027c\u027d\u0005r\u0000\u0000\u027d\u027e\u0005"+
|
||||
"a\u0000\u0000\u027e\u027f\u0005n\u0000\u0000\u027f\u0280\u0005s\u0000"+
|
||||
"\u0000\u0280\u0281\u0005i\u0000\u0000\u0281\u0282\u0005e\u0000\u0000\u0282"+
|
||||
"\u0283\u0005n\u0000\u0000\u0283\u0284\u0005t\u0000\u0000\u0284l\u0001"+
|
||||
"\u0000\u0000\u0000\u0285\u0286\u0005t\u0000\u0000\u0286\u0287\u0005r\u0000"+
|
||||
"\u0000\u0287\u0288\u0005y\u0000\u0000\u0288n\u0001\u0000\u0000\u0000\u0289"+
|
||||
"\u028a\u0005v\u0000\u0000\u028a\u028b\u0005o\u0000\u0000\u028b\u028c\u0005"+
|
||||
"i\u0000\u0000\u028c\u028d\u0005d\u0000\u0000\u028dp\u0001\u0000\u0000"+
|
||||
"\u0000\u028e\u028f\u0005v\u0000\u0000\u028f\u0290\u0005o\u0000\u0000\u0290"+
|
||||
"\u0291\u0005l\u0000\u0000\u0291\u0292\u0005a\u0000\u0000\u0292\u0293\u0005"+
|
||||
"t\u0000\u0000\u0293\u0294\u0005i\u0000\u0000\u0294\u0295\u0005l\u0000"+
|
||||
"\u0000\u0295\u0296\u0005e\u0000\u0000\u0296r\u0001\u0000\u0000\u0000\u0297"+
|
||||
"\u0298\u0005w\u0000\u0000\u0298\u0299\u0005h\u0000\u0000\u0299\u029a\u0005"+
|
||||
"i\u0000\u0000\u029a\u029b\u0005l\u0000\u0000\u029b\u029c\u0005e\u0000"+
|
||||
"\u0000\u029ct\u0001\u0000\u0000\u0000\u029d\u029e\u0005.\u0000\u0000\u029e"+
|
||||
"v\u0001\u0000\u0000\u0000\u029f\u02a3\u0003y<\u0000\u02a0\u02a3\u0003"+
|
||||
"{=\u0000\u02a1\u02a3\u0003}>\u0000\u02a2\u029f\u0001\u0000\u0000\u0000"+
|
||||
"\u02a2\u02a0\u0001\u0000\u0000\u0000\u02a2\u02a1\u0001\u0000\u0000\u0000"+
|
||||
"\u02a3x\u0001\u0000\u0000\u0000\u02a4\u02a6\u0003\u0081@\u0000\u02a5\u02a7"+
|
||||
"\u0003\u007f?\u0000\u02a6\u02a5\u0001\u0000\u0000\u0000\u02a6\u02a7\u0001"+
|
||||
"\u0000\u0000\u0000\u02a7z\u0001\u0000\u0000\u0000\u02a8\u02aa\u0003\u0083"+
|
||||
"A\u0000\u02a9\u02ab\u0003\u007f?\u0000\u02aa\u02a9\u0001\u0000\u0000\u0000"+
|
||||
"\u02aa\u02ab\u0001\u0000\u0000\u0000\u02ab|\u0001\u0000\u0000\u0000\u02ac"+
|
||||
"\u02ae\u0003\u00a9T\u0000\u02ad\u02af\u0003\u007f?\u0000\u02ae\u02ad\u0001"+
|
||||
"\u0000\u0000\u0000\u02ae\u02af\u0001\u0000\u0000\u0000\u02af~\u0001\u0000"+
|
||||
"\u0000\u0000\u02b0\u02b1\u0007\u0004\u0000\u0000\u02b1\u0080\u0001\u0000"+
|
||||
"\u0000\u0000\u02b2\u02b8\u00050\u0000\u0000\u02b3\u02b5\u0003\u0095J\u0000"+
|
||||
"\u02b4\u02b6\u0003\u0091H\u0000\u02b5\u02b4\u0001\u0000\u0000\u0000\u02b5"+
|
||||
"\u02b6\u0001\u0000\u0000\u0000\u02b6\u02b8\u0001\u0000\u0000\u0000\u02b7"+
|
||||
"\u02b2\u0001\u0000\u0000\u0000\u02b7\u02b3\u0001\u0000\u0000\u0000\u02b8"+
|
||||
"\u0082\u0001\u0000\u0000\u0000\u02b9\u02ba\u00050\u0000\u0000\u02ba\u02bb"+
|
||||
"\u0005x\u0000\u0000\u02bb\u02c0\u0003\u0085B\u0000\u02bc\u02bd\u00050"+
|
||||
"\u0000\u0000\u02bd\u02be\u0005X\u0000\u0000\u02be\u02c0\u0003\u0085B\u0000"+
|
||||
"\u02bf\u02b9\u0001\u0000\u0000\u0000\u02bf\u02bc\u0001\u0000\u0000\u0000"+
|
||||
"\u02c0\u0084\u0001\u0000\u0000\u0000\u02c1\u02c6\u0003\u0087C\u0000\u02c2"+
|
||||
"\u02c3\u0003\u0087C\u0000\u02c3\u02c4\u0003\u0085B\u0000\u02c4\u02c6\u0001"+
|
||||
"\u0000\u0000\u0000\u02c5\u02c1\u0001\u0000\u0000\u0000\u02c5\u02c2\u0001"+
|
||||
"\u0000\u0000\u0000\u02c6\u0086\u0001\u0000\u0000\u0000\u02c7\u02c8\u0007"+
|
||||
"\u0005\u0000\u0000\u02c8\u0088\u0001\u0000\u0000\u0000\u02c9\u02ca\u0003"+
|
||||
"\u0091H\u0000\u02ca\u02cc\u0005.\u0000\u0000\u02cb\u02cd\u0003\u0091H"+
|
||||
"\u0000\u02cc\u02cb\u0001\u0000\u0000\u0000\u02cc\u02cd\u0001\u0000\u0000"+
|
||||
"\u0000\u02cd\u02cf\u0001\u0000\u0000\u0000\u02ce\u02d0\u0003\u008bE\u0000"+
|
||||
"\u02cf\u02ce\u0001\u0000\u0000\u0000\u02cf\u02d0\u0001\u0000\u0000\u0000"+
|
||||
"\u02d0\u02d2\u0001\u0000\u0000\u0000\u02d1\u02d3\u0003\u0099L\u0000\u02d2"+
|
||||
"\u02d1\u0001\u0000\u0000\u0000\u02d2\u02d3\u0001\u0000\u0000\u0000\u02d3"+
|
||||
"\u02e8\u0001\u0000\u0000\u0000\u02d4\u02d5\u0005.\u0000\u0000\u02d5\u02d7"+
|
||||
"\u0003\u0091H\u0000\u02d6\u02d8\u0003\u008bE\u0000\u02d7\u02d6\u0001\u0000"+
|
||||
"\u0000\u0000\u02d7\u02d8\u0001\u0000\u0000\u0000\u02d8\u02da\u0001\u0000"+
|
||||
"\u0000\u0000\u02d9\u02db\u0003\u0099L\u0000\u02da\u02d9\u0001\u0000\u0000"+
|
||||
"\u0000\u02da\u02db\u0001\u0000\u0000\u0000\u02db\u02e8\u0001\u0000\u0000"+
|
||||
"\u0000\u02dc\u02dd\u0003\u0091H\u0000\u02dd\u02df\u0003\u008bE\u0000\u02de"+
|
||||
"\u02e0\u0003\u0099L\u0000\u02df\u02de\u0001\u0000\u0000\u0000\u02df\u02e0"+
|
||||
"\u0001\u0000\u0000\u0000\u02e0\u02e8\u0001\u0000\u0000\u0000\u02e1\u02e3"+
|
||||
"\u0003\u0091H\u0000\u02e2\u02e4\u0003\u008bE\u0000\u02e3\u02e2\u0001\u0000"+
|
||||
"\u0000\u0000\u02e3\u02e4\u0001\u0000\u0000\u0000\u02e4\u02e5\u0001\u0000"+
|
||||
"\u0000\u0000\u02e5\u02e6\u0003\u0099L\u0000\u02e6\u02e8\u0001\u0000\u0000"+
|
||||
"\u0000\u02e7\u02c9\u0001\u0000\u0000\u0000\u02e7\u02d4\u0001\u0000\u0000"+
|
||||
"\u0000\u02e7\u02dc\u0001\u0000\u0000\u0000\u02e7\u02e1\u0001\u0000\u0000"+
|
||||
"\u0000\u02e8\u008a\u0001\u0000\u0000\u0000\u02e9\u02ea\u0003\u008dF\u0000"+
|
||||
"\u02ea\u02eb\u0003\u008fG\u0000\u02eb\u008c\u0001\u0000\u0000\u0000\u02ec"+
|
||||
"\u02ed\u0007\u0006\u0000\u0000\u02ed\u008e\u0001\u0000\u0000\u0000\u02ee"+
|
||||
"\u02f0\u0003\u0097K\u0000\u02ef\u02ee\u0001\u0000\u0000\u0000\u02ef\u02f0"+
|
||||
"\u0001\u0000\u0000\u0000\u02f0\u02f1\u0001\u0000\u0000\u0000\u02f1\u02f2"+
|
||||
"\u0003\u0091H\u0000\u02f2\u0090\u0001\u0000\u0000\u0000\u02f3\u02f5\u0003"+
|
||||
"\u0093I\u0000\u02f4\u02f3\u0001\u0000\u0000\u0000\u02f5\u02f6\u0001\u0000"+
|
||||
"\u0000\u0000\u02f6\u02f4\u0001\u0000\u0000\u0000\u02f6\u02f7\u0001\u0000"+
|
||||
"\u0000\u0000\u02f7\u0092\u0001\u0000\u0000\u0000\u02f8\u02fb\u00050\u0000"+
|
||||
"\u0000\u02f9\u02fb\u0003\u0095J\u0000\u02fa\u02f8\u0001\u0000\u0000\u0000"+
|
||||
"\u02fa\u02f9\u0001\u0000\u0000\u0000\u02fb\u0094\u0001\u0000\u0000\u0000"+
|
||||
"\u02fc\u02fd\u0007\u0007\u0000\u0000\u02fd\u0096\u0001\u0000\u0000\u0000"+
|
||||
"\u02fe\u02ff\u0007\b\u0000\u0000\u02ff\u0098\u0001\u0000\u0000\u0000\u0300"+
|
||||
"\u0301\u0007\t\u0000\u0000\u0301\u009a\u0001\u0000\u0000\u0000\u0302\u0303"+
|
||||
"\u0005\'\u0000\u0000\u0303\u0304\u0003\u009dN\u0000\u0304\u0305\u0005"+
|
||||
"\'\u0000\u0000\u0305\u030b\u0001\u0000\u0000\u0000\u0306\u0307\u0005\'"+
|
||||
"\u0000\u0000\u0307\u0308\u0003\u00a5R\u0000\u0308\u0309\u0005\'\u0000"+
|
||||
"\u0000\u0309\u030b\u0001\u0000\u0000\u0000\u030a\u0302\u0001\u0000\u0000"+
|
||||
"\u0000\u030a\u0306\u0001\u0000\u0000\u0000\u030b\u009c\u0001\u0000\u0000"+
|
||||
"\u0000\u030c\u030d\u0007\n\u0000\u0000\u030d\u009e\u0001\u0000\u0000\u0000"+
|
||||
"\u030e\u0310\u0005\"\u0000\u0000\u030f\u0311\u0003\u00a1P\u0000\u0310"+
|
||||
"\u030f\u0001\u0000\u0000\u0000\u0310\u0311\u0001\u0000\u0000\u0000\u0311"+
|
||||
"\u0312\u0001\u0000\u0000\u0000\u0312\u0313\u0005\"\u0000\u0000\u0313\u00a0"+
|
||||
"\u0001\u0000\u0000\u0000\u0314\u0316\u0003\u00a3Q\u0000\u0315\u0314\u0001"+
|
||||
"\u0000\u0000\u0000\u0316\u0317\u0001\u0000\u0000\u0000\u0317\u0315\u0001"+
|
||||
"\u0000\u0000\u0000\u0317\u0318\u0001\u0000\u0000\u0000\u0318\u00a2\u0001"+
|
||||
"\u0000\u0000\u0000\u0319\u031c\u0003\u009dN\u0000\u031a\u031c\u0003\u00a5"+
|
||||
"R\u0000\u031b\u0319\u0001\u0000\u0000\u0000\u031b\u031a\u0001\u0000\u0000"+
|
||||
"\u0000\u031c\u00a4\u0001\u0000\u0000\u0000\u031d\u0347\u0005\\\u0000\u0000"+
|
||||
"\u031e\u031f\u0005u\u0000\u0000\u031f\u0320\u00050\u0000\u0000\u0320\u0321"+
|
||||
"\u00050\u0000\u0000\u0321\u0322\u00050\u0000\u0000\u0322\u0348\u00058"+
|
||||
"\u0000\u0000\u0323\u0324\u0005u\u0000\u0000\u0324\u0325\u00050\u0000\u0000"+
|
||||
"\u0325\u0326\u00050\u0000\u0000\u0326\u0327\u00050\u0000\u0000\u0327\u0348"+
|
||||
"\u00059\u0000\u0000\u0328\u0329\u0005u\u0000\u0000\u0329\u032a\u00050"+
|
||||
"\u0000\u0000\u032a\u032b\u00050\u0000\u0000\u032b\u032c\u00050\u0000\u0000"+
|
||||
"\u032c\u0348\u0005a\u0000\u0000\u032d\u032e\u0005u\u0000\u0000\u032e\u032f"+
|
||||
"\u00050\u0000\u0000\u032f\u0330\u00050\u0000\u0000\u0330\u0331\u00050"+
|
||||
"\u0000\u0000\u0331\u0348\u0005c\u0000\u0000\u0332\u0333\u0005u\u0000\u0000"+
|
||||
"\u0333\u0334\u00050\u0000\u0000\u0334\u0335\u00050\u0000\u0000\u0335\u0336"+
|
||||
"\u00050\u0000\u0000\u0336\u0348\u0005d\u0000\u0000\u0337\u0338\u0005u"+
|
||||
"\u0000\u0000\u0338\u0339\u00050\u0000\u0000\u0339\u033a\u00050\u0000\u0000"+
|
||||
"\u033a\u033b\u00052\u0000\u0000\u033b\u0348\u00052\u0000\u0000\u033c\u033d"+
|
||||
"\u0005u\u0000\u0000\u033d\u033e\u00050\u0000\u0000\u033e\u033f\u00050"+
|
||||
"\u0000\u0000\u033f\u0340\u00052\u0000\u0000\u0340\u0348\u00057\u0000\u0000"+
|
||||
"\u0341\u0342\u0005u\u0000\u0000\u0342\u0343\u00050\u0000\u0000\u0343\u0344"+
|
||||
"\u00050\u0000\u0000\u0344\u0345\u00055\u0000\u0000\u0345\u0348\u0005c"+
|
||||
"\u0000\u0000\u0346\u0348\u0003\u00a7S\u0000\u0347\u031e\u0001\u0000\u0000"+
|
||||
"\u0000\u0347\u0323\u0001\u0000\u0000\u0000\u0347\u0328\u0001\u0000\u0000"+
|
||||
"\u0000\u0347\u032d\u0001\u0000\u0000\u0000\u0347\u0332\u0001\u0000\u0000"+
|
||||
"\u0000\u0347\u0337\u0001\u0000\u0000\u0000\u0347\u033c\u0001\u0000\u0000"+
|
||||
"\u0000\u0347\u0341\u0001\u0000\u0000\u0000\u0347\u0346\u0001\u0000\u0000"+
|
||||
"\u0000\u0348\u00a6\u0001\u0000\u0000\u0000\u0349\u034a\u0005\\\u0000\u0000"+
|
||||
"\u034a\u0355\u0003\u00adV\u0000\u034b\u034c\u0005\\\u0000\u0000\u034c"+
|
||||
"\u034d\u0003\u00adV\u0000\u034d\u034e\u0003\u00adV\u0000\u034e\u0355\u0001"+
|
||||
"\u0000\u0000\u0000\u034f\u0350\u0005\\\u0000\u0000\u0350\u0351\u0003\u00af"+
|
||||
"W\u0000\u0351\u0352\u0003\u00adV\u0000\u0352\u0353\u0003\u00adV\u0000"+
|
||||
"\u0353\u0355\u0001\u0000\u0000\u0000\u0354\u0349\u0001\u0000\u0000\u0000"+
|
||||
"\u0354\u034b\u0001\u0000\u0000\u0000\u0354\u034f\u0001\u0000\u0000\u0000"+
|
||||
"\u0355\u00a8\u0001\u0000\u0000\u0000\u0356\u0357\u00050\u0000\u0000\u0357"+
|
||||
"\u0358\u0003\u00abU\u0000\u0358\u00aa\u0001\u0000\u0000\u0000\u0359\u035a"+
|
||||
"\u0003\u00adV\u0000\u035a\u00ac\u0001\u0000\u0000\u0000\u035b\u035c\u0007"+
|
||||
"\u000b\u0000\u0000\u035c\u00ae\u0001\u0000\u0000\u0000\u035d\u035e\u0007"+
|
||||
"\f\u0000\u0000\u035e\u00b0\u0001\u0000\u0000\u0000\u035f\u0360\u0005t"+
|
||||
"\u0000\u0000\u0360\u0361\u0005r\u0000\u0000\u0361\u0362\u0005u\u0000\u0000"+
|
||||
"\u0362\u0369\u0005e\u0000\u0000\u0363\u0364\u0005f\u0000\u0000\u0364\u0365"+
|
||||
"\u0005a\u0000\u0000\u0365\u0366\u0005l\u0000\u0000\u0366\u0367\u0005s"+
|
||||
"\u0000\u0000\u0367\u0369\u0005e\u0000\u0000\u0368\u035f\u0001\u0000\u0000"+
|
||||
"\u0000\u0368\u0363\u0001\u0000\u0000\u0000\u0369\u00b2\u0001\u0000\u0000"+
|
||||
"\u0000\u036a\u036b\u0005n\u0000\u0000\u036b\u036c\u0005u\u0000\u0000\u036c"+
|
||||
"\u036d\u0005l\u0000\u0000\u036d\u036e\u0005l\u0000\u0000\u036e\u00b4\u0001"+
|
||||
"\u0000\u0000\u0000\u036f\u0370\u0005(\u0000\u0000\u0370\u00b6\u0001\u0000"+
|
||||
"\u0000\u0000\u0371\u0372\u0005)\u0000\u0000\u0372\u00b8\u0001\u0000\u0000"+
|
||||
"\u0000\u0373\u0374\u0005{\u0000\u0000\u0374\u00ba\u0001\u0000\u0000\u0000"+
|
||||
"\u0375\u0376\u0005}\u0000\u0000\u0376\u00bc\u0001\u0000\u0000\u0000\u0377"+
|
||||
"\u0378\u0005[\u0000\u0000\u0378\u00be\u0001\u0000\u0000\u0000\u0379\u037a"+
|
||||
"\u0005]\u0000\u0000\u037a\u00c0\u0001\u0000\u0000\u0000\u037b\u037c\u0005"+
|
||||
";\u0000\u0000\u037c\u00c2\u0001\u0000\u0000\u0000\u037d\u037e\u0005,\u0000"+
|
||||
"\u0000\u037e\u00c4\u0001\u0000\u0000\u0000\u037f\u0380\u0005>\u0000\u0000"+
|
||||
"\u0380\u0381\u0005>\u0000\u0000\u0381\u0382\u0005>\u0000\u0000\u0382\u0383"+
|
||||
"\u0005=\u0000\u0000\u0383\u00c6\u0001\u0000\u0000\u0000\u0384\u0385\u0005"+
|
||||
"=\u0000\u0000\u0385\u0386\u0005=\u0000\u0000\u0386\u00c8\u0001\u0000\u0000"+
|
||||
"\u0000\u0387\u0388\u0005!\u0000\u0000\u0388\u0389\u0005=\u0000\u0000\u0389"+
|
||||
"\u00ca\u0001\u0000\u0000\u0000\u038a\u038b\u0005<\u0000\u0000\u038b\u038c"+
|
||||
"\u0005=\u0000\u0000\u038c\u00cc\u0001\u0000\u0000\u0000\u038d\u038e\u0005"+
|
||||
">\u0000\u0000\u038e\u038f\u0005=\u0000\u0000\u038f\u00ce\u0001\u0000\u0000"+
|
||||
"\u0000\u0390\u0391\u0005&\u0000\u0000\u0391\u0392\u0005&\u0000\u0000\u0392"+
|
||||
"\u00d0\u0001\u0000\u0000\u0000\u0393\u0394\u0005|\u0000\u0000\u0394\u0395"+
|
||||
"\u0005|\u0000\u0000\u0395\u00d2\u0001\u0000\u0000\u0000\u0396\u0397\u0005"+
|
||||
"+\u0000\u0000\u0397\u0398\u0005+\u0000\u0000\u0398\u00d4\u0001\u0000\u0000"+
|
||||
"\u0000\u0399\u039a\u0005-\u0000\u0000\u039a\u039b\u0005-\u0000\u0000\u039b"+
|
||||
"\u00d6\u0001\u0000\u0000\u0000\u039c\u039d\u0005<\u0000\u0000\u039d\u039e"+
|
||||
"\u0005<\u0000\u0000\u039e\u00d8\u0001\u0000\u0000\u0000\u039f\u03a0\u0005"+
|
||||
">\u0000\u0000\u03a0\u03a1\u0005>\u0000\u0000\u03a1\u00da\u0001\u0000\u0000"+
|
||||
"\u0000\u03a2\u03a3\u0005>\u0000\u0000\u03a3\u03a4\u0005>\u0000\u0000\u03a4"+
|
||||
"\u03a5\u0005>\u0000\u0000\u03a5\u00dc\u0001\u0000\u0000\u0000\u03a6\u03a7"+
|
||||
"\u0005+\u0000\u0000\u03a7\u03a8\u0005=\u0000\u0000\u03a8\u00de\u0001\u0000"+
|
||||
"\u0000\u0000\u03a9\u03aa\u0005-\u0000\u0000\u03aa\u03ab\u0005=\u0000\u0000"+
|
||||
"\u03ab\u00e0\u0001\u0000\u0000\u0000\u03ac\u03ad\u0005*\u0000\u0000\u03ad"+
|
||||
"\u03ae\u0005=\u0000\u0000\u03ae\u00e2\u0001\u0000\u0000\u0000\u03af\u03b0"+
|
||||
"\u0005/\u0000\u0000\u03b0\u03b1\u0005=\u0000\u0000\u03b1\u00e4\u0001\u0000"+
|
||||
"\u0000\u0000\u03b2\u03b3\u0005&\u0000\u0000\u03b3\u03b4\u0005=\u0000\u0000"+
|
||||
"\u03b4\u00e6\u0001\u0000\u0000\u0000\u03b5\u03b6\u0005|\u0000\u0000\u03b6"+
|
||||
"\u03b7\u0005=\u0000\u0000\u03b7\u00e8\u0001\u0000\u0000\u0000\u03b8\u03b9"+
|
||||
"\u0005^\u0000\u0000\u03b9\u03ba\u0005=\u0000\u0000\u03ba\u00ea\u0001\u0000"+
|
||||
"\u0000\u0000\u03bb\u03bc\u0005%\u0000\u0000\u03bc\u03bd\u0005=\u0000\u0000"+
|
||||
"\u03bd\u00ec\u0001\u0000\u0000\u0000\u03be\u03bf\u0005<\u0000\u0000\u03bf"+
|
||||
"\u03c0\u0005<\u0000\u0000\u03c0\u03c1\u0005=\u0000\u0000\u03c1\u00ee\u0001"+
|
||||
"\u0000\u0000\u0000\u03c2\u03c3\u0005>\u0000\u0000\u03c3\u03c4\u0005>\u0000"+
|
||||
"\u0000\u03c4\u03c5\u0005=\u0000\u0000\u03c5\u00f0\u0001\u0000\u0000\u0000"+
|
||||
"\u03c6\u03c7\u0005=\u0000\u0000\u03c7\u00f2\u0001\u0000\u0000\u0000\u03c8"+
|
||||
"\u03c9\u0005~\u0000\u0000\u03c9\u00f4\u0001\u0000\u0000\u0000\u03ca\u03cb"+
|
||||
"\u0005<\u0000\u0000\u03cb\u00f6\u0001\u0000\u0000\u0000\u03cc\u03cd\u0005"+
|
||||
">\u0000\u0000\u03cd\u00f8\u0001\u0000\u0000\u0000\u03ce\u03cf\u0005!\u0000"+
|
||||
"\u0000\u03cf\u00fa\u0001\u0000\u0000\u0000\u03d0\u03d1\u0005?\u0000\u0000"+
|
||||
"\u03d1\u00fc\u0001\u0000\u0000\u0000\u03d2\u03d3\u0005:\u0000\u0000\u03d3"+
|
||||
"\u00fe\u0001\u0000\u0000\u0000\u03d4\u03d5\u0005+\u0000\u0000\u03d5\u0100"+
|
||||
"\u0001\u0000\u0000\u0000\u03d6\u03d7\u0005-\u0000\u0000\u03d7\u0102\u0001"+
|
||||
"\u0000\u0000\u0000\u03d8\u03d9\u0005*\u0000\u0000\u03d9\u0104\u0001\u0000"+
|
||||
"\u0000\u0000\u03da\u03db\u0005/\u0000\u0000\u03db\u0106\u0001\u0000\u0000"+
|
||||
"\u0000\u03dc\u03dd\u0005&\u0000\u0000\u03dd\u0108\u0001\u0000\u0000\u0000"+
|
||||
"\u03de\u03df\u0005|\u0000\u0000\u03df\u010a\u0001\u0000\u0000\u0000\u03e0"+
|
||||
"\u03e1\u0005^\u0000\u0000\u03e1\u010c\u0001\u0000\u0000\u0000\u03e2\u03e3"+
|
||||
"\u0005%\u0000\u0000\u03e3\u010e\u0001\u0000\u0000\u0000\u03e4\u03e8\u0003"+
|
||||
"\u0111\u0088\u0000\u03e5\u03e7\u0003\u0113\u0089\u0000\u03e6\u03e5\u0001"+
|
||||
"\u0000\u0000\u0000\u03e7\u03ea\u0001\u0000\u0000\u0000\u03e8\u03e6\u0001"+
|
||||
"\u0000\u0000\u0000\u03e8\u03e9\u0001\u0000\u0000\u0000\u03e9\u0110\u0001"+
|
||||
"\u0000\u0000\u0000\u03ea\u03e8\u0001\u0000\u0000\u0000\u03eb\u03ec\u0007"+
|
||||
"\r\u0000\u0000\u03ec\u0112\u0001\u0000\u0000\u0000\u03ed\u03ee\u0007\u000e"+
|
||||
"\u0000\u0000\u03ee\u0114\u0001\u0000\u0000\u0000&\u0000\u0117\u011a\u011e"+
|
||||
"\u0128\u012c\u0130\u013d\u0145\u0149\u014d\u02a2\u02a6\u02aa\u02ae\u02b5"+
|
||||
"\u02b7\u02bf\u02c5\u02cc\u02cf\u02d2\u02d7\u02da\u02df\u02e3\u02e7\u02ef"+
|
||||
"\u02f6\u02fa\u030a\u0310\u0317\u031b\u0347\u0354\u0368\u03e8\u0001\u0006"+
|
||||
"\u0000\u0000";
|
||||
public static final ATN _ATN =
|
||||
new ATNDeserializer().deserialize(_serializedATN.toCharArray());
|
||||
static {
|
||||
_decisionToDFA = new DFA[_ATN.getNumberOfDecisions()];
|
||||
for (int i = 0; i < _ATN.getNumberOfDecisions(); i++) {
|
||||
_decisionToDFA[i] = new DFA(_ATN.getDecisionState(i), i);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,200 +0,0 @@
|
||||
WhiteSpace=1
|
||||
Comment=2
|
||||
Abstract=3
|
||||
Assert=4
|
||||
Boolean=5
|
||||
Break=6
|
||||
Byte=7
|
||||
Case=8
|
||||
Catch=9
|
||||
Char=10
|
||||
Class=11
|
||||
Const=12
|
||||
Continue=13
|
||||
Default=14
|
||||
Do=15
|
||||
Double=16
|
||||
Else=17
|
||||
Extends=18
|
||||
Final=19
|
||||
Finally=20
|
||||
Float=21
|
||||
For=22
|
||||
Goto=23
|
||||
If=24
|
||||
Implements=25
|
||||
Import=26
|
||||
InstanceOf=27
|
||||
Int=28
|
||||
Interface=29
|
||||
Long=30
|
||||
Native=31
|
||||
New=32
|
||||
Package=33
|
||||
Private=34
|
||||
Protected=35
|
||||
Public=36
|
||||
Return=37
|
||||
Short=38
|
||||
Static=39
|
||||
Strictfp=40
|
||||
Super=41
|
||||
Switch=42
|
||||
Synchronized=43
|
||||
This=44
|
||||
Throw=45
|
||||
Throws=46
|
||||
Transient=47
|
||||
Try=48
|
||||
Void=49
|
||||
Volatile=50
|
||||
While=51
|
||||
Dot=52
|
||||
IntegerLiteral=53
|
||||
FloatingPointLiteral=54
|
||||
CharacterLiteral=55
|
||||
StringLiteral=56
|
||||
BooleanLiteral=57
|
||||
NullLiteral=58
|
||||
ParenthesesLeft=59
|
||||
ParenthesesRight=60
|
||||
CurlyBracketLeft=61
|
||||
CurlyBracketRight=62
|
||||
SquareBracketLeft=63
|
||||
SquareBracketRight=64
|
||||
Semicolon=65
|
||||
Comma=66
|
||||
UnsignedRightShiftAssign=67
|
||||
EqualTo=68
|
||||
NotEqualTo=69
|
||||
LessThanEqualTo=70
|
||||
GreaterThanEqualTo=71
|
||||
ConditionalAND=72
|
||||
ConditionalOR=73
|
||||
Increment=74
|
||||
Decrement=75
|
||||
LeftShift=76
|
||||
SignedRightShift=77
|
||||
UnsignedRightShift=78
|
||||
AddAssign=79
|
||||
SubtractAssign=80
|
||||
MultiplyAssign=81
|
||||
DivideAssign=82
|
||||
BitwiseANDAssign=83
|
||||
BitwiseORAssign=84
|
||||
BitwiseXORAssign=85
|
||||
RemainderAssign=86
|
||||
LeftShiftAssign=87
|
||||
SignedRightShiftAssign=88
|
||||
Assignment=89
|
||||
BitwiseComplement=90
|
||||
LessThan=91
|
||||
GreaterThan=92
|
||||
LogicalComplement=93
|
||||
Question=94
|
||||
Colon=95
|
||||
Addition=96
|
||||
Subtraction=97
|
||||
Multiplication=98
|
||||
Division=99
|
||||
BitwiseAND=100
|
||||
BitwiseOR=101
|
||||
BitwiseXOR=102
|
||||
Remainder=103
|
||||
IDENTIFIER=104
|
||||
'abstract'=3
|
||||
'assert'=4
|
||||
'boolean'=5
|
||||
'break'=6
|
||||
'byte'=7
|
||||
'case'=8
|
||||
'catch'=9
|
||||
'char'=10
|
||||
'class'=11
|
||||
'const'=12
|
||||
'continue'=13
|
||||
'default'=14
|
||||
'do'=15
|
||||
'double'=16
|
||||
'else'=17
|
||||
'extends'=18
|
||||
'final'=19
|
||||
'finally'=20
|
||||
'float'=21
|
||||
'for'=22
|
||||
'goto'=23
|
||||
'if'=24
|
||||
'implements'=25
|
||||
'import'=26
|
||||
'instanceof'=27
|
||||
'int'=28
|
||||
'interface'=29
|
||||
'long'=30
|
||||
'native'=31
|
||||
'new'=32
|
||||
'package'=33
|
||||
'private'=34
|
||||
'protected'=35
|
||||
'public'=36
|
||||
'return'=37
|
||||
'short'=38
|
||||
'static'=39
|
||||
'strictfp'=40
|
||||
'super'=41
|
||||
'switch'=42
|
||||
'synchronized'=43
|
||||
'this'=44
|
||||
'throw'=45
|
||||
'throws'=46
|
||||
'transient'=47
|
||||
'try'=48
|
||||
'void'=49
|
||||
'volatile'=50
|
||||
'while'=51
|
||||
'.'=52
|
||||
'null'=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
|
||||
'<<='=87
|
||||
'>>='=88
|
||||
'='=89
|
||||
'~'=90
|
||||
'<'=91
|
||||
'>'=92
|
||||
'!'=93
|
||||
'?'=94
|
||||
':'=95
|
||||
'+'=96
|
||||
'-'=97
|
||||
'*'=98
|
||||
'/'=99
|
||||
'&'=100
|
||||
'|'=101
|
||||
'^'=102
|
||||
'%'=103
|
||||
@@ -1,248 +0,0 @@
|
||||
parser grammar ExprParser;
|
||||
|
||||
options {
|
||||
tokenVocab=ExprLexer;
|
||||
}
|
||||
prog: compilationUnit EOF;
|
||||
identifier: IDENTIFIER;
|
||||
|
||||
qualifiedIdentifier: identifier (Dot identifier)*;
|
||||
|
||||
literal: IntegerLiteral
|
||||
| FloatingPointLiteral
|
||||
| CharacterLiteral
|
||||
| StringLiteral
|
||||
| BooleanLiteral
|
||||
| NullLiteral;
|
||||
//Section 15.26: Assignment Operators
|
||||
expression: unaryExpr assignmentOperator expression | conditionalExpr ;
|
||||
|
||||
//Highest Prescedence _Expr = expression
|
||||
//CI cha 6
|
||||
conditionalExpr: logicalOrExpr Question conditionalExpr Colon conditionalExpr | logicalOrExpr;
|
||||
|
||||
logicalOrExpr: logicalAndExpr (ConditionalOR logicalAndExpr)*;
|
||||
|
||||
logicalAndExpr: equalityExpr (ConditionalAND equalityExpr)*;
|
||||
|
||||
equalityExpr: relationalExpr ((EqualTo | NotEqualTo) relationalExpr)*;
|
||||
|
||||
relationalExpr: additiveExpr((LessThan | GreaterThan | LessThanEqualTo | GreaterThanEqualTo) additiveExpr | InstanceOf type)*;
|
||||
|
||||
additiveExpr: multiplicativeExpr((Addition | Subtraction) multiplicativeExpr)*;
|
||||
multiplicativeExpr: unaryExpr((Multiplication | Division | Remainder) unaryExpr)*;
|
||||
|
||||
unaryExpr:postfixExpr |(Addition | Subtraction | LogicalComplement | BitwiseComplement | Increment | Decrement) unaryExpr | parExpression type unaryExpr;
|
||||
|
||||
postfixExpr: primaryExpr (Increment| Decrement| Dot IDENTIFIER | SquareBracketLeft expression SquareBracketRight | arguments)*;
|
||||
|
||||
primaryExpr: parExpression
|
||||
| IntegerLiteral
|
||||
| FloatingPointLiteral
|
||||
| StringLiteral
|
||||
| CharacterLiteral
|
||||
| BooleanLiteral
|
||||
| NullLiteral
|
||||
| IDENTIFIER
|
||||
| This
|
||||
| Super (Dot IDENTIFIER)?
|
||||
| New type arguments
|
||||
| primitiveType (SquareBracketLeft SquareBracketRight)* Dot Class
|
||||
| type Dot Class;
|
||||
|
||||
|
||||
assignmentOperator: Assignment
|
||||
| AddAssign
|
||||
| SubtractAssign
|
||||
| MultiplyAssign
|
||||
| DivideAssign
|
||||
| BitwiseANDAssign
|
||||
| BitwiseORAssign
|
||||
| BitwiseXORAssign
|
||||
| RemainderAssign
|
||||
| LeftShiftAssign
|
||||
| SignedRightShiftAssign
|
||||
| UnsignedRightShiftAssign;
|
||||
|
||||
type: identifier (Dot identifier)* bracketsOpt | primitiveType;
|
||||
|
||||
statementExpression: expression;
|
||||
|
||||
constantExpression: expression;
|
||||
|
||||
identifierSuffix: SquareBracketLeft SquareBracketRight bracketsOpt Dot Class
|
||||
|SquareBracketLeft expression SquareBracketRight
|
||||
|arguments
|
||||
|Dot (Class | This | Super arguments New innerCreator);
|
||||
|
||||
postfixOp: Increment | Decrement;
|
||||
|
||||
primitiveType: Byte | Short| Char | Int| Long| Float| Double| Boolean;
|
||||
//Method arguments
|
||||
argumentsOpt: (arguments)?;
|
||||
|
||||
arguments: ParenthesesLeft (expression (Comma expression)*)? ParenthesesRight;
|
||||
|
||||
bracketsOpt: (SquareBracketLeft SquareBracketRight)*;
|
||||
|
||||
creator: qualifiedIdentifier ( arrayCreatorRest | classCreatorRest);
|
||||
|
||||
innerCreator: identifier classCreatorRest;
|
||||
|
||||
arrayCreatorRest: SquareBracketLeft SquareBracketRight bracketsOpt arrayInitializer
|
||||
| SquareBracketLeft expression SquareBracketRight (SquareBracketLeft expression SquareBracketRight)*;
|
||||
classCreatorRest: arguments (classBody)?;
|
||||
|
||||
arrayInitializer: CurlyBracketLeft (variableInitializer(Comma variableInitializer)*(Comma)?)? CurlyBracketRight;
|
||||
|
||||
variableInitializer: arrayInitializer
|
||||
|expression;
|
||||
|
||||
parExpression: ParenthesesLeft expression ParenthesesRight;
|
||||
|
||||
block: CurlyBracketLeft blockStatements CurlyBracketRight;
|
||||
|
||||
blockStatements: (blockStatement)*;
|
||||
|
||||
blockStatement: localVariableDeclarationStatement
|
||||
|classOrInterfaceDeclaration
|
||||
|(identifier Colon)? statement;
|
||||
|
||||
localVariableDeclarationStatement: (Final)? type variableDeclarators;
|
||||
|
||||
statement:completeIf | If parExpression statementIncompleteIf;
|
||||
|
||||
statementIncompleteIf: block
|
||||
| If parExpression completeIf Else statementIncompleteIf
|
||||
| For ParenthesesLeft forInit? Semicolon (expression)? Semicolon forUpdate? ParenthesesRight statement
|
||||
| While parExpression statement
|
||||
| Do statement While parExpression Semicolon
|
||||
| Try block catches
|
||||
| Try block Finally block
|
||||
| Try block catches Finally block
|
||||
| switchStatement
|
||||
| Synchronized parExpression block
|
||||
| Return (expression)? Semicolon
|
||||
| Throw expression Semicolon
|
||||
| Break (identifier)? Semicolon
|
||||
| Continue (identifier)? Semicolon
|
||||
| statementExpression Semicolon
|
||||
| Semicolon;
|
||||
//solve ambiguity over If()else. aka (Dangling else).
|
||||
//this will do the longest check by looking for an else section, fincding the closest else!
|
||||
completeIf: If parExpression completeIf Else completeIf | statementIncompleteIf;
|
||||
|
||||
catches: catchClause (catchClause)*;
|
||||
|
||||
catchClause: Catch ParenthesesLeft formalParameter ParenthesesRight block;
|
||||
|
||||
switchStatement: Switch parExpression CurlyBracketLeft CurlyBracketRight
|
||||
| Switch parExpression CurlyBracketLeft switchBlockStatementGroups? CurlyBracketRight;
|
||||
|
||||
switchBlockStatementGroups: (switchBlockStatementGroup)*;
|
||||
|
||||
switchBlockStatementGroup: switchLabel blockStatements;
|
||||
|
||||
switchLabel: Case constantExpression Colon
|
||||
| Default Colon;
|
||||
moreStatementExpressions: (Comma statementExpression)*;
|
||||
|
||||
forInit: statementExpression moreStatementExpressions
|
||||
| (Final)? type variableDeclarators;
|
||||
|
||||
forUpdate: statementExpression moreStatementExpressions;
|
||||
|
||||
modifiersOpt: (modifier)*;
|
||||
|
||||
modifier: Public
|
||||
| Protected
|
||||
| Private
|
||||
| Static
|
||||
| Abstract
|
||||
| Final
|
||||
| Native
|
||||
| Synchronized
|
||||
| Transient
|
||||
| Volatile
|
||||
| Strictfp;
|
||||
|
||||
variableDeclarators: variableDeclarator (Comma variableDeclarator)*;
|
||||
|
||||
variableDeclaratorsRest: variableDeclaratorRest (Comma variableDeclarator)*;
|
||||
|
||||
constantDeclaratorsRest: constantDeclaratorRest (Comma constantDeclarator)*;
|
||||
|
||||
variableDeclarator: identifier variableDeclaratorsRest;
|
||||
|
||||
constantDeclarator: identifier constantDeclaratorRest;
|
||||
|
||||
variableDeclaratorRest: bracketsOpt (Assignment variableInitializer)?;
|
||||
|
||||
constantDeclaratorRest: bracketsOpt Assignment variableInitializer;
|
||||
|
||||
variableDeclaratorId: identifier bracketsOpt;
|
||||
|
||||
compilationUnit: (Package qualifiedIdentifier Semicolon)? (importDeclaration)*(typeDeclaration)*;
|
||||
|
||||
importDeclaration: Import identifier (Dot identifier)* (Dot Multiplication)? Semicolon;
|
||||
|
||||
typeDeclaration: classOrInterfaceDeclaration | Semicolon;
|
||||
|
||||
classOrInterfaceDeclaration: modifiersOpt (classDeclaration | interfaceDeclaration);
|
||||
|
||||
classDeclaration: Class identifier (Extends type)? (Implements typeList)? classBody;
|
||||
|
||||
interfaceDeclaration: Interface identifier (Extends typeList)? interfaceBody;
|
||||
|
||||
typeList: type (Comma type)*;
|
||||
|
||||
classBody: CurlyBracketLeft (classBodyDeclaration)* CurlyBracketRight;
|
||||
|
||||
interfaceBody: CurlyBracketLeft (interfaceBodyDeclaration)* CurlyBracketRight;
|
||||
|
||||
classBodyDeclaration: Semicolon
|
||||
| (Static)? block
|
||||
| modifiersOpt memberDecl;
|
||||
memberDecl: methodOrFieldDecl
|
||||
| Void identifier methodDeclaratorRest
|
||||
| identifier constructorDeclaratorRest
|
||||
| classOrInterfaceDeclaration;
|
||||
|
||||
methodOrFieldDecl: type identifier methodOrFieldRest;
|
||||
|
||||
methodOrFieldRest: variableDeclaratorRest
|
||||
|methodDeclaratorRest;
|
||||
|
||||
interfaceBodyDeclaration: Semicolon
|
||||
| modifiersOpt interfaceMemberDecl;
|
||||
|
||||
interfaceMemberDecl: interfaceMethodOrFieldDecl
|
||||
| Void identifier voidInterfaceMethodDeclaratorRest
|
||||
| classOrInterfaceDeclaration;
|
||||
|
||||
interfaceMethodOrFieldDecl: type identifier interfaceMethodOrFieldRest;
|
||||
|
||||
interfaceMethodOrFieldRest: constantDeclaratorRest Semicolon
|
||||
| interfaceMethodDeclaratorRest;
|
||||
|
||||
methodDeclaratorRest: formalParameters bracketsOpt (Throws qualifiedIdentifierList)?(methodBody | Semicolon);
|
||||
|
||||
voidMethodDeclaratorRest: formalParameters (Throws qualifiedIdentifierList)? (methodBody | Semicolon);
|
||||
|
||||
interfaceMethodDeclaratorRest: formalParameters bracketsOpt (Throws qualifiedIdentifierList)? Semicolon;
|
||||
|
||||
voidInterfaceMethodDeclaratorRest: formalParameters (Throws qualifiedIdentifierList)?;
|
||||
|
||||
constructorDeclaratorRest: formalParameters (Throws qualifiedIdentifierList)? methodBody;
|
||||
|
||||
qualifiedIdentifierList: qualifiedIdentifier (Comma qualifiedIdentifier)*;
|
||||
|
||||
formalParameters: ParenthesesLeft (formalParameter (Comma formalParameter)*)? ParenthesesRight;
|
||||
|
||||
formalParameter: (Final)? type variableDeclaratorId;
|
||||
|
||||
methodBody: block;
|
||||
|
||||
|
||||
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
@@ -1,200 +0,0 @@
|
||||
WhiteSpace=1
|
||||
Comment=2
|
||||
Abstract=3
|
||||
Assert=4
|
||||
Boolean=5
|
||||
Break=6
|
||||
Byte=7
|
||||
Case=8
|
||||
Catch=9
|
||||
Char=10
|
||||
Class=11
|
||||
Const=12
|
||||
Continue=13
|
||||
Default=14
|
||||
Do=15
|
||||
Double=16
|
||||
Else=17
|
||||
Extends=18
|
||||
Final=19
|
||||
Finally=20
|
||||
Float=21
|
||||
For=22
|
||||
Goto=23
|
||||
If=24
|
||||
Implements=25
|
||||
Import=26
|
||||
InstanceOf=27
|
||||
Int=28
|
||||
Interface=29
|
||||
Long=30
|
||||
Native=31
|
||||
New=32
|
||||
Package=33
|
||||
Private=34
|
||||
Protected=35
|
||||
Public=36
|
||||
Return=37
|
||||
Short=38
|
||||
Static=39
|
||||
Strictfp=40
|
||||
Super=41
|
||||
Switch=42
|
||||
Synchronized=43
|
||||
This=44
|
||||
Throw=45
|
||||
Throws=46
|
||||
Transient=47
|
||||
Try=48
|
||||
Void=49
|
||||
Volatile=50
|
||||
While=51
|
||||
Dot=52
|
||||
IntegerLiteral=53
|
||||
FloatingPointLiteral=54
|
||||
CharacterLiteral=55
|
||||
StringLiteral=56
|
||||
BooleanLiteral=57
|
||||
NullLiteral=58
|
||||
ParenthesesLeft=59
|
||||
ParenthesesRight=60
|
||||
CurlyBracketLeft=61
|
||||
CurlyBracketRight=62
|
||||
SquareBracketLeft=63
|
||||
SquareBracketRight=64
|
||||
Semicolon=65
|
||||
Comma=66
|
||||
UnsignedRightShiftAssign=67
|
||||
EqualTo=68
|
||||
NotEqualTo=69
|
||||
LessThanEqualTo=70
|
||||
GreaterThanEqualTo=71
|
||||
ConditionalAND=72
|
||||
ConditionalOR=73
|
||||
Increment=74
|
||||
Decrement=75
|
||||
LeftShift=76
|
||||
SignedRightShift=77
|
||||
UnsignedRightShift=78
|
||||
AddAssign=79
|
||||
SubtractAssign=80
|
||||
MultiplyAssign=81
|
||||
DivideAssign=82
|
||||
BitwiseANDAssign=83
|
||||
BitwiseORAssign=84
|
||||
BitwiseXORAssign=85
|
||||
RemainderAssign=86
|
||||
LeftShiftAssign=87
|
||||
SignedRightShiftAssign=88
|
||||
Assignment=89
|
||||
BitwiseComplement=90
|
||||
LessThan=91
|
||||
GreaterThan=92
|
||||
LogicalComplement=93
|
||||
Question=94
|
||||
Colon=95
|
||||
Addition=96
|
||||
Subtraction=97
|
||||
Multiplication=98
|
||||
Division=99
|
||||
BitwiseAND=100
|
||||
BitwiseOR=101
|
||||
BitwiseXOR=102
|
||||
Remainder=103
|
||||
IDENTIFIER=104
|
||||
'abstract'=3
|
||||
'assert'=4
|
||||
'boolean'=5
|
||||
'break'=6
|
||||
'byte'=7
|
||||
'case'=8
|
||||
'catch'=9
|
||||
'char'=10
|
||||
'class'=11
|
||||
'const'=12
|
||||
'continue'=13
|
||||
'default'=14
|
||||
'do'=15
|
||||
'double'=16
|
||||
'else'=17
|
||||
'extends'=18
|
||||
'final'=19
|
||||
'finally'=20
|
||||
'float'=21
|
||||
'for'=22
|
||||
'goto'=23
|
||||
'if'=24
|
||||
'implements'=25
|
||||
'import'=26
|
||||
'instanceof'=27
|
||||
'int'=28
|
||||
'interface'=29
|
||||
'long'=30
|
||||
'native'=31
|
||||
'new'=32
|
||||
'package'=33
|
||||
'private'=34
|
||||
'protected'=35
|
||||
'public'=36
|
||||
'return'=37
|
||||
'short'=38
|
||||
'static'=39
|
||||
'strictfp'=40
|
||||
'super'=41
|
||||
'switch'=42
|
||||
'synchronized'=43
|
||||
'this'=44
|
||||
'throw'=45
|
||||
'throws'=46
|
||||
'transient'=47
|
||||
'try'=48
|
||||
'void'=49
|
||||
'volatile'=50
|
||||
'while'=51
|
||||
'.'=52
|
||||
'null'=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
|
||||
'<<='=87
|
||||
'>>='=88
|
||||
'='=89
|
||||
'~'=90
|
||||
'<'=91
|
||||
'>'=92
|
||||
'!'=93
|
||||
'?'=94
|
||||
':'=95
|
||||
'+'=96
|
||||
'-'=97
|
||||
'*'=98
|
||||
'/'=99
|
||||
'&'=100
|
||||
'|'=101
|
||||
'^'=102
|
||||
'%'=103
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,849 +0,0 @@
|
||||
// Generated from ExprParser.g4 by ANTLR 4.13.2
|
||||
import org.antlr.v4.runtime.tree.ParseTreeListener;
|
||||
|
||||
/**
|
||||
* This interface defines a complete listener for a parse tree produced by
|
||||
* {@link ExprParser}.
|
||||
*/
|
||||
public interface ExprParserListener extends ParseTreeListener {
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#prog}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterProg(ExprParser.ProgContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#prog}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitProg(ExprParser.ProgContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#identifier}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterIdentifier(ExprParser.IdentifierContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#identifier}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitIdentifier(ExprParser.IdentifierContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#qualifiedIdentifier}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterQualifiedIdentifier(ExprParser.QualifiedIdentifierContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#qualifiedIdentifier}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitQualifiedIdentifier(ExprParser.QualifiedIdentifierContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#literal}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterLiteral(ExprParser.LiteralContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#literal}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitLiteral(ExprParser.LiteralContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#expression}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterExpression(ExprParser.ExpressionContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#expression}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitExpression(ExprParser.ExpressionContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#conditionalExpr}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterConditionalExpr(ExprParser.ConditionalExprContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#conditionalExpr}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitConditionalExpr(ExprParser.ConditionalExprContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#logicalOrExpr}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterLogicalOrExpr(ExprParser.LogicalOrExprContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#logicalOrExpr}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitLogicalOrExpr(ExprParser.LogicalOrExprContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#logicalAndExpr}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterLogicalAndExpr(ExprParser.LogicalAndExprContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#logicalAndExpr}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitLogicalAndExpr(ExprParser.LogicalAndExprContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#equalityExpr}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterEqualityExpr(ExprParser.EqualityExprContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#equalityExpr}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitEqualityExpr(ExprParser.EqualityExprContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#relationalExpr}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterRelationalExpr(ExprParser.RelationalExprContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#relationalExpr}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitRelationalExpr(ExprParser.RelationalExprContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#additiveExpr}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterAdditiveExpr(ExprParser.AdditiveExprContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#additiveExpr}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitAdditiveExpr(ExprParser.AdditiveExprContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#multiplicativeExpr}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterMultiplicativeExpr(ExprParser.MultiplicativeExprContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#multiplicativeExpr}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitMultiplicativeExpr(ExprParser.MultiplicativeExprContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#unaryExpr}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterUnaryExpr(ExprParser.UnaryExprContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#unaryExpr}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitUnaryExpr(ExprParser.UnaryExprContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#postfixExpr}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterPostfixExpr(ExprParser.PostfixExprContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#postfixExpr}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitPostfixExpr(ExprParser.PostfixExprContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#primaryExpr}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterPrimaryExpr(ExprParser.PrimaryExprContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#primaryExpr}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitPrimaryExpr(ExprParser.PrimaryExprContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#assignmentOperator}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterAssignmentOperator(ExprParser.AssignmentOperatorContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#assignmentOperator}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitAssignmentOperator(ExprParser.AssignmentOperatorContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#type}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterType(ExprParser.TypeContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#type}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitType(ExprParser.TypeContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#statementExpression}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterStatementExpression(ExprParser.StatementExpressionContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#statementExpression}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitStatementExpression(ExprParser.StatementExpressionContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#constantExpression}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterConstantExpression(ExprParser.ConstantExpressionContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#constantExpression}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitConstantExpression(ExprParser.ConstantExpressionContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#identifierSuffix}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterIdentifierSuffix(ExprParser.IdentifierSuffixContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#identifierSuffix}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitIdentifierSuffix(ExprParser.IdentifierSuffixContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#postfixOp}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterPostfixOp(ExprParser.PostfixOpContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#postfixOp}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitPostfixOp(ExprParser.PostfixOpContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#primitiveType}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterPrimitiveType(ExprParser.PrimitiveTypeContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#primitiveType}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitPrimitiveType(ExprParser.PrimitiveTypeContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#argumentsOpt}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterArgumentsOpt(ExprParser.ArgumentsOptContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#argumentsOpt}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitArgumentsOpt(ExprParser.ArgumentsOptContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#arguments}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterArguments(ExprParser.ArgumentsContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#arguments}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitArguments(ExprParser.ArgumentsContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#bracketsOpt}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterBracketsOpt(ExprParser.BracketsOptContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#bracketsOpt}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitBracketsOpt(ExprParser.BracketsOptContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#creator}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterCreator(ExprParser.CreatorContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#creator}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitCreator(ExprParser.CreatorContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#innerCreator}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterInnerCreator(ExprParser.InnerCreatorContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#innerCreator}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitInnerCreator(ExprParser.InnerCreatorContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#arrayCreatorRest}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterArrayCreatorRest(ExprParser.ArrayCreatorRestContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#arrayCreatorRest}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitArrayCreatorRest(ExprParser.ArrayCreatorRestContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#classCreatorRest}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterClassCreatorRest(ExprParser.ClassCreatorRestContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#classCreatorRest}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitClassCreatorRest(ExprParser.ClassCreatorRestContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#arrayInitializer}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterArrayInitializer(ExprParser.ArrayInitializerContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#arrayInitializer}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitArrayInitializer(ExprParser.ArrayInitializerContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#variableInitializer}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterVariableInitializer(ExprParser.VariableInitializerContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#variableInitializer}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitVariableInitializer(ExprParser.VariableInitializerContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#parExpression}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterParExpression(ExprParser.ParExpressionContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#parExpression}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitParExpression(ExprParser.ParExpressionContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#block}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterBlock(ExprParser.BlockContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#block}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitBlock(ExprParser.BlockContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#blockStatements}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterBlockStatements(ExprParser.BlockStatementsContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#blockStatements}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitBlockStatements(ExprParser.BlockStatementsContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#blockStatement}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterBlockStatement(ExprParser.BlockStatementContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#blockStatement}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitBlockStatement(ExprParser.BlockStatementContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#localVariableDeclarationStatement}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterLocalVariableDeclarationStatement(ExprParser.LocalVariableDeclarationStatementContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#localVariableDeclarationStatement}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitLocalVariableDeclarationStatement(ExprParser.LocalVariableDeclarationStatementContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#statement}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterStatement(ExprParser.StatementContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#statement}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitStatement(ExprParser.StatementContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#statementIncompleteIf}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterStatementIncompleteIf(ExprParser.StatementIncompleteIfContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#statementIncompleteIf}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitStatementIncompleteIf(ExprParser.StatementIncompleteIfContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#completeIf}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterCompleteIf(ExprParser.CompleteIfContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#completeIf}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitCompleteIf(ExprParser.CompleteIfContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#catches}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterCatches(ExprParser.CatchesContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#catches}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitCatches(ExprParser.CatchesContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#catchClause}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterCatchClause(ExprParser.CatchClauseContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#catchClause}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitCatchClause(ExprParser.CatchClauseContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#switchStatement}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterSwitchStatement(ExprParser.SwitchStatementContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#switchStatement}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitSwitchStatement(ExprParser.SwitchStatementContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#switchBlockStatementGroups}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterSwitchBlockStatementGroups(ExprParser.SwitchBlockStatementGroupsContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#switchBlockStatementGroups}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitSwitchBlockStatementGroups(ExprParser.SwitchBlockStatementGroupsContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#switchBlockStatementGroup}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterSwitchBlockStatementGroup(ExprParser.SwitchBlockStatementGroupContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#switchBlockStatementGroup}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitSwitchBlockStatementGroup(ExprParser.SwitchBlockStatementGroupContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#switchLabel}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterSwitchLabel(ExprParser.SwitchLabelContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#switchLabel}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitSwitchLabel(ExprParser.SwitchLabelContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#moreStatementExpressions}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterMoreStatementExpressions(ExprParser.MoreStatementExpressionsContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#moreStatementExpressions}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitMoreStatementExpressions(ExprParser.MoreStatementExpressionsContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#forInit}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterForInit(ExprParser.ForInitContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#forInit}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitForInit(ExprParser.ForInitContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#forUpdate}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterForUpdate(ExprParser.ForUpdateContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#forUpdate}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitForUpdate(ExprParser.ForUpdateContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#modifiersOpt}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterModifiersOpt(ExprParser.ModifiersOptContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#modifiersOpt}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitModifiersOpt(ExprParser.ModifiersOptContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#modifier}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterModifier(ExprParser.ModifierContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#modifier}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitModifier(ExprParser.ModifierContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#variableDeclarators}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterVariableDeclarators(ExprParser.VariableDeclaratorsContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#variableDeclarators}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitVariableDeclarators(ExprParser.VariableDeclaratorsContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#variableDeclaratorsRest}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterVariableDeclaratorsRest(ExprParser.VariableDeclaratorsRestContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#variableDeclaratorsRest}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitVariableDeclaratorsRest(ExprParser.VariableDeclaratorsRestContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#constantDeclaratorsRest}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterConstantDeclaratorsRest(ExprParser.ConstantDeclaratorsRestContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#constantDeclaratorsRest}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitConstantDeclaratorsRest(ExprParser.ConstantDeclaratorsRestContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#variableDeclarator}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterVariableDeclarator(ExprParser.VariableDeclaratorContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#variableDeclarator}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitVariableDeclarator(ExprParser.VariableDeclaratorContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#constantDeclarator}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterConstantDeclarator(ExprParser.ConstantDeclaratorContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#constantDeclarator}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitConstantDeclarator(ExprParser.ConstantDeclaratorContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#variableDeclaratorRest}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterVariableDeclaratorRest(ExprParser.VariableDeclaratorRestContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#variableDeclaratorRest}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitVariableDeclaratorRest(ExprParser.VariableDeclaratorRestContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#constantDeclaratorRest}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterConstantDeclaratorRest(ExprParser.ConstantDeclaratorRestContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#constantDeclaratorRest}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitConstantDeclaratorRest(ExprParser.ConstantDeclaratorRestContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#variableDeclaratorId}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterVariableDeclaratorId(ExprParser.VariableDeclaratorIdContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#variableDeclaratorId}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitVariableDeclaratorId(ExprParser.VariableDeclaratorIdContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#compilationUnit}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterCompilationUnit(ExprParser.CompilationUnitContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#compilationUnit}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitCompilationUnit(ExprParser.CompilationUnitContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#importDeclaration}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterImportDeclaration(ExprParser.ImportDeclarationContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#importDeclaration}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitImportDeclaration(ExprParser.ImportDeclarationContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#typeDeclaration}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterTypeDeclaration(ExprParser.TypeDeclarationContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#typeDeclaration}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitTypeDeclaration(ExprParser.TypeDeclarationContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#classOrInterfaceDeclaration}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterClassOrInterfaceDeclaration(ExprParser.ClassOrInterfaceDeclarationContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#classOrInterfaceDeclaration}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitClassOrInterfaceDeclaration(ExprParser.ClassOrInterfaceDeclarationContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#classDeclaration}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterClassDeclaration(ExprParser.ClassDeclarationContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#classDeclaration}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitClassDeclaration(ExprParser.ClassDeclarationContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#interfaceDeclaration}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterInterfaceDeclaration(ExprParser.InterfaceDeclarationContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#interfaceDeclaration}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitInterfaceDeclaration(ExprParser.InterfaceDeclarationContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#typeList}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterTypeList(ExprParser.TypeListContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#typeList}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitTypeList(ExprParser.TypeListContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#classBody}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterClassBody(ExprParser.ClassBodyContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#classBody}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitClassBody(ExprParser.ClassBodyContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#interfaceBody}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterInterfaceBody(ExprParser.InterfaceBodyContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#interfaceBody}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitInterfaceBody(ExprParser.InterfaceBodyContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#classBodyDeclaration}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterClassBodyDeclaration(ExprParser.ClassBodyDeclarationContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#classBodyDeclaration}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitClassBodyDeclaration(ExprParser.ClassBodyDeclarationContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#memberDecl}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterMemberDecl(ExprParser.MemberDeclContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#memberDecl}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitMemberDecl(ExprParser.MemberDeclContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#methodOrFieldDecl}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterMethodOrFieldDecl(ExprParser.MethodOrFieldDeclContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#methodOrFieldDecl}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitMethodOrFieldDecl(ExprParser.MethodOrFieldDeclContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#methodOrFieldRest}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterMethodOrFieldRest(ExprParser.MethodOrFieldRestContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#methodOrFieldRest}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitMethodOrFieldRest(ExprParser.MethodOrFieldRestContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#interfaceBodyDeclaration}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterInterfaceBodyDeclaration(ExprParser.InterfaceBodyDeclarationContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#interfaceBodyDeclaration}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitInterfaceBodyDeclaration(ExprParser.InterfaceBodyDeclarationContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#interfaceMemberDecl}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterInterfaceMemberDecl(ExprParser.InterfaceMemberDeclContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#interfaceMemberDecl}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitInterfaceMemberDecl(ExprParser.InterfaceMemberDeclContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#interfaceMethodOrFieldDecl}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterInterfaceMethodOrFieldDecl(ExprParser.InterfaceMethodOrFieldDeclContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#interfaceMethodOrFieldDecl}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitInterfaceMethodOrFieldDecl(ExprParser.InterfaceMethodOrFieldDeclContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#interfaceMethodOrFieldRest}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterInterfaceMethodOrFieldRest(ExprParser.InterfaceMethodOrFieldRestContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#interfaceMethodOrFieldRest}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitInterfaceMethodOrFieldRest(ExprParser.InterfaceMethodOrFieldRestContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#methodDeclaratorRest}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterMethodDeclaratorRest(ExprParser.MethodDeclaratorRestContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#methodDeclaratorRest}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitMethodDeclaratorRest(ExprParser.MethodDeclaratorRestContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#voidMethodDeclaratorRest}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterVoidMethodDeclaratorRest(ExprParser.VoidMethodDeclaratorRestContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#voidMethodDeclaratorRest}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitVoidMethodDeclaratorRest(ExprParser.VoidMethodDeclaratorRestContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#interfaceMethodDeclaratorRest}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterInterfaceMethodDeclaratorRest(ExprParser.InterfaceMethodDeclaratorRestContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#interfaceMethodDeclaratorRest}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitInterfaceMethodDeclaratorRest(ExprParser.InterfaceMethodDeclaratorRestContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#voidInterfaceMethodDeclaratorRest}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterVoidInterfaceMethodDeclaratorRest(ExprParser.VoidInterfaceMethodDeclaratorRestContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#voidInterfaceMethodDeclaratorRest}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitVoidInterfaceMethodDeclaratorRest(ExprParser.VoidInterfaceMethodDeclaratorRestContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#constructorDeclaratorRest}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterConstructorDeclaratorRest(ExprParser.ConstructorDeclaratorRestContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#constructorDeclaratorRest}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitConstructorDeclaratorRest(ExprParser.ConstructorDeclaratorRestContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#qualifiedIdentifierList}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterQualifiedIdentifierList(ExprParser.QualifiedIdentifierListContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#qualifiedIdentifierList}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitQualifiedIdentifierList(ExprParser.QualifiedIdentifierListContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#formalParameters}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterFormalParameters(ExprParser.FormalParametersContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#formalParameters}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitFormalParameters(ExprParser.FormalParametersContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#formalParameter}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterFormalParameter(ExprParser.FormalParameterContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#formalParameter}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitFormalParameter(ExprParser.FormalParameterContext ctx);
|
||||
/**
|
||||
* Enter a parse tree produced by {@link ExprParser#methodBody}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void enterMethodBody(ExprParser.MethodBodyContext ctx);
|
||||
/**
|
||||
* Exit a parse tree produced by {@link ExprParser#methodBody}.
|
||||
* @param ctx the parse tree
|
||||
*/
|
||||
void exitMethodBody(ExprParser.MethodBodyContext ctx);
|
||||
}
|
||||
@@ -1,92 +0,0 @@
|
||||
import java.io.IOException;
|
||||
import java.nio.file.Files;
|
||||
import java.nio.file.Paths;
|
||||
import java.util.Scanner;
|
||||
|
||||
import org.antlr.v4.runtime.*;
|
||||
import org.antlr.v4.runtime.tree.*;
|
||||
import org.antlr.v4.runtime.misc.ParseCancellationException;
|
||||
|
||||
public class ExprTool {
|
||||
public static void main(String[] args) throws Exception {
|
||||
if (args.length == 0) {
|
||||
// If no files given then read from stdin
|
||||
Scanner scanner = new Scanner(System.in);
|
||||
StringBuilder inputBuilder = new StringBuilder();
|
||||
while (scanner.hasNextLine()) {
|
||||
inputBuilder.append(scanner.nextLine()).append("\n");
|
||||
}
|
||||
scanner.close();
|
||||
|
||||
parseAndWalk(inputBuilder.toString(), "<stdin>");
|
||||
} else {
|
||||
// for Loop through all given file paths
|
||||
for (String filePath : args) {
|
||||
try {
|
||||
String inputText = new String(Files.readAllBytes(Paths.get(filePath)));
|
||||
parseAndWalk(inputText, filePath);
|
||||
} catch (IOException e) {
|
||||
System.err.println("Error reading file: " + filePath);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
private static void parseAndWalk(String inputText, String sourceName) {
|
||||
try {
|
||||
// Create char stream
|
||||
CharStream input = CharStreams.fromString(inputText, sourceName);
|
||||
ExprLexer lexer = new ExprLexer(input);
|
||||
lexer.removeErrorListeners();
|
||||
lexer.addErrorListener(new ThrowingErrorListener());
|
||||
CommonTokenStream tokens = new CommonTokenStream(lexer);
|
||||
ExprParser parser = new ExprParser(tokens);
|
||||
parser.removeErrorListeners();
|
||||
parser.addErrorListener(new ThrowingErrorListener());
|
||||
ParseTree tree = parser.compilationUnit();
|
||||
ParseTreeWalker walker = new ParseTreeWalker();
|
||||
walker.walk(new ClassPrinter(sourceName), tree);
|
||||
|
||||
} catch (RuntimeException e) {
|
||||
System.err.println("Parsing File Failed: " + e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
public static class ClassPrinter extends ExprParserBaseListener {
|
||||
private final String sourceName;
|
||||
|
||||
public ClassPrinter(String sourceName) {
|
||||
this.sourceName = sourceName;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void enterClassDeclaration(ExprParser.ClassDeclarationContext ctx) {
|
||||
int line = ctx.getStart().getLine();
|
||||
int col = ctx.getStart().getCharPositionInLine();
|
||||
String className = ctx.identifier().getText();
|
||||
System.out.printf("Class %s, file %s, line %d, column %d%n",
|
||||
className, sourceName, line, col);
|
||||
}
|
||||
}
|
||||
|
||||
// Custom error listener
|
||||
public static class ThrowingErrorListener extends BaseErrorListener {
|
||||
@Override
|
||||
public void syntaxError(Recognizer<?, ?> recognizer,
|
||||
Object offendingSymbol,
|
||||
int line, int charPositionInLine,
|
||||
String msg,
|
||||
RecognitionException e) {
|
||||
String sourceName = recognizer.getInputStream().getSourceName();
|
||||
if (sourceName == null || sourceName.isEmpty()) {
|
||||
sourceName = "<unknown>";
|
||||
}
|
||||
|
||||
String formatted = String.format(
|
||||
" file %s, line %d, column %d, error-msg: %s",
|
||||
sourceName, line, charPositionInLine, msg
|
||||
);
|
||||
|
||||
throw new ParseCancellationException(formatted);
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -1,45 +0,0 @@
|
||||
package Test
|
||||
|
||||
abstract class TaxCalculator {
|
||||
protected double income
|
||||
|
||||
public TaxCalculator(double income {
|
||||
this.income = income
|
||||
}
|
||||
public abstract double calculateTax()
|
||||
|
||||
public double afterTaxIncome() {
|
||||
return income - calculateTax()
|
||||
|
||||
}
|
||||
class FlatTaxCalculator extends TaxCalculator {
|
||||
private static final double RATE = 0.15
|
||||
public FlatTaxCalculator(double income) super(income)
|
||||
public double calculateTax() {
|
||||
return income * RATE
|
||||
}
|
||||
|
||||
public class TaxApp {
|
||||
static class BracketTaxCalculator extends TaxCalculator {
|
||||
public BracketTaxCalculator(double income)
|
||||
super(income)
|
||||
|
||||
public double calculateTax() {
|
||||
if (income <= 10000) return income * 0.10
|
||||
else if (income <= 50000) return (10000 * 0.10) + ((income - 10000) * 0.20)
|
||||
else return (10000 * 0.10) + (40000 * 0.20) + ((income - 50000) * 0.30)
|
||||
}
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
double income = 60000
|
||||
|
||||
TaxCalculator flat = new FlatTaxCalculator(income)
|
||||
double flatTax = flat.calculateTax()
|
||||
double flatAfterTax = flat.afterTaxIncome()
|
||||
|
||||
TaxCalculator bracket = new BracketTaxCalculator(income)
|
||||
double bracketTax = bracket.calculateTax()
|
||||
double bracketAfterTax = bracket.afterTaxIncome()
|
||||
}
|
||||
}
|
||||
@@ -1,44 +0,0 @@
|
||||
package Test;
|
||||
abstract class TaxCalculator {
|
||||
protected double income;
|
||||
|
||||
public TaxCalculator(double income) {
|
||||
this.income = income;
|
||||
}
|
||||
public abstract double calculateTax();
|
||||
public double afterTaxIncome() {
|
||||
return income - calculateTax();
|
||||
}
|
||||
}
|
||||
class FlatTaxCalculator extends TaxCalculator {
|
||||
private static final double RATE = 0.15;
|
||||
public FlatTaxCalculator(double income) {super(income);}
|
||||
public double calculateTax() {
|
||||
return income * RATE;
|
||||
}
|
||||
}
|
||||
|
||||
public class TaxApp {
|
||||
static class BracketTaxCalculator extends TaxCalculator {
|
||||
public BracketTaxCalculator(double income) {
|
||||
super(income);
|
||||
}
|
||||
public double calculateTax() {
|
||||
if (income <= 10000) {return income * 0.10;}
|
||||
else if (income <= 50000) { return (10000 * 0.10) + ((income - 10000) * 0.20);}
|
||||
else { return (10000 * 0.10) + (40000 * 0.20) + ((income - 50000) * 0.30);}
|
||||
}
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
double income = 60000;
|
||||
|
||||
TaxCalculator flat = new FlatTaxCalculator(income);
|
||||
double flatTax = flat.calculateTax();
|
||||
double flatAfterTax = flat.afterTaxIncome();
|
||||
|
||||
TaxCalculator bracket = new BracketTaxCalculator(income);
|
||||
double bracketTax = bracket.calculateTax();
|
||||
double bracketAfterTax = bracket.afterTaxIncome();
|
||||
}
|
||||
}
|
||||
BIN
Assignment-2/.DS_Store
vendored
BIN
Assignment-2/.DS_Store
vendored
Binary file not shown.
3
Assignment-2/.vscode/settings.json
vendored
3
Assignment-2/.vscode/settings.json
vendored
@@ -1,3 +0,0 @@
|
||||
{
|
||||
"editor.fontSize": 12
|
||||
}
|
||||
Binary file not shown.
File diff suppressed because one or more lines are too long
@@ -1,992 +0,0 @@
|
||||
// Generated from /Users/mannpatel/Desktop/University/25-Fall/CPSC499/CPSC-499 Assignment/Assignment-2/Java-8/Java8Lexer.g4 by ANTLR 4.13.1
|
||||
import org.antlr.v4.runtime.Lexer;
|
||||
import org.antlr.v4.runtime.CharStream;
|
||||
import org.antlr.v4.runtime.Token;
|
||||
import org.antlr.v4.runtime.TokenStream;
|
||||
import org.antlr.v4.runtime.*;
|
||||
import org.antlr.v4.runtime.atn.*;
|
||||
import org.antlr.v4.runtime.dfa.DFA;
|
||||
import org.antlr.v4.runtime.misc.*;
|
||||
|
||||
@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast", "CheckReturnValue", "this-escape"})
|
||||
public class Java8Lexer extends Lexer {
|
||||
static { RuntimeMetaData.checkVersion("4.13.1", RuntimeMetaData.VERSION); }
|
||||
|
||||
protected static final DFA[] _decisionToDFA;
|
||||
protected static final PredictionContextCache _sharedContextCache =
|
||||
new PredictionContextCache();
|
||||
public static final int
|
||||
ABSTRACT=1, ASSERT=2, BOOLEAN=3, BREAK=4, BYTE=5, CASE=6, CATCH=7, CHAR=8,
|
||||
CLASS=9, CONST=10, CONTINUE=11, DEFAULT=12, DO=13, DOUBLE=14, ELSE=15,
|
||||
ENUM=16, EXTENDS=17, FINAL=18, FINALLY=19, FLOAT=20, FOR=21, IF=22, GOTO=23,
|
||||
IMPLEMENTS=24, IMPORT=25, INSTANCEOF=26, INT=27, INTERFACE=28, LONG=29,
|
||||
NATIVE=30, NEW=31, PACKAGE=32, PRIVATE=33, PROTECTED=34, PUBLIC=35, RETURN=36,
|
||||
SHORT=37, STATIC=38, STRICTFP=39, SUPER=40, SWITCH=41, SYNCHRONIZED=42,
|
||||
THIS=43, THROW=44, THROWS=45, TRANSIENT=46, TRY=47, VOID=48, VOLATILE=49,
|
||||
WHILE=50, IntegerLiteral=51, FloatingPointLiteral=52, BooleanLiteral=53,
|
||||
CharacterLiteral=54, StringLiteral=55, NullLiteral=56, LPAREN=57, RPAREN=58,
|
||||
LBRACE=59, RBRACE=60, LBRACK=61, RBRACK=62, SEMI=63, COMMA=64, DOT=65,
|
||||
ASSIGN=66, GT=67, LT=68, BANG=69, TILDE=70, QUESTION=71, COLON=72, EQUAL=73,
|
||||
LE=74, GE=75, NOTEQUAL=76, AND=77, OR=78, INC=79, DEC=80, ADD=81, SUB=82,
|
||||
MUL=83, DIV=84, BITAND=85, BITOR=86, CARET=87, MOD=88, ARROW=89, COLONCOLON=90,
|
||||
ADD_ASSIGN=91, SUB_ASSIGN=92, MUL_ASSIGN=93, DIV_ASSIGN=94, AND_ASSIGN=95,
|
||||
OR_ASSIGN=96, XOR_ASSIGN=97, MOD_ASSIGN=98, LSHIFT_ASSIGN=99, RSHIFT_ASSIGN=100,
|
||||
URSHIFT_ASSIGN=101, Identifier=102, AT=103, ELLIPSIS=104, WS=105, COMMENT=106,
|
||||
LINE_COMMENT=107;
|
||||
public static String[] channelNames = {
|
||||
"DEFAULT_TOKEN_CHANNEL", "HIDDEN"
|
||||
};
|
||||
|
||||
public static String[] modeNames = {
|
||||
"DEFAULT_MODE"
|
||||
};
|
||||
|
||||
private static String[] makeRuleNames() {
|
||||
return new String[] {
|
||||
"ABSTRACT", "ASSERT", "BOOLEAN", "BREAK", "BYTE", "CASE", "CATCH", "CHAR",
|
||||
"CLASS", "CONST", "CONTINUE", "DEFAULT", "DO", "DOUBLE", "ELSE", "ENUM",
|
||||
"EXTENDS", "FINAL", "FINALLY", "FLOAT", "FOR", "IF", "GOTO", "IMPLEMENTS",
|
||||
"IMPORT", "INSTANCEOF", "INT", "INTERFACE", "LONG", "NATIVE", "NEW",
|
||||
"PACKAGE", "PRIVATE", "PROTECTED", "PUBLIC", "RETURN", "SHORT", "STATIC",
|
||||
"STRICTFP", "SUPER", "SWITCH", "SYNCHRONIZED", "THIS", "THROW", "THROWS",
|
||||
"TRANSIENT", "TRY", "VOID", "VOLATILE", "WHILE", "IntegerLiteral", "DecimalIntegerLiteral",
|
||||
"HexIntegerLiteral", "OctalIntegerLiteral", "BinaryIntegerLiteral", "IntegerTypeSuffix",
|
||||
"DecimalNumeral", "Digits", "Digit", "NonZeroDigit", "DigitsAndUnderscores",
|
||||
"DigitOrUnderscore", "Underscores", "HexNumeral", "HexDigits", "HexDigit",
|
||||
"HexDigitsAndUnderscores", "HexDigitOrUnderscore", "OctalNumeral", "OctalDigits",
|
||||
"OctalDigit", "OctalDigitsAndUnderscores", "OctalDigitOrUnderscore",
|
||||
"BinaryNumeral", "BinaryDigits", "BinaryDigit", "BinaryDigitsAndUnderscores",
|
||||
"BinaryDigitOrUnderscore", "FloatingPointLiteral", "DecimalFloatingPointLiteral",
|
||||
"ExponentPart", "ExponentIndicator", "SignedInteger", "Sign", "FloatTypeSuffix",
|
||||
"HexadecimalFloatingPointLiteral", "HexSignificand", "BinaryExponent",
|
||||
"BinaryExponentIndicator", "BooleanLiteral", "CharacterLiteral", "SingleCharacter",
|
||||
"StringLiteral", "StringCharacters", "StringCharacter", "EscapeSequence",
|
||||
"OctalEscape", "ZeroToThree", "UnicodeEscape", "NullLiteral", "LPAREN",
|
||||
"RPAREN", "LBRACE", "RBRACE", "LBRACK", "RBRACK", "SEMI", "COMMA", "DOT",
|
||||
"ASSIGN", "GT", "LT", "BANG", "TILDE", "QUESTION", "COLON", "EQUAL",
|
||||
"LE", "GE", "NOTEQUAL", "AND", "OR", "INC", "DEC", "ADD", "SUB", "MUL",
|
||||
"DIV", "BITAND", "BITOR", "CARET", "MOD", "ARROW", "COLONCOLON", "ADD_ASSIGN",
|
||||
"SUB_ASSIGN", "MUL_ASSIGN", "DIV_ASSIGN", "AND_ASSIGN", "OR_ASSIGN",
|
||||
"XOR_ASSIGN", "MOD_ASSIGN", "LSHIFT_ASSIGN", "RSHIFT_ASSIGN", "URSHIFT_ASSIGN",
|
||||
"Identifier", "IdentifierStart", "IdentifierPart", "AT", "ELLIPSIS",
|
||||
"WS", "COMMENT", "LINE_COMMENT"
|
||||
};
|
||||
}
|
||||
public static final String[] ruleNames = makeRuleNames();
|
||||
|
||||
private static String[] makeLiteralNames() {
|
||||
return new String[] {
|
||||
null, "'abstract'", "'assert'", "'boolean'", "'break'", "'byte'", "'case'",
|
||||
"'catch'", "'char'", "'class'", "'const'", "'continue'", "'default'",
|
||||
"'do'", "'double'", "'else'", "'enum'", "'extends'", "'final'", "'finally'",
|
||||
"'float'", "'for'", "'if'", "'goto'", "'implements'", "'import'", "'instanceof'",
|
||||
"'int'", "'interface'", "'long'", "'native'", "'new'", "'package'", "'private'",
|
||||
"'protected'", "'public'", "'return'", "'short'", "'static'", "'strictfp'",
|
||||
"'super'", "'switch'", "'synchronized'", "'this'", "'throw'", "'throws'",
|
||||
"'transient'", "'try'", "'void'", "'volatile'", "'while'", null, null,
|
||||
null, null, null, "'null'", "'('", "')'", "'{'", "'}'", "'['", "']'",
|
||||
"';'", "','", "'.'", "'='", "'>'", "'<'", "'!'", "'~'", "'?'", "':'",
|
||||
"'=='", "'<='", "'>='", "'!='", "'&&'", "'||'", "'++'", "'--'", "'+'",
|
||||
"'-'", "'*'", "'/'", "'&'", "'|'", "'^'", "'%'", "'->'", "'::'", "'+='",
|
||||
"'-='", "'*='", "'/='", "'&='", "'|='", "'^='", "'%='", "'<<='", "'>>='",
|
||||
"'>>>='", null, "'@'", "'...'"
|
||||
};
|
||||
}
|
||||
private static final String[] _LITERAL_NAMES = makeLiteralNames();
|
||||
private static String[] makeSymbolicNames() {
|
||||
return new String[] {
|
||||
null, "ABSTRACT", "ASSERT", "BOOLEAN", "BREAK", "BYTE", "CASE", "CATCH",
|
||||
"CHAR", "CLASS", "CONST", "CONTINUE", "DEFAULT", "DO", "DOUBLE", "ELSE",
|
||||
"ENUM", "EXTENDS", "FINAL", "FINALLY", "FLOAT", "FOR", "IF", "GOTO",
|
||||
"IMPLEMENTS", "IMPORT", "INSTANCEOF", "INT", "INTERFACE", "LONG", "NATIVE",
|
||||
"NEW", "PACKAGE", "PRIVATE", "PROTECTED", "PUBLIC", "RETURN", "SHORT",
|
||||
"STATIC", "STRICTFP", "SUPER", "SWITCH", "SYNCHRONIZED", "THIS", "THROW",
|
||||
"THROWS", "TRANSIENT", "TRY", "VOID", "VOLATILE", "WHILE", "IntegerLiteral",
|
||||
"FloatingPointLiteral", "BooleanLiteral", "CharacterLiteral", "StringLiteral",
|
||||
"NullLiteral", "LPAREN", "RPAREN", "LBRACE", "RBRACE", "LBRACK", "RBRACK",
|
||||
"SEMI", "COMMA", "DOT", "ASSIGN", "GT", "LT", "BANG", "TILDE", "QUESTION",
|
||||
"COLON", "EQUAL", "LE", "GE", "NOTEQUAL", "AND", "OR", "INC", "DEC",
|
||||
"ADD", "SUB", "MUL", "DIV", "BITAND", "BITOR", "CARET", "MOD", "ARROW",
|
||||
"COLONCOLON", "ADD_ASSIGN", "SUB_ASSIGN", "MUL_ASSIGN", "DIV_ASSIGN",
|
||||
"AND_ASSIGN", "OR_ASSIGN", "XOR_ASSIGN", "MOD_ASSIGN", "LSHIFT_ASSIGN",
|
||||
"RSHIFT_ASSIGN", "URSHIFT_ASSIGN", "Identifier", "AT", "ELLIPSIS", "WS",
|
||||
"COMMENT", "LINE_COMMENT"
|
||||
};
|
||||
}
|
||||
private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames();
|
||||
public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES);
|
||||
|
||||
/**
|
||||
* @deprecated Use {@link #VOCABULARY} instead.
|
||||
*/
|
||||
@Deprecated
|
||||
public static final String[] tokenNames;
|
||||
static {
|
||||
tokenNames = new String[_SYMBOLIC_NAMES.length];
|
||||
for (int i = 0; i < tokenNames.length; i++) {
|
||||
tokenNames[i] = VOCABULARY.getLiteralName(i);
|
||||
if (tokenNames[i] == null) {
|
||||
tokenNames[i] = VOCABULARY.getSymbolicName(i);
|
||||
}
|
||||
|
||||
if (tokenNames[i] == null) {
|
||||
tokenNames[i] = "<INVALID>";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
@Deprecated
|
||||
public String[] getTokenNames() {
|
||||
return tokenNames;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
public Vocabulary getVocabulary() {
|
||||
return VOCABULARY;
|
||||
}
|
||||
|
||||
|
||||
public Java8Lexer(CharStream input) {
|
||||
super(input);
|
||||
_interp = new LexerATNSimulator(this,_ATN,_decisionToDFA,_sharedContextCache);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getGrammarFileName() { return "Java8Lexer.g4"; }
|
||||
|
||||
@Override
|
||||
public String[] getRuleNames() { return ruleNames; }
|
||||
|
||||
@Override
|
||||
public String getSerializedATN() { return _serializedATN; }
|
||||
|
||||
@Override
|
||||
public String[] getChannelNames() { return channelNames; }
|
||||
|
||||
@Override
|
||||
public String[] getModeNames() { return modeNames; }
|
||||
|
||||
@Override
|
||||
public ATN getATN() { return _ATN; }
|
||||
|
||||
public static final String _serializedATN =
|
||||
"\u0004\u0000k\u045d\u0006\uffff\uffff\u0002\u0000\u0007\u0000\u0002\u0001"+
|
||||
"\u0007\u0001\u0002\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002\u0004"+
|
||||
"\u0007\u0004\u0002\u0005\u0007\u0005\u0002\u0006\u0007\u0006\u0002\u0007"+
|
||||
"\u0007\u0007\u0002\b\u0007\b\u0002\t\u0007\t\u0002\n\u0007\n\u0002\u000b"+
|
||||
"\u0007\u000b\u0002\f\u0007\f\u0002\r\u0007\r\u0002\u000e\u0007\u000e\u0002"+
|
||||
"\u000f\u0007\u000f\u0002\u0010\u0007\u0010\u0002\u0011\u0007\u0011\u0002"+
|
||||
"\u0012\u0007\u0012\u0002\u0013\u0007\u0013\u0002\u0014\u0007\u0014\u0002"+
|
||||
"\u0015\u0007\u0015\u0002\u0016\u0007\u0016\u0002\u0017\u0007\u0017\u0002"+
|
||||
"\u0018\u0007\u0018\u0002\u0019\u0007\u0019\u0002\u001a\u0007\u001a\u0002"+
|
||||
"\u001b\u0007\u001b\u0002\u001c\u0007\u001c\u0002\u001d\u0007\u001d\u0002"+
|
||||
"\u001e\u0007\u001e\u0002\u001f\u0007\u001f\u0002 \u0007 \u0002!\u0007"+
|
||||
"!\u0002\"\u0007\"\u0002#\u0007#\u0002$\u0007$\u0002%\u0007%\u0002&\u0007"+
|
||||
"&\u0002\'\u0007\'\u0002(\u0007(\u0002)\u0007)\u0002*\u0007*\u0002+\u0007"+
|
||||
"+\u0002,\u0007,\u0002-\u0007-\u0002.\u0007.\u0002/\u0007/\u00020\u0007"+
|
||||
"0\u00021\u00071\u00022\u00072\u00023\u00073\u00024\u00074\u00025\u0007"+
|
||||
"5\u00026\u00076\u00027\u00077\u00028\u00078\u00029\u00079\u0002:\u0007"+
|
||||
":\u0002;\u0007;\u0002<\u0007<\u0002=\u0007=\u0002>\u0007>\u0002?\u0007"+
|
||||
"?\u0002@\u0007@\u0002A\u0007A\u0002B\u0007B\u0002C\u0007C\u0002D\u0007"+
|
||||
"D\u0002E\u0007E\u0002F\u0007F\u0002G\u0007G\u0002H\u0007H\u0002I\u0007"+
|
||||
"I\u0002J\u0007J\u0002K\u0007K\u0002L\u0007L\u0002M\u0007M\u0002N\u0007"+
|
||||
"N\u0002O\u0007O\u0002P\u0007P\u0002Q\u0007Q\u0002R\u0007R\u0002S\u0007"+
|
||||
"S\u0002T\u0007T\u0002U\u0007U\u0002V\u0007V\u0002W\u0007W\u0002X\u0007"+
|
||||
"X\u0002Y\u0007Y\u0002Z\u0007Z\u0002[\u0007[\u0002\\\u0007\\\u0002]\u0007"+
|
||||
"]\u0002^\u0007^\u0002_\u0007_\u0002`\u0007`\u0002a\u0007a\u0002b\u0007"+
|
||||
"b\u0002c\u0007c\u0002d\u0007d\u0002e\u0007e\u0002f\u0007f\u0002g\u0007"+
|
||||
"g\u0002h\u0007h\u0002i\u0007i\u0002j\u0007j\u0002k\u0007k\u0002l\u0007"+
|
||||
"l\u0002m\u0007m\u0002n\u0007n\u0002o\u0007o\u0002p\u0007p\u0002q\u0007"+
|
||||
"q\u0002r\u0007r\u0002s\u0007s\u0002t\u0007t\u0002u\u0007u\u0002v\u0007"+
|
||||
"v\u0002w\u0007w\u0002x\u0007x\u0002y\u0007y\u0002z\u0007z\u0002{\u0007"+
|
||||
"{\u0002|\u0007|\u0002}\u0007}\u0002~\u0007~\u0002\u007f\u0007\u007f\u0002"+
|
||||
"\u0080\u0007\u0080\u0002\u0081\u0007\u0081\u0002\u0082\u0007\u0082\u0002"+
|
||||
"\u0083\u0007\u0083\u0002\u0084\u0007\u0084\u0002\u0085\u0007\u0085\u0002"+
|
||||
"\u0086\u0007\u0086\u0002\u0087\u0007\u0087\u0002\u0088\u0007\u0088\u0002"+
|
||||
"\u0089\u0007\u0089\u0002\u008a\u0007\u008a\u0002\u008b\u0007\u008b\u0002"+
|
||||
"\u008c\u0007\u008c\u0002\u008d\u0007\u008d\u0002\u008e\u0007\u008e\u0002"+
|
||||
"\u008f\u0007\u008f\u0002\u0090\u0007\u0090\u0002\u0091\u0007\u0091\u0002"+
|
||||
"\u0092\u0007\u0092\u0002\u0093\u0007\u0093\u0002\u0094\u0007\u0094\u0002"+
|
||||
"\u0095\u0007\u0095\u0002\u0096\u0007\u0096\u0002\u0097\u0007\u0097\u0002"+
|
||||
"\u0098\u0007\u0098\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0000\u0001"+
|
||||
"\u0000\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0001\u0001"+
|
||||
"\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001"+
|
||||
"\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001"+
|
||||
"\u0002\u0001\u0002\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001"+
|
||||
"\u0003\u0001\u0003\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001"+
|
||||
"\u0004\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001"+
|
||||
"\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001"+
|
||||
"\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\b\u0001\b"+
|
||||
"\u0001\b\u0001\b\u0001\b\u0001\b\u0001\t\u0001\t\u0001\t\u0001\t\u0001"+
|
||||
"\t\u0001\t\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001"+
|
||||
"\n\u0001\n\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b"+
|
||||
"\u0001\u000b\u0001\u000b\u0001\u000b\u0001\f\u0001\f\u0001\f\u0001\r\u0001"+
|
||||
"\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\u000e\u0001\u000e\u0001"+
|
||||
"\u000e\u0001\u000e\u0001\u000e\u0001\u000f\u0001\u000f\u0001\u000f\u0001"+
|
||||
"\u000f\u0001\u000f\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001"+
|
||||
"\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0011\u0001\u0011\u0001"+
|
||||
"\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0012\u0001\u0012\u0001"+
|
||||
"\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001"+
|
||||
"\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001"+
|
||||
"\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0015\u0001\u0015\u0001"+
|
||||
"\u0015\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001"+
|
||||
"\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001"+
|
||||
"\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0018\u0001"+
|
||||
"\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001"+
|
||||
"\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001"+
|
||||
"\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u001a\u0001"+
|
||||
"\u001a\u0001\u001a\u0001\u001a\u0001\u001b\u0001\u001b\u0001\u001b\u0001"+
|
||||
"\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001"+
|
||||
"\u001b\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001"+
|
||||
"\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001"+
|
||||
"\u001d\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001f\u0001"+
|
||||
"\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001"+
|
||||
"\u001f\u0001 \u0001 \u0001 \u0001 \u0001 \u0001 \u0001 \u0001 \u0001!"+
|
||||
"\u0001!\u0001!\u0001!\u0001!\u0001!\u0001!\u0001!\u0001!\u0001!\u0001"+
|
||||
"\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001#\u0001#\u0001"+
|
||||
"#\u0001#\u0001#\u0001#\u0001#\u0001$\u0001$\u0001$\u0001$\u0001$\u0001"+
|
||||
"$\u0001%\u0001%\u0001%\u0001%\u0001%\u0001%\u0001%\u0001&\u0001&\u0001"+
|
||||
"&\u0001&\u0001&\u0001&\u0001&\u0001&\u0001&\u0001\'\u0001\'\u0001\'\u0001"+
|
||||
"\'\u0001\'\u0001\'\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001"+
|
||||
")\u0001)\u0001)\u0001)\u0001)\u0001)\u0001)\u0001)\u0001)\u0001)\u0001"+
|
||||
")\u0001)\u0001)\u0001*\u0001*\u0001*\u0001*\u0001*\u0001+\u0001+\u0001"+
|
||||
"+\u0001+\u0001+\u0001+\u0001,\u0001,\u0001,\u0001,\u0001,\u0001,\u0001"+
|
||||
",\u0001-\u0001-\u0001-\u0001-\u0001-\u0001-\u0001-\u0001-\u0001-\u0001"+
|
||||
"-\u0001.\u0001.\u0001.\u0001.\u0001/\u0001/\u0001/\u0001/\u0001/\u0001"+
|
||||
"0\u00010\u00010\u00010\u00010\u00010\u00010\u00010\u00010\u00011\u0001"+
|
||||
"1\u00011\u00011\u00011\u00011\u00012\u00012\u00012\u00012\u00032\u028b"+
|
||||
"\b2\u00013\u00013\u00033\u028f\b3\u00014\u00014\u00034\u0293\b4\u0001"+
|
||||
"5\u00015\u00035\u0297\b5\u00016\u00016\u00036\u029b\b6\u00017\u00017\u0001"+
|
||||
"8\u00018\u00018\u00038\u02a2\b8\u00018\u00018\u00018\u00038\u02a7\b8\u0003"+
|
||||
"8\u02a9\b8\u00019\u00019\u00039\u02ad\b9\u00019\u00039\u02b0\b9\u0001"+
|
||||
":\u0001:\u0003:\u02b4\b:\u0001;\u0001;\u0001<\u0004<\u02b9\b<\u000b<\f"+
|
||||
"<\u02ba\u0001=\u0001=\u0003=\u02bf\b=\u0001>\u0004>\u02c2\b>\u000b>\f"+
|
||||
">\u02c3\u0001?\u0001?\u0001?\u0001?\u0001@\u0001@\u0003@\u02cc\b@\u0001"+
|
||||
"@\u0003@\u02cf\b@\u0001A\u0001A\u0001B\u0004B\u02d4\bB\u000bB\fB\u02d5"+
|
||||
"\u0001C\u0001C\u0003C\u02da\bC\u0001D\u0001D\u0003D\u02de\bD\u0001D\u0001"+
|
||||
"D\u0001E\u0001E\u0003E\u02e4\bE\u0001E\u0003E\u02e7\bE\u0001F\u0001F\u0001"+
|
||||
"G\u0004G\u02ec\bG\u000bG\fG\u02ed\u0001H\u0001H\u0003H\u02f2\bH\u0001"+
|
||||
"I\u0001I\u0001I\u0001I\u0001J\u0001J\u0003J\u02fa\bJ\u0001J\u0003J\u02fd"+
|
||||
"\bJ\u0001K\u0001K\u0001L\u0004L\u0302\bL\u000bL\fL\u0303\u0001M\u0001"+
|
||||
"M\u0003M\u0308\bM\u0001N\u0001N\u0003N\u030c\bN\u0001O\u0001O\u0001O\u0003"+
|
||||
"O\u0311\bO\u0001O\u0003O\u0314\bO\u0001O\u0003O\u0317\bO\u0001O\u0001"+
|
||||
"O\u0001O\u0003O\u031c\bO\u0001O\u0003O\u031f\bO\u0001O\u0001O\u0001O\u0003"+
|
||||
"O\u0324\bO\u0001O\u0001O\u0001O\u0003O\u0329\bO\u0001P\u0001P\u0001P\u0001"+
|
||||
"Q\u0001Q\u0001R\u0003R\u0331\bR\u0001R\u0001R\u0001S\u0001S\u0001T\u0001"+
|
||||
"T\u0001U\u0001U\u0001U\u0003U\u033c\bU\u0001V\u0001V\u0003V\u0340\bV\u0001"+
|
||||
"V\u0001V\u0001V\u0003V\u0345\bV\u0001V\u0001V\u0003V\u0349\bV\u0001W\u0001"+
|
||||
"W\u0001W\u0001X\u0001X\u0001Y\u0001Y\u0001Y\u0001Y\u0001Y\u0001Y\u0001"+
|
||||
"Y\u0001Y\u0001Y\u0003Y\u0359\bY\u0001Z\u0001Z\u0001Z\u0001Z\u0001Z\u0001"+
|
||||
"Z\u0001Z\u0001Z\u0003Z\u0363\bZ\u0001[\u0001[\u0001\\\u0001\\\u0003\\"+
|
||||
"\u0369\b\\\u0001\\\u0001\\\u0001]\u0004]\u036e\b]\u000b]\f]\u036f\u0001"+
|
||||
"^\u0001^\u0003^\u0374\b^\u0001_\u0001_\u0001_\u0001_\u0001_\u0001_\u0003"+
|
||||
"_\u037c\b_\u0001_\u0001_\u0001_\u0003_\u0381\b_\u0001`\u0001`\u0001`\u0001"+
|
||||
"`\u0001`\u0001`\u0003`\u0389\b`\u0001`\u0001`\u0001`\u0001`\u0001`\u0001"+
|
||||
"`\u0001`\u0003`\u0392\b`\u0001`\u0001`\u0001`\u0001`\u0001`\u0001`\u0001"+
|
||||
"`\u0001`\u0001`\u0003`\u039d\b`\u0001`\u0001`\u0001`\u0001`\u0003`\u03a3"+
|
||||
"\b`\u0001a\u0001a\u0001b\u0001b\u0004b\u03a9\bb\u000bb\fb\u03aa\u0001"+
|
||||
"b\u0001b\u0001b\u0001b\u0001b\u0001c\u0001c\u0001c\u0001c\u0001c\u0001"+
|
||||
"d\u0001d\u0001e\u0001e\u0001f\u0001f\u0001g\u0001g\u0001h\u0001h\u0001"+
|
||||
"i\u0001i\u0001j\u0001j\u0001k\u0001k\u0001l\u0001l\u0001m\u0001m\u0001"+
|
||||
"n\u0001n\u0001o\u0001o\u0001p\u0001p\u0001q\u0001q\u0001r\u0001r\u0001"+
|
||||
"s\u0001s\u0001t\u0001t\u0001t\u0001u\u0001u\u0001u\u0001v\u0001v\u0001"+
|
||||
"v\u0001w\u0001w\u0001w\u0001x\u0001x\u0001x\u0001y\u0001y\u0001y\u0001"+
|
||||
"z\u0001z\u0001z\u0001{\u0001{\u0001{\u0001|\u0001|\u0001}\u0001}\u0001"+
|
||||
"~\u0001~\u0001\u007f\u0001\u007f\u0001\u0080\u0001\u0080\u0001\u0081\u0001"+
|
||||
"\u0081\u0001\u0082\u0001\u0082\u0001\u0083\u0001\u0083\u0001\u0084\u0001"+
|
||||
"\u0084\u0001\u0084\u0001\u0085\u0001\u0085\u0001\u0085\u0001\u0086\u0001"+
|
||||
"\u0086\u0001\u0086\u0001\u0087\u0001\u0087\u0001\u0087\u0001\u0088\u0001"+
|
||||
"\u0088\u0001\u0088\u0001\u0089\u0001\u0089\u0001\u0089\u0001\u008a\u0001"+
|
||||
"\u008a\u0001\u008a\u0001\u008b\u0001\u008b\u0001\u008b\u0001\u008c\u0001"+
|
||||
"\u008c\u0001\u008c\u0001\u008d\u0001\u008d\u0001\u008d\u0001\u008e\u0001"+
|
||||
"\u008e\u0001\u008e\u0001\u008e\u0001\u008f\u0001\u008f\u0001\u008f\u0001"+
|
||||
"\u008f\u0001\u0090\u0001\u0090\u0001\u0090\u0001\u0090\u0001\u0090\u0001"+
|
||||
"\u0091\u0001\u0091\u0005\u0091\u042c\b\u0091\n\u0091\f\u0091\u042f\t\u0091"+
|
||||
"\u0001\u0092\u0003\u0092\u0432\b\u0092\u0001\u0093\u0001\u0093\u0003\u0093"+
|
||||
"\u0436\b\u0093\u0001\u0094\u0001\u0094\u0001\u0095\u0001\u0095\u0001\u0095"+
|
||||
"\u0001\u0095\u0001\u0096\u0004\u0096\u043f\b\u0096\u000b\u0096\f\u0096"+
|
||||
"\u0440\u0001\u0096\u0001\u0096\u0001\u0097\u0001\u0097\u0001\u0097\u0001"+
|
||||
"\u0097\u0005\u0097\u0449\b\u0097\n\u0097\f\u0097\u044c\t\u0097\u0001\u0097"+
|
||||
"\u0001\u0097\u0001\u0097\u0001\u0097\u0001\u0097\u0001\u0098\u0001\u0098"+
|
||||
"\u0001\u0098\u0001\u0098\u0005\u0098\u0457\b\u0098\n\u0098\f\u0098\u045a"+
|
||||
"\t\u0098\u0001\u0098\u0001\u0098\u0001\u044a\u0000\u0099\u0001\u0001\u0003"+
|
||||
"\u0002\u0005\u0003\u0007\u0004\t\u0005\u000b\u0006\r\u0007\u000f\b\u0011"+
|
||||
"\t\u0013\n\u0015\u000b\u0017\f\u0019\r\u001b\u000e\u001d\u000f\u001f\u0010"+
|
||||
"!\u0011#\u0012%\u0013\'\u0014)\u0015+\u0016-\u0017/\u00181\u00193\u001a"+
|
||||
"5\u001b7\u001c9\u001d;\u001e=\u001f? A!C\"E#G$I%K&M\'O(Q)S*U+W,Y-[.]/"+
|
||||
"_0a1c2e3g\u0000i\u0000k\u0000m\u0000o\u0000q\u0000s\u0000u\u0000w\u0000"+
|
||||
"y\u0000{\u0000}\u0000\u007f\u0000\u0081\u0000\u0083\u0000\u0085\u0000"+
|
||||
"\u0087\u0000\u0089\u0000\u008b\u0000\u008d\u0000\u008f\u0000\u0091\u0000"+
|
||||
"\u0093\u0000\u0095\u0000\u0097\u0000\u0099\u0000\u009b\u0000\u009d4\u009f"+
|
||||
"\u0000\u00a1\u0000\u00a3\u0000\u00a5\u0000\u00a7\u0000\u00a9\u0000\u00ab"+
|
||||
"\u0000\u00ad\u0000\u00af\u0000\u00b1\u0000\u00b35\u00b56\u00b7\u0000\u00b9"+
|
||||
"7\u00bb\u0000\u00bd\u0000\u00bf\u0000\u00c1\u0000\u00c3\u0000\u00c5\u0000"+
|
||||
"\u00c78\u00c99\u00cb:\u00cd;\u00cf<\u00d1=\u00d3>\u00d5?\u00d7@\u00d9"+
|
||||
"A\u00dbB\u00ddC\u00dfD\u00e1E\u00e3F\u00e5G\u00e7H\u00e9I\u00ebJ\u00ed"+
|
||||
"K\u00efL\u00f1M\u00f3N\u00f5O\u00f7P\u00f9Q\u00fbR\u00fdS\u00ffT\u0101"+
|
||||
"U\u0103V\u0105W\u0107X\u0109Y\u010bZ\u010d[\u010f\\\u0111]\u0113^\u0115"+
|
||||
"_\u0117`\u0119a\u011bb\u011dc\u011fd\u0121e\u0123f\u0125\u0000\u0127\u0000"+
|
||||
"\u0129g\u012bh\u012di\u012fj\u0131k\u0001\u0000\u0013\u0002\u0000LLll"+
|
||||
"\u0001\u000019\u0002\u0000XXxx\u0003\u000009AFaf\u0001\u000007\u0002\u0000"+
|
||||
"BBbb\u0001\u000001\u0002\u0000EEee\u0002\u0000++--\u0004\u0000DDFFddf"+
|
||||
"f\u0002\u0000PPpp\u0004\u0000\n\n\r\r\'\'\\\\\u0004\u0000\n\n\r\r\"\""+
|
||||
"\\\\\b\u0000\"\"\'\'\\\\bbffnnrrtt\u0001\u000003\u0192\u0000$$AZ__az\u00a2"+
|
||||
"\u00a5\u00aa\u00aa\u00b5\u00b5\u00ba\u00ba\u00c0\u00d6\u00d8\u00f6\u00f8"+
|
||||
"\u02c1\u02c6\u02d1\u02e0\u02e4\u02ec\u02ec\u02ee\u02ee\u0370\u0374\u0376"+
|
||||
"\u0377\u037a\u037d\u037f\u037f\u0386\u0386\u0388\u038a\u038c\u038c\u038e"+
|
||||
"\u03a1\u03a3\u03f5\u03f7\u0481\u048a\u052f\u0531\u0556\u0559\u0559\u0561"+
|
||||
"\u0587\u058f\u058f\u05d0\u05ea\u05f0\u05f2\u060b\u060b\u0620\u064a\u066e"+
|
||||
"\u066f\u0671\u06d3\u06d5\u06d5\u06e5\u06e6\u06ee\u06ef\u06fa\u06fc\u06ff"+
|
||||
"\u06ff\u0710\u0710\u0712\u072f\u074d\u07a5\u07b1\u07b1\u07ca\u07ea\u07f4"+
|
||||
"\u07f5\u07fa\u07fa\u0800\u0815\u081a\u081a\u0824\u0824\u0828\u0828\u0840"+
|
||||
"\u0858\u0860\u086a\u08a0\u08b4\u08b6\u08bd\u0904\u0939\u093d\u093d\u0950"+
|
||||
"\u0950\u0958\u0961\u0971\u0980\u0985\u098c\u098f\u0990\u0993\u09a8\u09aa"+
|
||||
"\u09b0\u09b2\u09b2\u09b6\u09b9\u09bd\u09bd\u09ce\u09ce\u09dc\u09dd\u09df"+
|
||||
"\u09e1\u09f0\u09f3\u09fb\u09fc\u0a05\u0a0a\u0a0f\u0a10\u0a13\u0a28\u0a2a"+
|
||||
"\u0a30\u0a32\u0a33\u0a35\u0a36\u0a38\u0a39\u0a59\u0a5c\u0a5e\u0a5e\u0a72"+
|
||||
"\u0a74\u0a85\u0a8d\u0a8f\u0a91\u0a93\u0aa8\u0aaa\u0ab0\u0ab2\u0ab3\u0ab5"+
|
||||
"\u0ab9\u0abd\u0abd\u0ad0\u0ad0\u0ae0\u0ae1\u0af1\u0af1\u0af9\u0af9\u0b05"+
|
||||
"\u0b0c\u0b0f\u0b10\u0b13\u0b28\u0b2a\u0b30\u0b32\u0b33\u0b35\u0b39\u0b3d"+
|
||||
"\u0b3d\u0b5c\u0b5d\u0b5f\u0b61\u0b71\u0b71\u0b83\u0b83\u0b85\u0b8a\u0b8e"+
|
||||
"\u0b90\u0b92\u0b95\u0b99\u0b9a\u0b9c\u0b9c\u0b9e\u0b9f\u0ba3\u0ba4\u0ba8"+
|
||||
"\u0baa\u0bae\u0bb9\u0bd0\u0bd0\u0bf9\u0bf9\u0c05\u0c0c\u0c0e\u0c10\u0c12"+
|
||||
"\u0c28\u0c2a\u0c39\u0c3d\u0c3d\u0c58\u0c5a\u0c60\u0c61\u0c80\u0c80\u0c85"+
|
||||
"\u0c8c\u0c8e\u0c90\u0c92\u0ca8\u0caa\u0cb3\u0cb5\u0cb9\u0cbd\u0cbd\u0cde"+
|
||||
"\u0cde\u0ce0\u0ce1\u0cf1\u0cf2\u0d05\u0d0c\u0d0e\u0d10\u0d12\u0d3a\u0d3d"+
|
||||
"\u0d3d\u0d4e\u0d4e\u0d54\u0d56\u0d5f\u0d61\u0d7a\u0d7f\u0d85\u0d96\u0d9a"+
|
||||
"\u0db1\u0db3\u0dbb\u0dbd\u0dbd\u0dc0\u0dc6\u0e01\u0e30\u0e32\u0e33\u0e3f"+
|
||||
"\u0e46\u0e81\u0e82\u0e84\u0e84\u0e87\u0e88\u0e8a\u0e8a\u0e8d\u0e8d\u0e94"+
|
||||
"\u0e97\u0e99\u0e9f\u0ea1\u0ea3\u0ea5\u0ea5\u0ea7\u0ea7\u0eaa\u0eab\u0ead"+
|
||||
"\u0eb0\u0eb2\u0eb3\u0ebd\u0ebd\u0ec0\u0ec4\u0ec6\u0ec6\u0edc\u0edf\u0f00"+
|
||||
"\u0f00\u0f40\u0f47\u0f49\u0f6c\u0f88\u0f8c\u1000\u102a\u103f\u103f\u1050"+
|
||||
"\u1055\u105a\u105d\u1061\u1061\u1065\u1066\u106e\u1070\u1075\u1081\u108e"+
|
||||
"\u108e\u10a0\u10c5\u10c7\u10c7\u10cd\u10cd\u10d0\u10fa\u10fc\u1248\u124a"+
|
||||
"\u124d\u1250\u1256\u1258\u1258\u125a\u125d\u1260\u1288\u128a\u128d\u1290"+
|
||||
"\u12b0\u12b2\u12b5\u12b8\u12be\u12c0\u12c0\u12c2\u12c5\u12c8\u12d6\u12d8"+
|
||||
"\u1310\u1312\u1315\u1318\u135a\u1380\u138f\u13a0\u13f5\u13f8\u13fd\u1401"+
|
||||
"\u166c\u166f\u167f\u1681\u169a\u16a0\u16ea\u16ee\u16f8\u1700\u170c\u170e"+
|
||||
"\u1711\u1720\u1731\u1740\u1751\u1760\u176c\u176e\u1770\u1780\u17b3\u17d7"+
|
||||
"\u17d7\u17db\u17dc\u1820\u1877\u1880\u1884\u1887\u18a8\u18aa\u18aa\u18b0"+
|
||||
"\u18f5\u1900\u191e\u1950\u196d\u1970\u1974\u1980\u19ab\u19b0\u19c9\u1a00"+
|
||||
"\u1a16\u1a20\u1a54\u1aa7\u1aa7\u1b05\u1b33\u1b45\u1b4b\u1b83\u1ba0\u1bae"+
|
||||
"\u1baf\u1bba\u1be5\u1c00\u1c23\u1c4d\u1c4f\u1c5a\u1c7d\u1c80\u1c88\u1ce9"+
|
||||
"\u1cec\u1cee\u1cf1\u1cf5\u1cf6\u1d00\u1dbf\u1e00\u1f15\u1f18\u1f1d\u1f20"+
|
||||
"\u1f45\u1f48\u1f4d\u1f50\u1f57\u1f59\u1f59\u1f5b\u1f5b\u1f5d\u1f5d\u1f5f"+
|
||||
"\u1f7d\u1f80\u1fb4\u1fb6\u1fbc\u1fbe\u1fbe\u1fc2\u1fc4\u1fc6\u1fcc\u1fd0"+
|
||||
"\u1fd3\u1fd6\u1fdb\u1fe0\u1fec\u1ff2\u1ff4\u1ff6\u1ffc\u203f\u2040\u2054"+
|
||||
"\u2054\u2071\u2071\u207f\u207f\u2090\u209c\u20a0\u20bf\u2102\u2102\u2107"+
|
||||
"\u2107\u210a\u2113\u2115\u2115\u2119\u211d\u2124\u2124\u2126\u2126\u2128"+
|
||||
"\u2128\u212a\u212d\u212f\u2139\u213c\u213f\u2145\u2149\u214e\u214e\u2160"+
|
||||
"\u2188\u2c00\u2c2e\u2c30\u2c5e\u2c60\u2ce4\u2ceb\u2cee\u2cf2\u2cf3\u2d00"+
|
||||
"\u2d25\u2d27\u2d27\u2d2d\u2d2d\u2d30\u2d67\u2d6f\u2d6f\u2d80\u2d96\u2da0"+
|
||||
"\u2da6\u2da8\u2dae\u2db0\u2db6\u2db8\u2dbe\u2dc0\u2dc6\u2dc8\u2dce\u2dd0"+
|
||||
"\u2dd6\u2dd8\u2dde\u2e2f\u2e2f\u3005\u3007\u3021\u3029\u3031\u3035\u3038"+
|
||||
"\u303c\u3041\u3096\u309d\u309f\u30a1\u30fa\u30fc\u30ff\u3105\u312e\u3131"+
|
||||
"\u318e\u31a0\u31ba\u31f0\u31ff\u3400\u4db5\u4e00\u8000\u9fea\u8000\ua000"+
|
||||
"\u8000\ua48c\u8000\ua4d0\u8000\ua4fd\u8000\ua500\u8000\ua60c\u8000\ua610"+
|
||||
"\u8000\ua61f\u8000\ua62a\u8000\ua62b\u8000\ua640\u8000\ua66e\u8000\ua67f"+
|
||||
"\u8000\ua69d\u8000\ua6a0\u8000\ua6ef\u8000\ua717\u8000\ua71f\u8000\ua722"+
|
||||
"\u8000\ua788\u8000\ua78b\u8000\ua7ae\u8000\ua7b0\u8000\ua7b7\u8000\ua7f7"+
|
||||
"\u8000\ua801\u8000\ua803\u8000\ua805\u8000\ua807\u8000\ua80a\u8000\ua80c"+
|
||||
"\u8000\ua822\u8000\ua838\u8000\ua838\u8000\ua840\u8000\ua873\u8000\ua882"+
|
||||
"\u8000\ua8b3\u8000\ua8f2\u8000\ua8f7\u8000\ua8fb\u8000\ua8fb\u8000\ua8fd"+
|
||||
"\u8000\ua8fd\u8000\ua90a\u8000\ua925\u8000\ua930\u8000\ua946\u8000\ua960"+
|
||||
"\u8000\ua97c\u8000\ua984\u8000\ua9b2\u8000\ua9cf\u8000\ua9cf\u8000\ua9e0"+
|
||||
"\u8000\ua9e4\u8000\ua9e6\u8000\ua9ef\u8000\ua9fa\u8000\ua9fe\u8000\uaa00"+
|
||||
"\u8000\uaa28\u8000\uaa40\u8000\uaa42\u8000\uaa44\u8000\uaa4b\u8000\uaa60"+
|
||||
"\u8000\uaa76\u8000\uaa7a\u8000\uaa7a\u8000\uaa7e\u8000\uaaaf\u8000\uaab1"+
|
||||
"\u8000\uaab1\u8000\uaab5\u8000\uaab6\u8000\uaab9\u8000\uaabd\u8000\uaac0"+
|
||||
"\u8000\uaac0\u8000\uaac2\u8000\uaac2\u8000\uaadb\u8000\uaadd\u8000\uaae0"+
|
||||
"\u8000\uaaea\u8000\uaaf2\u8000\uaaf4\u8000\uab01\u8000\uab06\u8000\uab09"+
|
||||
"\u8000\uab0e\u8000\uab11\u8000\uab16\u8000\uab20\u8000\uab26\u8000\uab28"+
|
||||
"\u8000\uab2e\u8000\uab30\u8000\uab5a\u8000\uab5c\u8000\uab65\u8000\uab70"+
|
||||
"\u8000\uabe2\u8000\uac00\u8000\ud7a3\u8000\ud7b0\u8000\ud7c6\u8000\ud7cb"+
|
||||
"\u8000\ud7fb\u8000\uf900\u8000\ufa6d\u8000\ufa70\u8000\ufad9\u8000\ufb00"+
|
||||
"\u8000\ufb06\u8000\ufb13\u8000\ufb17\u8000\ufb1d\u8000\ufb1d\u8000\ufb1f"+
|
||||
"\u8000\ufb28\u8000\ufb2a\u8000\ufb36\u8000\ufb38\u8000\ufb3c\u8000\ufb3e"+
|
||||
"\u8000\ufb3e\u8000\ufb40\u8000\ufb41\u8000\ufb43\u8000\ufb44\u8000\ufb46"+
|
||||
"\u8000\ufbb1\u8000\ufbd3\u8000\ufd3d\u8000\ufd50\u8000\ufd8f\u8000\ufd92"+
|
||||
"\u8000\ufdc7\u8000\ufdf0\u8000\ufdfc\u8000\ufe33\u8000\ufe34\u8000\ufe4d"+
|
||||
"\u8000\ufe4f\u8000\ufe69\u8000\ufe69\u8000\ufe70\u8000\ufe74\u8000\ufe76"+
|
||||
"\u8000\ufefc\u8000\uff04\u8000\uff04\u8000\uff21\u8000\uff3a\u8000\uff3f"+
|
||||
"\u8000\uff3f\u8000\uff41\u8000\uff5a\u8000\uff66\u8000\uffbe\u8000\uffc2"+
|
||||
"\u8000\uffc7\u8000\uffca\u8000\uffcf\u8000\uffd2\u8000\uffd7\u8000\uffda"+
|
||||
"\u8000\uffdc\u8000\uffe0\u8000\uffe1\u8000\uffe5\u8000\uffe6\u00e4\u0000"+
|
||||
"09\u007f\u009f\u00ad\u00ad\u0300\u036f\u0483\u0487\u0591\u05bd\u05bf\u05bf"+
|
||||
"\u05c1\u05c2\u05c4\u05c5\u05c7\u05c7\u0600\u0605\u0610\u061a\u061c\u061c"+
|
||||
"\u064b\u0669\u0670\u0670\u06d6\u06dd\u06df\u06e4\u06e7\u06e8\u06ea\u06ed"+
|
||||
"\u06f0\u06f9\u070f\u070f\u0711\u0711\u0730\u074a\u07a6\u07b0\u07c0\u07c9"+
|
||||
"\u07eb\u07f3\u0816\u0819\u081b\u0823\u0825\u0827\u0829\u082d\u0859\u085b"+
|
||||
"\u08d4\u0903\u093a\u093c\u093e\u094f\u0951\u0957\u0962\u0963\u0966\u096f"+
|
||||
"\u0981\u0983\u09bc\u09bc\u09be\u09c4\u09c7\u09c8\u09cb\u09cd\u09d7\u09d7"+
|
||||
"\u09e2\u09e3\u09e6\u09ef\u0a01\u0a03\u0a3c\u0a3c\u0a3e\u0a42\u0a47\u0a48"+
|
||||
"\u0a4b\u0a4d\u0a51\u0a51\u0a66\u0a71\u0a75\u0a75\u0a81\u0a83\u0abc\u0abc"+
|
||||
"\u0abe\u0ac5\u0ac7\u0ac9\u0acb\u0acd\u0ae2\u0ae3\u0ae6\u0aef\u0afa\u0aff"+
|
||||
"\u0b01\u0b03\u0b3c\u0b3c\u0b3e\u0b44\u0b47\u0b48\u0b4b\u0b4d\u0b56\u0b57"+
|
||||
"\u0b62\u0b63\u0b66\u0b6f\u0b82\u0b82\u0bbe\u0bc2\u0bc6\u0bc8\u0bca\u0bcd"+
|
||||
"\u0bd7\u0bd7\u0be6\u0bef\u0c00\u0c03\u0c3e\u0c44\u0c46\u0c48\u0c4a\u0c4d"+
|
||||
"\u0c55\u0c56\u0c62\u0c63\u0c66\u0c6f\u0c81\u0c83\u0cbc\u0cbc\u0cbe\u0cc4"+
|
||||
"\u0cc6\u0cc8\u0cca\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0ce6\u0cef\u0d00\u0d03"+
|
||||
"\u0d3b\u0d3c\u0d3e\u0d44\u0d46\u0d48\u0d4a\u0d4d\u0d57\u0d57\u0d62\u0d63"+
|
||||
"\u0d66\u0d6f\u0d82\u0d83\u0dca\u0dca\u0dcf\u0dd4\u0dd6\u0dd6\u0dd8\u0ddf"+
|
||||
"\u0de6\u0def\u0df2\u0df3\u0e31\u0e31\u0e34\u0e3a\u0e47\u0e4e\u0e50\u0e59"+
|
||||
"\u0eb1\u0eb1\u0eb4\u0eb9\u0ebb\u0ebc\u0ec8\u0ecd\u0ed0\u0ed9\u0f18\u0f19"+
|
||||
"\u0f20\u0f29\u0f35\u0f35\u0f37\u0f37\u0f39\u0f39\u0f3e\u0f3f\u0f71\u0f84"+
|
||||
"\u0f86\u0f87\u0f8d\u0f97\u0f99\u0fbc\u0fc6\u0fc6\u102b\u103e\u1040\u1049"+
|
||||
"\u1056\u1059\u105e\u1060\u1062\u1064\u1067\u106d\u1071\u1074\u1082\u108d"+
|
||||
"\u108f\u109d\u135d\u135f\u1712\u1714\u1732\u1734\u1752\u1753\u1772\u1773"+
|
||||
"\u17b4\u17d3\u17dd\u17dd\u17e0\u17e9\u180b\u180e\u1810\u1819\u1885\u1886"+
|
||||
"\u18a9\u18a9\u1920\u192b\u1930\u193b\u1946\u194f\u19d0\u19d9\u1a17\u1a1b"+
|
||||
"\u1a55\u1a5e\u1a60\u1a7c\u1a7f\u1a89\u1a90\u1a99\u1ab0\u1abd\u1b00\u1b04"+
|
||||
"\u1b34\u1b44\u1b50\u1b59\u1b6b\u1b73\u1b80\u1b82\u1ba1\u1bad\u1bb0\u1bb9"+
|
||||
"\u1be6\u1bf3\u1c24\u1c37\u1c40\u1c49\u1c50\u1c59\u1cd0\u1cd2\u1cd4\u1ce8"+
|
||||
"\u1ced\u1ced\u1cf2\u1cf4\u1cf7\u1cf9\u1dc0\u1df9\u1dfb\u1dff\u200b\u200f"+
|
||||
"\u202a\u202e\u2060\u2064\u2066\u206f\u20d0\u20dc\u20e1\u20e1\u20e5\u20f0"+
|
||||
"\u2cef\u2cf1\u2d7f\u2d7f\u2de0\u2dff\u302a\u302f\u3099\u309a\u8000\ua620"+
|
||||
"\u8000\ua629\u8000\ua66f\u8000\ua66f\u8000\ua674\u8000\ua67d\u8000\ua69e"+
|
||||
"\u8000\ua69f\u8000\ua6f0\u8000\ua6f1\u8000\ua802\u8000\ua802\u8000\ua806"+
|
||||
"\u8000\ua806\u8000\ua80b\u8000\ua80b\u8000\ua823\u8000\ua827\u8000\ua880"+
|
||||
"\u8000\ua881\u8000\ua8b4\u8000\ua8c5\u8000\ua8d0\u8000\ua8d9\u8000\ua8e0"+
|
||||
"\u8000\ua8f1\u8000\ua900\u8000\ua909\u8000\ua926\u8000\ua92d\u8000\ua947"+
|
||||
"\u8000\ua953\u8000\ua980\u8000\ua983\u8000\ua9b3\u8000\ua9c0\u8000\ua9d0"+
|
||||
"\u8000\ua9d9\u8000\ua9e5\u8000\ua9e5\u8000\ua9f0\u8000\ua9f9\u8000\uaa29"+
|
||||
"\u8000\uaa36\u8000\uaa43\u8000\uaa43\u8000\uaa4c\u8000\uaa4d\u8000\uaa50"+
|
||||
"\u8000\uaa59\u8000\uaa7b\u8000\uaa7d\u8000\uaab0\u8000\uaab0\u8000\uaab2"+
|
||||
"\u8000\uaab4\u8000\uaab7\u8000\uaab8\u8000\uaabe\u8000\uaabf\u8000\uaac1"+
|
||||
"\u8000\uaac1\u8000\uaaeb\u8000\uaaef\u8000\uaaf5\u8000\uaaf6\u8000\uabe3"+
|
||||
"\u8000\uabea\u8000\uabec\u8000\uabed\u8000\uabf0\u8000\uabf9\u8000\ufb1e"+
|
||||
"\u8000\ufb1e\u8000\ufe00\u8000\ufe0f\u8000\ufe20\u8000\ufe2f\u8000\ufeff"+
|
||||
"\u8000\ufeff\u8000\uff10\u8000\uff19\u8000\ufff9\u8000\ufffb\u0003\u0000"+
|
||||
"\t\n\f\r \u0002\u0000\n\n\r\r\u046d\u0000\u0001\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u0003\u0001\u0000\u0000\u0000\u0000\u0005\u0001\u0000\u0000\u0000"+
|
||||
"\u0000\u0007\u0001\u0000\u0000\u0000\u0000\t\u0001\u0000\u0000\u0000\u0000"+
|
||||
"\u000b\u0001\u0000\u0000\u0000\u0000\r\u0001\u0000\u0000\u0000\u0000\u000f"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u0011\u0001\u0000\u0000\u0000\u0000\u0013"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u0015\u0001\u0000\u0000\u0000\u0000\u0017"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u0019\u0001\u0000\u0000\u0000\u0000\u001b"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u001d\u0001\u0000\u0000\u0000\u0000\u001f"+
|
||||
"\u0001\u0000\u0000\u0000\u0000!\u0001\u0000\u0000\u0000\u0000#\u0001\u0000"+
|
||||
"\u0000\u0000\u0000%\u0001\u0000\u0000\u0000\u0000\'\u0001\u0000\u0000"+
|
||||
"\u0000\u0000)\u0001\u0000\u0000\u0000\u0000+\u0001\u0000\u0000\u0000\u0000"+
|
||||
"-\u0001\u0000\u0000\u0000\u0000/\u0001\u0000\u0000\u0000\u00001\u0001"+
|
||||
"\u0000\u0000\u0000\u00003\u0001\u0000\u0000\u0000\u00005\u0001\u0000\u0000"+
|
||||
"\u0000\u00007\u0001\u0000\u0000\u0000\u00009\u0001\u0000\u0000\u0000\u0000"+
|
||||
";\u0001\u0000\u0000\u0000\u0000=\u0001\u0000\u0000\u0000\u0000?\u0001"+
|
||||
"\u0000\u0000\u0000\u0000A\u0001\u0000\u0000\u0000\u0000C\u0001\u0000\u0000"+
|
||||
"\u0000\u0000E\u0001\u0000\u0000\u0000\u0000G\u0001\u0000\u0000\u0000\u0000"+
|
||||
"I\u0001\u0000\u0000\u0000\u0000K\u0001\u0000\u0000\u0000\u0000M\u0001"+
|
||||
"\u0000\u0000\u0000\u0000O\u0001\u0000\u0000\u0000\u0000Q\u0001\u0000\u0000"+
|
||||
"\u0000\u0000S\u0001\u0000\u0000\u0000\u0000U\u0001\u0000\u0000\u0000\u0000"+
|
||||
"W\u0001\u0000\u0000\u0000\u0000Y\u0001\u0000\u0000\u0000\u0000[\u0001"+
|
||||
"\u0000\u0000\u0000\u0000]\u0001\u0000\u0000\u0000\u0000_\u0001\u0000\u0000"+
|
||||
"\u0000\u0000a\u0001\u0000\u0000\u0000\u0000c\u0001\u0000\u0000\u0000\u0000"+
|
||||
"e\u0001\u0000\u0000\u0000\u0000\u009d\u0001\u0000\u0000\u0000\u0000\u00b3"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00b5\u0001\u0000\u0000\u0000\u0000\u00b9"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00c7\u0001\u0000\u0000\u0000\u0000\u00c9"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00cb\u0001\u0000\u0000\u0000\u0000\u00cd"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00cf\u0001\u0000\u0000\u0000\u0000\u00d1"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00d3\u0001\u0000\u0000\u0000\u0000\u00d5"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00d7\u0001\u0000\u0000\u0000\u0000\u00d9"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00db\u0001\u0000\u0000\u0000\u0000\u00dd"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00df\u0001\u0000\u0000\u0000\u0000\u00e1"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00e3\u0001\u0000\u0000\u0000\u0000\u00e5"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00e7\u0001\u0000\u0000\u0000\u0000\u00e9"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00eb\u0001\u0000\u0000\u0000\u0000\u00ed"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00ef\u0001\u0000\u0000\u0000\u0000\u00f1"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00f3\u0001\u0000\u0000\u0000\u0000\u00f5"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00f7\u0001\u0000\u0000\u0000\u0000\u00f9"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00fb\u0001\u0000\u0000\u0000\u0000\u00fd"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u00ff\u0001\u0000\u0000\u0000\u0000\u0101"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u0103\u0001\u0000\u0000\u0000\u0000\u0105"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u0107\u0001\u0000\u0000\u0000\u0000\u0109"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u010b\u0001\u0000\u0000\u0000\u0000\u010d"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u010f\u0001\u0000\u0000\u0000\u0000\u0111"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u0113\u0001\u0000\u0000\u0000\u0000\u0115"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u0117\u0001\u0000\u0000\u0000\u0000\u0119"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u011b\u0001\u0000\u0000\u0000\u0000\u011d"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u011f\u0001\u0000\u0000\u0000\u0000\u0121"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u0123\u0001\u0000\u0000\u0000\u0000\u0129"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u012b\u0001\u0000\u0000\u0000\u0000\u012d"+
|
||||
"\u0001\u0000\u0000\u0000\u0000\u012f\u0001\u0000\u0000\u0000\u0000\u0131"+
|
||||
"\u0001\u0000\u0000\u0000\u0001\u0133\u0001\u0000\u0000\u0000\u0003\u013c"+
|
||||
"\u0001\u0000\u0000\u0000\u0005\u0143\u0001\u0000\u0000\u0000\u0007\u014b"+
|
||||
"\u0001\u0000\u0000\u0000\t\u0151\u0001\u0000\u0000\u0000\u000b\u0156\u0001"+
|
||||
"\u0000\u0000\u0000\r\u015b\u0001\u0000\u0000\u0000\u000f\u0161\u0001\u0000"+
|
||||
"\u0000\u0000\u0011\u0166\u0001\u0000\u0000\u0000\u0013\u016c\u0001\u0000"+
|
||||
"\u0000\u0000\u0015\u0172\u0001\u0000\u0000\u0000\u0017\u017b\u0001\u0000"+
|
||||
"\u0000\u0000\u0019\u0183\u0001\u0000\u0000\u0000\u001b\u0186\u0001\u0000"+
|
||||
"\u0000\u0000\u001d\u018d\u0001\u0000\u0000\u0000\u001f\u0192\u0001\u0000"+
|
||||
"\u0000\u0000!\u0197\u0001\u0000\u0000\u0000#\u019f\u0001\u0000\u0000\u0000"+
|
||||
"%\u01a5\u0001\u0000\u0000\u0000\'\u01ad\u0001\u0000\u0000\u0000)\u01b3"+
|
||||
"\u0001\u0000\u0000\u0000+\u01b7\u0001\u0000\u0000\u0000-\u01ba\u0001\u0000"+
|
||||
"\u0000\u0000/\u01bf\u0001\u0000\u0000\u00001\u01ca\u0001\u0000\u0000\u0000"+
|
||||
"3\u01d1\u0001\u0000\u0000\u00005\u01dc\u0001\u0000\u0000\u00007\u01e0"+
|
||||
"\u0001\u0000\u0000\u00009\u01ea\u0001\u0000\u0000\u0000;\u01ef\u0001\u0000"+
|
||||
"\u0000\u0000=\u01f6\u0001\u0000\u0000\u0000?\u01fa\u0001\u0000\u0000\u0000"+
|
||||
"A\u0202\u0001\u0000\u0000\u0000C\u020a\u0001\u0000\u0000\u0000E\u0214"+
|
||||
"\u0001\u0000\u0000\u0000G\u021b\u0001\u0000\u0000\u0000I\u0222\u0001\u0000"+
|
||||
"\u0000\u0000K\u0228\u0001\u0000\u0000\u0000M\u022f\u0001\u0000\u0000\u0000"+
|
||||
"O\u0238\u0001\u0000\u0000\u0000Q\u023e\u0001\u0000\u0000\u0000S\u0245"+
|
||||
"\u0001\u0000\u0000\u0000U\u0252\u0001\u0000\u0000\u0000W\u0257\u0001\u0000"+
|
||||
"\u0000\u0000Y\u025d\u0001\u0000\u0000\u0000[\u0264\u0001\u0000\u0000\u0000"+
|
||||
"]\u026e\u0001\u0000\u0000\u0000_\u0272\u0001\u0000\u0000\u0000a\u0277"+
|
||||
"\u0001\u0000\u0000\u0000c\u0280\u0001\u0000\u0000\u0000e\u028a\u0001\u0000"+
|
||||
"\u0000\u0000g\u028c\u0001\u0000\u0000\u0000i\u0290\u0001\u0000\u0000\u0000"+
|
||||
"k\u0294\u0001\u0000\u0000\u0000m\u0298\u0001\u0000\u0000\u0000o\u029c"+
|
||||
"\u0001\u0000\u0000\u0000q\u02a8\u0001\u0000\u0000\u0000s\u02aa\u0001\u0000"+
|
||||
"\u0000\u0000u\u02b3\u0001\u0000\u0000\u0000w\u02b5\u0001\u0000\u0000\u0000"+
|
||||
"y\u02b8\u0001\u0000\u0000\u0000{\u02be\u0001\u0000\u0000\u0000}\u02c1"+
|
||||
"\u0001\u0000\u0000\u0000\u007f\u02c5\u0001\u0000\u0000\u0000\u0081\u02c9"+
|
||||
"\u0001\u0000\u0000\u0000\u0083\u02d0\u0001\u0000\u0000\u0000\u0085\u02d3"+
|
||||
"\u0001\u0000\u0000\u0000\u0087\u02d9\u0001\u0000\u0000\u0000\u0089\u02db"+
|
||||
"\u0001\u0000\u0000\u0000\u008b\u02e1\u0001\u0000\u0000\u0000\u008d\u02e8"+
|
||||
"\u0001\u0000\u0000\u0000\u008f\u02eb\u0001\u0000\u0000\u0000\u0091\u02f1"+
|
||||
"\u0001\u0000\u0000\u0000\u0093\u02f3\u0001\u0000\u0000\u0000\u0095\u02f7"+
|
||||
"\u0001\u0000\u0000\u0000\u0097\u02fe\u0001\u0000\u0000\u0000\u0099\u0301"+
|
||||
"\u0001\u0000\u0000\u0000\u009b\u0307\u0001\u0000\u0000\u0000\u009d\u030b"+
|
||||
"\u0001\u0000\u0000\u0000\u009f\u0328\u0001\u0000\u0000\u0000\u00a1\u032a"+
|
||||
"\u0001\u0000\u0000\u0000\u00a3\u032d\u0001\u0000\u0000\u0000\u00a5\u0330"+
|
||||
"\u0001\u0000\u0000\u0000\u00a7\u0334\u0001\u0000\u0000\u0000\u00a9\u0336"+
|
||||
"\u0001\u0000\u0000\u0000\u00ab\u0338\u0001\u0000\u0000\u0000\u00ad\u0348"+
|
||||
"\u0001\u0000\u0000\u0000\u00af\u034a\u0001\u0000\u0000\u0000\u00b1\u034d"+
|
||||
"\u0001\u0000\u0000\u0000\u00b3\u0358\u0001\u0000\u0000\u0000\u00b5\u0362"+
|
||||
"\u0001\u0000\u0000\u0000\u00b7\u0364\u0001\u0000\u0000\u0000\u00b9\u0366"+
|
||||
"\u0001\u0000\u0000\u0000\u00bb\u036d\u0001\u0000\u0000\u0000\u00bd\u0373"+
|
||||
"\u0001\u0000\u0000\u0000\u00bf\u0380\u0001\u0000\u0000\u0000\u00c1\u03a2"+
|
||||
"\u0001\u0000\u0000\u0000\u00c3\u03a4\u0001\u0000\u0000\u0000\u00c5\u03a6"+
|
||||
"\u0001\u0000\u0000\u0000\u00c7\u03b1\u0001\u0000\u0000\u0000\u00c9\u03b6"+
|
||||
"\u0001\u0000\u0000\u0000\u00cb\u03b8\u0001\u0000\u0000\u0000\u00cd\u03ba"+
|
||||
"\u0001\u0000\u0000\u0000\u00cf\u03bc\u0001\u0000\u0000\u0000\u00d1\u03be"+
|
||||
"\u0001\u0000\u0000\u0000\u00d3\u03c0\u0001\u0000\u0000\u0000\u00d5\u03c2"+
|
||||
"\u0001\u0000\u0000\u0000\u00d7\u03c4\u0001\u0000\u0000\u0000\u00d9\u03c6"+
|
||||
"\u0001\u0000\u0000\u0000\u00db\u03c8\u0001\u0000\u0000\u0000\u00dd\u03ca"+
|
||||
"\u0001\u0000\u0000\u0000\u00df\u03cc\u0001\u0000\u0000\u0000\u00e1\u03ce"+
|
||||
"\u0001\u0000\u0000\u0000\u00e3\u03d0\u0001\u0000\u0000\u0000\u00e5\u03d2"+
|
||||
"\u0001\u0000\u0000\u0000\u00e7\u03d4\u0001\u0000\u0000\u0000\u00e9\u03d6"+
|
||||
"\u0001\u0000\u0000\u0000\u00eb\u03d9\u0001\u0000\u0000\u0000\u00ed\u03dc"+
|
||||
"\u0001\u0000\u0000\u0000\u00ef\u03df\u0001\u0000\u0000\u0000\u00f1\u03e2"+
|
||||
"\u0001\u0000\u0000\u0000\u00f3\u03e5\u0001\u0000\u0000\u0000\u00f5\u03e8"+
|
||||
"\u0001\u0000\u0000\u0000\u00f7\u03eb\u0001\u0000\u0000\u0000\u00f9\u03ee"+
|
||||
"\u0001\u0000\u0000\u0000\u00fb\u03f0\u0001\u0000\u0000\u0000\u00fd\u03f2"+
|
||||
"\u0001\u0000\u0000\u0000\u00ff\u03f4\u0001\u0000\u0000\u0000\u0101\u03f6"+
|
||||
"\u0001\u0000\u0000\u0000\u0103\u03f8\u0001\u0000\u0000\u0000\u0105\u03fa"+
|
||||
"\u0001\u0000\u0000\u0000\u0107\u03fc\u0001\u0000\u0000\u0000\u0109\u03fe"+
|
||||
"\u0001\u0000\u0000\u0000\u010b\u0401\u0001\u0000\u0000\u0000\u010d\u0404"+
|
||||
"\u0001\u0000\u0000\u0000\u010f\u0407\u0001\u0000\u0000\u0000\u0111\u040a"+
|
||||
"\u0001\u0000\u0000\u0000\u0113\u040d\u0001\u0000\u0000\u0000\u0115\u0410"+
|
||||
"\u0001\u0000\u0000\u0000\u0117\u0413\u0001\u0000\u0000\u0000\u0119\u0416"+
|
||||
"\u0001\u0000\u0000\u0000\u011b\u0419\u0001\u0000\u0000\u0000\u011d\u041c"+
|
||||
"\u0001\u0000\u0000\u0000\u011f\u0420\u0001\u0000\u0000\u0000\u0121\u0424"+
|
||||
"\u0001\u0000\u0000\u0000\u0123\u0429\u0001\u0000\u0000\u0000\u0125\u0431"+
|
||||
"\u0001\u0000\u0000\u0000\u0127\u0435\u0001\u0000\u0000\u0000\u0129\u0437"+
|
||||
"\u0001\u0000\u0000\u0000\u012b\u0439\u0001\u0000\u0000\u0000\u012d\u043e"+
|
||||
"\u0001\u0000\u0000\u0000\u012f\u0444\u0001\u0000\u0000\u0000\u0131\u0452"+
|
||||
"\u0001\u0000\u0000\u0000\u0133\u0134\u0005a\u0000\u0000\u0134\u0135\u0005"+
|
||||
"b\u0000\u0000\u0135\u0136\u0005s\u0000\u0000\u0136\u0137\u0005t\u0000"+
|
||||
"\u0000\u0137\u0138\u0005r\u0000\u0000\u0138\u0139\u0005a\u0000\u0000\u0139"+
|
||||
"\u013a\u0005c\u0000\u0000\u013a\u013b\u0005t\u0000\u0000\u013b\u0002\u0001"+
|
||||
"\u0000\u0000\u0000\u013c\u013d\u0005a\u0000\u0000\u013d\u013e\u0005s\u0000"+
|
||||
"\u0000\u013e\u013f\u0005s\u0000\u0000\u013f\u0140\u0005e\u0000\u0000\u0140"+
|
||||
"\u0141\u0005r\u0000\u0000\u0141\u0142\u0005t\u0000\u0000\u0142\u0004\u0001"+
|
||||
"\u0000\u0000\u0000\u0143\u0144\u0005b\u0000\u0000\u0144\u0145\u0005o\u0000"+
|
||||
"\u0000\u0145\u0146\u0005o\u0000\u0000\u0146\u0147\u0005l\u0000\u0000\u0147"+
|
||||
"\u0148\u0005e\u0000\u0000\u0148\u0149\u0005a\u0000\u0000\u0149\u014a\u0005"+
|
||||
"n\u0000\u0000\u014a\u0006\u0001\u0000\u0000\u0000\u014b\u014c\u0005b\u0000"+
|
||||
"\u0000\u014c\u014d\u0005r\u0000\u0000\u014d\u014e\u0005e\u0000\u0000\u014e"+
|
||||
"\u014f\u0005a\u0000\u0000\u014f\u0150\u0005k\u0000\u0000\u0150\b\u0001"+
|
||||
"\u0000\u0000\u0000\u0151\u0152\u0005b\u0000\u0000\u0152\u0153\u0005y\u0000"+
|
||||
"\u0000\u0153\u0154\u0005t\u0000\u0000\u0154\u0155\u0005e\u0000\u0000\u0155"+
|
||||
"\n\u0001\u0000\u0000\u0000\u0156\u0157\u0005c\u0000\u0000\u0157\u0158"+
|
||||
"\u0005a\u0000\u0000\u0158\u0159\u0005s\u0000\u0000\u0159\u015a\u0005e"+
|
||||
"\u0000\u0000\u015a\f\u0001\u0000\u0000\u0000\u015b\u015c\u0005c\u0000"+
|
||||
"\u0000\u015c\u015d\u0005a\u0000\u0000\u015d\u015e\u0005t\u0000\u0000\u015e"+
|
||||
"\u015f\u0005c\u0000\u0000\u015f\u0160\u0005h\u0000\u0000\u0160\u000e\u0001"+
|
||||
"\u0000\u0000\u0000\u0161\u0162\u0005c\u0000\u0000\u0162\u0163\u0005h\u0000"+
|
||||
"\u0000\u0163\u0164\u0005a\u0000\u0000\u0164\u0165\u0005r\u0000\u0000\u0165"+
|
||||
"\u0010\u0001\u0000\u0000\u0000\u0166\u0167\u0005c\u0000\u0000\u0167\u0168"+
|
||||
"\u0005l\u0000\u0000\u0168\u0169\u0005a\u0000\u0000\u0169\u016a\u0005s"+
|
||||
"\u0000\u0000\u016a\u016b\u0005s\u0000\u0000\u016b\u0012\u0001\u0000\u0000"+
|
||||
"\u0000\u016c\u016d\u0005c\u0000\u0000\u016d\u016e\u0005o\u0000\u0000\u016e"+
|
||||
"\u016f\u0005n\u0000\u0000\u016f\u0170\u0005s\u0000\u0000\u0170\u0171\u0005"+
|
||||
"t\u0000\u0000\u0171\u0014\u0001\u0000\u0000\u0000\u0172\u0173\u0005c\u0000"+
|
||||
"\u0000\u0173\u0174\u0005o\u0000\u0000\u0174\u0175\u0005n\u0000\u0000\u0175"+
|
||||
"\u0176\u0005t\u0000\u0000\u0176\u0177\u0005i\u0000\u0000\u0177\u0178\u0005"+
|
||||
"n\u0000\u0000\u0178\u0179\u0005u\u0000\u0000\u0179\u017a\u0005e\u0000"+
|
||||
"\u0000\u017a\u0016\u0001\u0000\u0000\u0000\u017b\u017c\u0005d\u0000\u0000"+
|
||||
"\u017c\u017d\u0005e\u0000\u0000\u017d\u017e\u0005f\u0000\u0000\u017e\u017f"+
|
||||
"\u0005a\u0000\u0000\u017f\u0180\u0005u\u0000\u0000\u0180\u0181\u0005l"+
|
||||
"\u0000\u0000\u0181\u0182\u0005t\u0000\u0000\u0182\u0018\u0001\u0000\u0000"+
|
||||
"\u0000\u0183\u0184\u0005d\u0000\u0000\u0184\u0185\u0005o\u0000\u0000\u0185"+
|
||||
"\u001a\u0001\u0000\u0000\u0000\u0186\u0187\u0005d\u0000\u0000\u0187\u0188"+
|
||||
"\u0005o\u0000\u0000\u0188\u0189\u0005u\u0000\u0000\u0189\u018a\u0005b"+
|
||||
"\u0000\u0000\u018a\u018b\u0005l\u0000\u0000\u018b\u018c\u0005e\u0000\u0000"+
|
||||
"\u018c\u001c\u0001\u0000\u0000\u0000\u018d\u018e\u0005e\u0000\u0000\u018e"+
|
||||
"\u018f\u0005l\u0000\u0000\u018f\u0190\u0005s\u0000\u0000\u0190\u0191\u0005"+
|
||||
"e\u0000\u0000\u0191\u001e\u0001\u0000\u0000\u0000\u0192\u0193\u0005e\u0000"+
|
||||
"\u0000\u0193\u0194\u0005n\u0000\u0000\u0194\u0195\u0005u\u0000\u0000\u0195"+
|
||||
"\u0196\u0005m\u0000\u0000\u0196 \u0001\u0000\u0000\u0000\u0197\u0198\u0005"+
|
||||
"e\u0000\u0000\u0198\u0199\u0005x\u0000\u0000\u0199\u019a\u0005t\u0000"+
|
||||
"\u0000\u019a\u019b\u0005e\u0000\u0000\u019b\u019c\u0005n\u0000\u0000\u019c"+
|
||||
"\u019d\u0005d\u0000\u0000\u019d\u019e\u0005s\u0000\u0000\u019e\"\u0001"+
|
||||
"\u0000\u0000\u0000\u019f\u01a0\u0005f\u0000\u0000\u01a0\u01a1\u0005i\u0000"+
|
||||
"\u0000\u01a1\u01a2\u0005n\u0000\u0000\u01a2\u01a3\u0005a\u0000\u0000\u01a3"+
|
||||
"\u01a4\u0005l\u0000\u0000\u01a4$\u0001\u0000\u0000\u0000\u01a5\u01a6\u0005"+
|
||||
"f\u0000\u0000\u01a6\u01a7\u0005i\u0000\u0000\u01a7\u01a8\u0005n\u0000"+
|
||||
"\u0000\u01a8\u01a9\u0005a\u0000\u0000\u01a9\u01aa\u0005l\u0000\u0000\u01aa"+
|
||||
"\u01ab\u0005l\u0000\u0000\u01ab\u01ac\u0005y\u0000\u0000\u01ac&\u0001"+
|
||||
"\u0000\u0000\u0000\u01ad\u01ae\u0005f\u0000\u0000\u01ae\u01af\u0005l\u0000"+
|
||||
"\u0000\u01af\u01b0\u0005o\u0000\u0000\u01b0\u01b1\u0005a\u0000\u0000\u01b1"+
|
||||
"\u01b2\u0005t\u0000\u0000\u01b2(\u0001\u0000\u0000\u0000\u01b3\u01b4\u0005"+
|
||||
"f\u0000\u0000\u01b4\u01b5\u0005o\u0000\u0000\u01b5\u01b6\u0005r\u0000"+
|
||||
"\u0000\u01b6*\u0001\u0000\u0000\u0000\u01b7\u01b8\u0005i\u0000\u0000\u01b8"+
|
||||
"\u01b9\u0005f\u0000\u0000\u01b9,\u0001\u0000\u0000\u0000\u01ba\u01bb\u0005"+
|
||||
"g\u0000\u0000\u01bb\u01bc\u0005o\u0000\u0000\u01bc\u01bd\u0005t\u0000"+
|
||||
"\u0000\u01bd\u01be\u0005o\u0000\u0000\u01be.\u0001\u0000\u0000\u0000\u01bf"+
|
||||
"\u01c0\u0005i\u0000\u0000\u01c0\u01c1\u0005m\u0000\u0000\u01c1\u01c2\u0005"+
|
||||
"p\u0000\u0000\u01c2\u01c3\u0005l\u0000\u0000\u01c3\u01c4\u0005e\u0000"+
|
||||
"\u0000\u01c4\u01c5\u0005m\u0000\u0000\u01c5\u01c6\u0005e\u0000\u0000\u01c6"+
|
||||
"\u01c7\u0005n\u0000\u0000\u01c7\u01c8\u0005t\u0000\u0000\u01c8\u01c9\u0005"+
|
||||
"s\u0000\u0000\u01c90\u0001\u0000\u0000\u0000\u01ca\u01cb\u0005i\u0000"+
|
||||
"\u0000\u01cb\u01cc\u0005m\u0000\u0000\u01cc\u01cd\u0005p\u0000\u0000\u01cd"+
|
||||
"\u01ce\u0005o\u0000\u0000\u01ce\u01cf\u0005r\u0000\u0000\u01cf\u01d0\u0005"+
|
||||
"t\u0000\u0000\u01d02\u0001\u0000\u0000\u0000\u01d1\u01d2\u0005i\u0000"+
|
||||
"\u0000\u01d2\u01d3\u0005n\u0000\u0000\u01d3\u01d4\u0005s\u0000\u0000\u01d4"+
|
||||
"\u01d5\u0005t\u0000\u0000\u01d5\u01d6\u0005a\u0000\u0000\u01d6\u01d7\u0005"+
|
||||
"n\u0000\u0000\u01d7\u01d8\u0005c\u0000\u0000\u01d8\u01d9\u0005e\u0000"+
|
||||
"\u0000\u01d9\u01da\u0005o\u0000\u0000\u01da\u01db\u0005f\u0000\u0000\u01db"+
|
||||
"4\u0001\u0000\u0000\u0000\u01dc\u01dd\u0005i\u0000\u0000\u01dd\u01de\u0005"+
|
||||
"n\u0000\u0000\u01de\u01df\u0005t\u0000\u0000\u01df6\u0001\u0000\u0000"+
|
||||
"\u0000\u01e0\u01e1\u0005i\u0000\u0000\u01e1\u01e2\u0005n\u0000\u0000\u01e2"+
|
||||
"\u01e3\u0005t\u0000\u0000\u01e3\u01e4\u0005e\u0000\u0000\u01e4\u01e5\u0005"+
|
||||
"r\u0000\u0000\u01e5\u01e6\u0005f\u0000\u0000\u01e6\u01e7\u0005a\u0000"+
|
||||
"\u0000\u01e7\u01e8\u0005c\u0000\u0000\u01e8\u01e9\u0005e\u0000\u0000\u01e9"+
|
||||
"8\u0001\u0000\u0000\u0000\u01ea\u01eb\u0005l\u0000\u0000\u01eb\u01ec\u0005"+
|
||||
"o\u0000\u0000\u01ec\u01ed\u0005n\u0000\u0000\u01ed\u01ee\u0005g\u0000"+
|
||||
"\u0000\u01ee:\u0001\u0000\u0000\u0000\u01ef\u01f0\u0005n\u0000\u0000\u01f0"+
|
||||
"\u01f1\u0005a\u0000\u0000\u01f1\u01f2\u0005t\u0000\u0000\u01f2\u01f3\u0005"+
|
||||
"i\u0000\u0000\u01f3\u01f4\u0005v\u0000\u0000\u01f4\u01f5\u0005e\u0000"+
|
||||
"\u0000\u01f5<\u0001\u0000\u0000\u0000\u01f6\u01f7\u0005n\u0000\u0000\u01f7"+
|
||||
"\u01f8\u0005e\u0000\u0000\u01f8\u01f9\u0005w\u0000\u0000\u01f9>\u0001"+
|
||||
"\u0000\u0000\u0000\u01fa\u01fb\u0005p\u0000\u0000\u01fb\u01fc\u0005a\u0000"+
|
||||
"\u0000\u01fc\u01fd\u0005c\u0000\u0000\u01fd\u01fe\u0005k\u0000\u0000\u01fe"+
|
||||
"\u01ff\u0005a\u0000\u0000\u01ff\u0200\u0005g\u0000\u0000\u0200\u0201\u0005"+
|
||||
"e\u0000\u0000\u0201@\u0001\u0000\u0000\u0000\u0202\u0203\u0005p\u0000"+
|
||||
"\u0000\u0203\u0204\u0005r\u0000\u0000\u0204\u0205\u0005i\u0000\u0000\u0205"+
|
||||
"\u0206\u0005v\u0000\u0000\u0206\u0207\u0005a\u0000\u0000\u0207\u0208\u0005"+
|
||||
"t\u0000\u0000\u0208\u0209\u0005e\u0000\u0000\u0209B\u0001\u0000\u0000"+
|
||||
"\u0000\u020a\u020b\u0005p\u0000\u0000\u020b\u020c\u0005r\u0000\u0000\u020c"+
|
||||
"\u020d\u0005o\u0000\u0000\u020d\u020e\u0005t\u0000\u0000\u020e\u020f\u0005"+
|
||||
"e\u0000\u0000\u020f\u0210\u0005c\u0000\u0000\u0210\u0211\u0005t\u0000"+
|
||||
"\u0000\u0211\u0212\u0005e\u0000\u0000\u0212\u0213\u0005d\u0000\u0000\u0213"+
|
||||
"D\u0001\u0000\u0000\u0000\u0214\u0215\u0005p\u0000\u0000\u0215\u0216\u0005"+
|
||||
"u\u0000\u0000\u0216\u0217\u0005b\u0000\u0000\u0217\u0218\u0005l\u0000"+
|
||||
"\u0000\u0218\u0219\u0005i\u0000\u0000\u0219\u021a\u0005c\u0000\u0000\u021a"+
|
||||
"F\u0001\u0000\u0000\u0000\u021b\u021c\u0005r\u0000\u0000\u021c\u021d\u0005"+
|
||||
"e\u0000\u0000\u021d\u021e\u0005t\u0000\u0000\u021e\u021f\u0005u\u0000"+
|
||||
"\u0000\u021f\u0220\u0005r\u0000\u0000\u0220\u0221\u0005n\u0000\u0000\u0221"+
|
||||
"H\u0001\u0000\u0000\u0000\u0222\u0223\u0005s\u0000\u0000\u0223\u0224\u0005"+
|
||||
"h\u0000\u0000\u0224\u0225\u0005o\u0000\u0000\u0225\u0226\u0005r\u0000"+
|
||||
"\u0000\u0226\u0227\u0005t\u0000\u0000\u0227J\u0001\u0000\u0000\u0000\u0228"+
|
||||
"\u0229\u0005s\u0000\u0000\u0229\u022a\u0005t\u0000\u0000\u022a\u022b\u0005"+
|
||||
"a\u0000\u0000\u022b\u022c\u0005t\u0000\u0000\u022c\u022d\u0005i\u0000"+
|
||||
"\u0000\u022d\u022e\u0005c\u0000\u0000\u022eL\u0001\u0000\u0000\u0000\u022f"+
|
||||
"\u0230\u0005s\u0000\u0000\u0230\u0231\u0005t\u0000\u0000\u0231\u0232\u0005"+
|
||||
"r\u0000\u0000\u0232\u0233\u0005i\u0000\u0000\u0233\u0234\u0005c\u0000"+
|
||||
"\u0000\u0234\u0235\u0005t\u0000\u0000\u0235\u0236\u0005f\u0000\u0000\u0236"+
|
||||
"\u0237\u0005p\u0000\u0000\u0237N\u0001\u0000\u0000\u0000\u0238\u0239\u0005"+
|
||||
"s\u0000\u0000\u0239\u023a\u0005u\u0000\u0000\u023a\u023b\u0005p\u0000"+
|
||||
"\u0000\u023b\u023c\u0005e\u0000\u0000\u023c\u023d\u0005r\u0000\u0000\u023d"+
|
||||
"P\u0001\u0000\u0000\u0000\u023e\u023f\u0005s\u0000\u0000\u023f\u0240\u0005"+
|
||||
"w\u0000\u0000\u0240\u0241\u0005i\u0000\u0000\u0241\u0242\u0005t\u0000"+
|
||||
"\u0000\u0242\u0243\u0005c\u0000\u0000\u0243\u0244\u0005h\u0000\u0000\u0244"+
|
||||
"R\u0001\u0000\u0000\u0000\u0245\u0246\u0005s\u0000\u0000\u0246\u0247\u0005"+
|
||||
"y\u0000\u0000\u0247\u0248\u0005n\u0000\u0000\u0248\u0249\u0005c\u0000"+
|
||||
"\u0000\u0249\u024a\u0005h\u0000\u0000\u024a\u024b\u0005r\u0000\u0000\u024b"+
|
||||
"\u024c\u0005o\u0000\u0000\u024c\u024d\u0005n\u0000\u0000\u024d\u024e\u0005"+
|
||||
"i\u0000\u0000\u024e\u024f\u0005z\u0000\u0000\u024f\u0250\u0005e\u0000"+
|
||||
"\u0000\u0250\u0251\u0005d\u0000\u0000\u0251T\u0001\u0000\u0000\u0000\u0252"+
|
||||
"\u0253\u0005t\u0000\u0000\u0253\u0254\u0005h\u0000\u0000\u0254\u0255\u0005"+
|
||||
"i\u0000\u0000\u0255\u0256\u0005s\u0000\u0000\u0256V\u0001\u0000\u0000"+
|
||||
"\u0000\u0257\u0258\u0005t\u0000\u0000\u0258\u0259\u0005h\u0000\u0000\u0259"+
|
||||
"\u025a\u0005r\u0000\u0000\u025a\u025b\u0005o\u0000\u0000\u025b\u025c\u0005"+
|
||||
"w\u0000\u0000\u025cX\u0001\u0000\u0000\u0000\u025d\u025e\u0005t\u0000"+
|
||||
"\u0000\u025e\u025f\u0005h\u0000\u0000\u025f\u0260\u0005r\u0000\u0000\u0260"+
|
||||
"\u0261\u0005o\u0000\u0000\u0261\u0262\u0005w\u0000\u0000\u0262\u0263\u0005"+
|
||||
"s\u0000\u0000\u0263Z\u0001\u0000\u0000\u0000\u0264\u0265\u0005t\u0000"+
|
||||
"\u0000\u0265\u0266\u0005r\u0000\u0000\u0266\u0267\u0005a\u0000\u0000\u0267"+
|
||||
"\u0268\u0005n\u0000\u0000\u0268\u0269\u0005s\u0000\u0000\u0269\u026a\u0005"+
|
||||
"i\u0000\u0000\u026a\u026b\u0005e\u0000\u0000\u026b\u026c\u0005n\u0000"+
|
||||
"\u0000\u026c\u026d\u0005t\u0000\u0000\u026d\\\u0001\u0000\u0000\u0000"+
|
||||
"\u026e\u026f\u0005t\u0000\u0000\u026f\u0270\u0005r\u0000\u0000\u0270\u0271"+
|
||||
"\u0005y\u0000\u0000\u0271^\u0001\u0000\u0000\u0000\u0272\u0273\u0005v"+
|
||||
"\u0000\u0000\u0273\u0274\u0005o\u0000\u0000\u0274\u0275\u0005i\u0000\u0000"+
|
||||
"\u0275\u0276\u0005d\u0000\u0000\u0276`\u0001\u0000\u0000\u0000\u0277\u0278"+
|
||||
"\u0005v\u0000\u0000\u0278\u0279\u0005o\u0000\u0000\u0279\u027a\u0005l"+
|
||||
"\u0000\u0000\u027a\u027b\u0005a\u0000\u0000\u027b\u027c\u0005t\u0000\u0000"+
|
||||
"\u027c\u027d\u0005i\u0000\u0000\u027d\u027e\u0005l\u0000\u0000\u027e\u027f"+
|
||||
"\u0005e\u0000\u0000\u027fb\u0001\u0000\u0000\u0000\u0280\u0281\u0005w"+
|
||||
"\u0000\u0000\u0281\u0282\u0005h\u0000\u0000\u0282\u0283\u0005i\u0000\u0000"+
|
||||
"\u0283\u0284\u0005l\u0000\u0000\u0284\u0285\u0005e\u0000\u0000\u0285d"+
|
||||
"\u0001\u0000\u0000\u0000\u0286\u028b\u0003g3\u0000\u0287\u028b\u0003i"+
|
||||
"4\u0000\u0288\u028b\u0003k5\u0000\u0289\u028b\u0003m6\u0000\u028a\u0286"+
|
||||
"\u0001\u0000\u0000\u0000\u028a\u0287\u0001\u0000\u0000\u0000\u028a\u0288"+
|
||||
"\u0001\u0000\u0000\u0000\u028a\u0289\u0001\u0000\u0000\u0000\u028bf\u0001"+
|
||||
"\u0000\u0000\u0000\u028c\u028e\u0003q8\u0000\u028d\u028f\u0003o7\u0000"+
|
||||
"\u028e\u028d\u0001\u0000\u0000\u0000\u028e\u028f\u0001\u0000\u0000\u0000"+
|
||||
"\u028fh\u0001\u0000\u0000\u0000\u0290\u0292\u0003\u007f?\u0000\u0291\u0293"+
|
||||
"\u0003o7\u0000\u0292\u0291\u0001\u0000\u0000\u0000\u0292\u0293\u0001\u0000"+
|
||||
"\u0000\u0000\u0293j\u0001\u0000\u0000\u0000\u0294\u0296\u0003\u0089D\u0000"+
|
||||
"\u0295\u0297\u0003o7\u0000\u0296\u0295\u0001\u0000\u0000\u0000\u0296\u0297"+
|
||||
"\u0001\u0000\u0000\u0000\u0297l\u0001\u0000\u0000\u0000\u0298\u029a\u0003"+
|
||||
"\u0093I\u0000\u0299\u029b\u0003o7\u0000\u029a\u0299\u0001\u0000\u0000"+
|
||||
"\u0000\u029a\u029b\u0001\u0000\u0000\u0000\u029bn\u0001\u0000\u0000\u0000"+
|
||||
"\u029c\u029d\u0007\u0000\u0000\u0000\u029dp\u0001\u0000\u0000\u0000\u029e"+
|
||||
"\u02a9\u00050\u0000\u0000\u029f\u02a6\u0003w;\u0000\u02a0\u02a2\u0003"+
|
||||
"s9\u0000\u02a1\u02a0\u0001\u0000\u0000\u0000\u02a1\u02a2\u0001\u0000\u0000"+
|
||||
"\u0000\u02a2\u02a7\u0001\u0000\u0000\u0000\u02a3\u02a4\u0003}>\u0000\u02a4"+
|
||||
"\u02a5\u0003s9\u0000\u02a5\u02a7\u0001\u0000\u0000\u0000\u02a6\u02a1\u0001"+
|
||||
"\u0000\u0000\u0000\u02a6\u02a3\u0001\u0000\u0000\u0000\u02a7\u02a9\u0001"+
|
||||
"\u0000\u0000\u0000\u02a8\u029e\u0001\u0000\u0000\u0000\u02a8\u029f\u0001"+
|
||||
"\u0000\u0000\u0000\u02a9r\u0001\u0000\u0000\u0000\u02aa\u02af\u0003u:"+
|
||||
"\u0000\u02ab\u02ad\u0003y<\u0000\u02ac\u02ab\u0001\u0000\u0000\u0000\u02ac"+
|
||||
"\u02ad\u0001\u0000\u0000\u0000\u02ad\u02ae\u0001\u0000\u0000\u0000\u02ae"+
|
||||
"\u02b0\u0003u:\u0000\u02af\u02ac\u0001\u0000\u0000\u0000\u02af\u02b0\u0001"+
|
||||
"\u0000\u0000\u0000\u02b0t\u0001\u0000\u0000\u0000\u02b1\u02b4\u00050\u0000"+
|
||||
"\u0000\u02b2\u02b4\u0003w;\u0000\u02b3\u02b1\u0001\u0000\u0000\u0000\u02b3"+
|
||||
"\u02b2\u0001\u0000\u0000\u0000\u02b4v\u0001\u0000\u0000\u0000\u02b5\u02b6"+
|
||||
"\u0007\u0001\u0000\u0000\u02b6x\u0001\u0000\u0000\u0000\u02b7\u02b9\u0003"+
|
||||
"{=\u0000\u02b8\u02b7\u0001\u0000\u0000\u0000\u02b9\u02ba\u0001\u0000\u0000"+
|
||||
"\u0000\u02ba\u02b8\u0001\u0000\u0000\u0000\u02ba\u02bb\u0001\u0000\u0000"+
|
||||
"\u0000\u02bbz\u0001\u0000\u0000\u0000\u02bc\u02bf\u0003u:\u0000\u02bd"+
|
||||
"\u02bf\u0005_\u0000\u0000\u02be\u02bc\u0001\u0000\u0000\u0000\u02be\u02bd"+
|
||||
"\u0001\u0000\u0000\u0000\u02bf|\u0001\u0000\u0000\u0000\u02c0\u02c2\u0005"+
|
||||
"_\u0000\u0000\u02c1\u02c0\u0001\u0000\u0000\u0000\u02c2\u02c3\u0001\u0000"+
|
||||
"\u0000\u0000\u02c3\u02c1\u0001\u0000\u0000\u0000\u02c3\u02c4\u0001\u0000"+
|
||||
"\u0000\u0000\u02c4~\u0001\u0000\u0000\u0000\u02c5\u02c6\u00050\u0000\u0000"+
|
||||
"\u02c6\u02c7\u0007\u0002\u0000\u0000\u02c7\u02c8\u0003\u0081@\u0000\u02c8"+
|
||||
"\u0080\u0001\u0000\u0000\u0000\u02c9\u02ce\u0003\u0083A\u0000\u02ca\u02cc"+
|
||||
"\u0003\u0085B\u0000\u02cb\u02ca\u0001\u0000\u0000\u0000\u02cb\u02cc\u0001"+
|
||||
"\u0000\u0000\u0000\u02cc\u02cd\u0001\u0000\u0000\u0000\u02cd\u02cf\u0003"+
|
||||
"\u0083A\u0000\u02ce\u02cb\u0001\u0000\u0000\u0000\u02ce\u02cf\u0001\u0000"+
|
||||
"\u0000\u0000\u02cf\u0082\u0001\u0000\u0000\u0000\u02d0\u02d1\u0007\u0003"+
|
||||
"\u0000\u0000\u02d1\u0084\u0001\u0000\u0000\u0000\u02d2\u02d4\u0003\u0087"+
|
||||
"C\u0000\u02d3\u02d2\u0001\u0000\u0000\u0000\u02d4\u02d5\u0001\u0000\u0000"+
|
||||
"\u0000\u02d5\u02d3\u0001\u0000\u0000\u0000\u02d5\u02d6\u0001\u0000\u0000"+
|
||||
"\u0000\u02d6\u0086\u0001\u0000\u0000\u0000\u02d7\u02da\u0003\u0083A\u0000"+
|
||||
"\u02d8\u02da\u0005_\u0000\u0000\u02d9\u02d7\u0001\u0000\u0000\u0000\u02d9"+
|
||||
"\u02d8\u0001\u0000\u0000\u0000\u02da\u0088\u0001\u0000\u0000\u0000\u02db"+
|
||||
"\u02dd\u00050\u0000\u0000\u02dc\u02de\u0003}>\u0000\u02dd\u02dc\u0001"+
|
||||
"\u0000\u0000\u0000\u02dd\u02de\u0001\u0000\u0000\u0000\u02de\u02df\u0001"+
|
||||
"\u0000\u0000\u0000\u02df\u02e0\u0003\u008bE\u0000\u02e0\u008a\u0001\u0000"+
|
||||
"\u0000\u0000\u02e1\u02e6\u0003\u008dF\u0000\u02e2\u02e4\u0003\u008fG\u0000"+
|
||||
"\u02e3\u02e2\u0001\u0000\u0000\u0000\u02e3\u02e4\u0001\u0000\u0000\u0000"+
|
||||
"\u02e4\u02e5\u0001\u0000\u0000\u0000\u02e5\u02e7\u0003\u008dF\u0000\u02e6"+
|
||||
"\u02e3\u0001\u0000\u0000\u0000\u02e6\u02e7\u0001\u0000\u0000\u0000\u02e7"+
|
||||
"\u008c\u0001\u0000\u0000\u0000\u02e8\u02e9\u0007\u0004\u0000\u0000\u02e9"+
|
||||
"\u008e\u0001\u0000\u0000\u0000\u02ea\u02ec\u0003\u0091H\u0000\u02eb\u02ea"+
|
||||
"\u0001\u0000\u0000\u0000\u02ec\u02ed\u0001\u0000\u0000\u0000\u02ed\u02eb"+
|
||||
"\u0001\u0000\u0000\u0000\u02ed\u02ee\u0001\u0000\u0000\u0000\u02ee\u0090"+
|
||||
"\u0001\u0000\u0000\u0000\u02ef\u02f2\u0003\u008dF\u0000\u02f0\u02f2\u0005"+
|
||||
"_\u0000\u0000\u02f1\u02ef\u0001\u0000\u0000\u0000\u02f1\u02f0\u0001\u0000"+
|
||||
"\u0000\u0000\u02f2\u0092\u0001\u0000\u0000\u0000\u02f3\u02f4\u00050\u0000"+
|
||||
"\u0000\u02f4\u02f5\u0007\u0005\u0000\u0000\u02f5\u02f6\u0003\u0095J\u0000"+
|
||||
"\u02f6\u0094\u0001\u0000\u0000\u0000\u02f7\u02fc\u0003\u0097K\u0000\u02f8"+
|
||||
"\u02fa\u0003\u0099L\u0000\u02f9\u02f8\u0001\u0000\u0000\u0000\u02f9\u02fa"+
|
||||
"\u0001\u0000\u0000\u0000\u02fa\u02fb\u0001\u0000\u0000\u0000\u02fb\u02fd"+
|
||||
"\u0003\u0097K\u0000\u02fc\u02f9\u0001\u0000\u0000\u0000\u02fc\u02fd\u0001"+
|
||||
"\u0000\u0000\u0000\u02fd\u0096\u0001\u0000\u0000\u0000\u02fe\u02ff\u0007"+
|
||||
"\u0006\u0000\u0000\u02ff\u0098\u0001\u0000\u0000\u0000\u0300\u0302\u0003"+
|
||||
"\u009bM\u0000\u0301\u0300\u0001\u0000\u0000\u0000\u0302\u0303\u0001\u0000"+
|
||||
"\u0000\u0000\u0303\u0301\u0001\u0000\u0000\u0000\u0303\u0304\u0001\u0000"+
|
||||
"\u0000\u0000\u0304\u009a\u0001\u0000\u0000\u0000\u0305\u0308\u0003\u0097"+
|
||||
"K\u0000\u0306\u0308\u0005_\u0000\u0000\u0307\u0305\u0001\u0000\u0000\u0000"+
|
||||
"\u0307\u0306\u0001\u0000\u0000\u0000\u0308\u009c\u0001\u0000\u0000\u0000"+
|
||||
"\u0309\u030c\u0003\u009fO\u0000\u030a\u030c\u0003\u00abU\u0000\u030b\u0309"+
|
||||
"\u0001\u0000\u0000\u0000\u030b\u030a\u0001\u0000\u0000\u0000\u030c\u009e"+
|
||||
"\u0001\u0000\u0000\u0000\u030d\u030e\u0003s9\u0000\u030e\u0310\u0005."+
|
||||
"\u0000\u0000\u030f\u0311\u0003s9\u0000\u0310\u030f\u0001\u0000\u0000\u0000"+
|
||||
"\u0310\u0311\u0001\u0000\u0000\u0000\u0311\u0313\u0001\u0000\u0000\u0000"+
|
||||
"\u0312\u0314\u0003\u00a1P\u0000\u0313\u0312\u0001\u0000\u0000\u0000\u0313"+
|
||||
"\u0314\u0001\u0000\u0000\u0000\u0314\u0316\u0001\u0000\u0000\u0000\u0315"+
|
||||
"\u0317\u0003\u00a9T\u0000\u0316\u0315\u0001\u0000\u0000\u0000\u0316\u0317"+
|
||||
"\u0001\u0000\u0000\u0000\u0317\u0329\u0001\u0000\u0000\u0000\u0318\u0319"+
|
||||
"\u0005.\u0000\u0000\u0319\u031b\u0003s9\u0000\u031a\u031c\u0003\u00a1"+
|
||||
"P\u0000\u031b\u031a\u0001\u0000\u0000\u0000\u031b\u031c\u0001\u0000\u0000"+
|
||||
"\u0000\u031c\u031e\u0001\u0000\u0000\u0000\u031d\u031f\u0003\u00a9T\u0000"+
|
||||
"\u031e\u031d\u0001\u0000\u0000\u0000\u031e\u031f\u0001\u0000\u0000\u0000"+
|
||||
"\u031f\u0329\u0001\u0000\u0000\u0000\u0320\u0321\u0003s9\u0000\u0321\u0323"+
|
||||
"\u0003\u00a1P\u0000\u0322\u0324\u0003\u00a9T\u0000\u0323\u0322\u0001\u0000"+
|
||||
"\u0000\u0000\u0323\u0324\u0001\u0000\u0000\u0000\u0324\u0329\u0001\u0000"+
|
||||
"\u0000\u0000\u0325\u0326\u0003s9\u0000\u0326\u0327\u0003\u00a9T\u0000"+
|
||||
"\u0327\u0329\u0001\u0000\u0000\u0000\u0328\u030d\u0001\u0000\u0000\u0000"+
|
||||
"\u0328\u0318\u0001\u0000\u0000\u0000\u0328\u0320\u0001\u0000\u0000\u0000"+
|
||||
"\u0328\u0325\u0001\u0000\u0000\u0000\u0329\u00a0\u0001\u0000\u0000\u0000"+
|
||||
"\u032a\u032b\u0003\u00a3Q\u0000\u032b\u032c\u0003\u00a5R\u0000\u032c\u00a2"+
|
||||
"\u0001\u0000\u0000\u0000\u032d\u032e\u0007\u0007\u0000\u0000\u032e\u00a4"+
|
||||
"\u0001\u0000\u0000\u0000\u032f\u0331\u0003\u00a7S\u0000\u0330\u032f\u0001"+
|
||||
"\u0000\u0000\u0000\u0330\u0331\u0001\u0000\u0000\u0000\u0331\u0332\u0001"+
|
||||
"\u0000\u0000\u0000\u0332\u0333\u0003s9\u0000\u0333\u00a6\u0001\u0000\u0000"+
|
||||
"\u0000\u0334\u0335\u0007\b\u0000\u0000\u0335\u00a8\u0001\u0000\u0000\u0000"+
|
||||
"\u0336\u0337\u0007\t\u0000\u0000\u0337\u00aa\u0001\u0000\u0000\u0000\u0338"+
|
||||
"\u0339\u0003\u00adV\u0000\u0339\u033b\u0003\u00afW\u0000\u033a\u033c\u0003"+
|
||||
"\u00a9T\u0000\u033b\u033a\u0001\u0000\u0000\u0000\u033b\u033c\u0001\u0000"+
|
||||
"\u0000\u0000\u033c\u00ac\u0001\u0000\u0000\u0000\u033d\u033f\u0003\u007f"+
|
||||
"?\u0000\u033e\u0340\u0005.\u0000\u0000\u033f\u033e\u0001\u0000\u0000\u0000"+
|
||||
"\u033f\u0340\u0001\u0000\u0000\u0000\u0340\u0349\u0001\u0000\u0000\u0000"+
|
||||
"\u0341\u0342\u00050\u0000\u0000\u0342\u0344\u0007\u0002\u0000\u0000\u0343"+
|
||||
"\u0345\u0003\u0081@\u0000\u0344\u0343\u0001\u0000\u0000\u0000\u0344\u0345"+
|
||||
"\u0001\u0000\u0000\u0000\u0345\u0346\u0001\u0000\u0000\u0000\u0346\u0347"+
|
||||
"\u0005.\u0000\u0000\u0347\u0349\u0003\u0081@\u0000\u0348\u033d\u0001\u0000"+
|
||||
"\u0000\u0000\u0348\u0341\u0001\u0000\u0000\u0000\u0349\u00ae\u0001\u0000"+
|
||||
"\u0000\u0000\u034a\u034b\u0003\u00b1X\u0000\u034b\u034c\u0003\u00a5R\u0000"+
|
||||
"\u034c\u00b0\u0001\u0000\u0000\u0000\u034d\u034e\u0007\n\u0000\u0000\u034e"+
|
||||
"\u00b2\u0001\u0000\u0000\u0000\u034f\u0350\u0005t\u0000\u0000\u0350\u0351"+
|
||||
"\u0005r\u0000\u0000\u0351\u0352\u0005u\u0000\u0000\u0352\u0359\u0005e"+
|
||||
"\u0000\u0000\u0353\u0354\u0005f\u0000\u0000\u0354\u0355\u0005a\u0000\u0000"+
|
||||
"\u0355\u0356\u0005l\u0000\u0000\u0356\u0357\u0005s\u0000\u0000\u0357\u0359"+
|
||||
"\u0005e\u0000\u0000\u0358\u034f\u0001\u0000\u0000\u0000\u0358\u0353\u0001"+
|
||||
"\u0000\u0000\u0000\u0359\u00b4\u0001\u0000\u0000\u0000\u035a\u035b\u0005"+
|
||||
"\'\u0000\u0000\u035b\u035c\u0003\u00b7[\u0000\u035c\u035d\u0005\'\u0000"+
|
||||
"\u0000\u035d\u0363\u0001\u0000\u0000\u0000\u035e\u035f\u0005\'\u0000\u0000"+
|
||||
"\u035f\u0360\u0003\u00bf_\u0000\u0360\u0361\u0005\'\u0000\u0000\u0361"+
|
||||
"\u0363\u0001\u0000\u0000\u0000\u0362\u035a\u0001\u0000\u0000\u0000\u0362"+
|
||||
"\u035e\u0001\u0000\u0000\u0000\u0363\u00b6\u0001\u0000\u0000\u0000\u0364"+
|
||||
"\u0365\b\u000b\u0000\u0000\u0365\u00b8\u0001\u0000\u0000\u0000\u0366\u0368"+
|
||||
"\u0005\"\u0000\u0000\u0367\u0369\u0003\u00bb]\u0000\u0368\u0367\u0001"+
|
||||
"\u0000\u0000\u0000\u0368\u0369\u0001\u0000\u0000\u0000\u0369\u036a\u0001"+
|
||||
"\u0000\u0000\u0000\u036a\u036b\u0005\"\u0000\u0000\u036b\u00ba\u0001\u0000"+
|
||||
"\u0000\u0000\u036c\u036e\u0003\u00bd^\u0000\u036d\u036c\u0001\u0000\u0000"+
|
||||
"\u0000\u036e\u036f\u0001\u0000\u0000\u0000\u036f\u036d\u0001\u0000\u0000"+
|
||||
"\u0000\u036f\u0370\u0001\u0000\u0000\u0000\u0370\u00bc\u0001\u0000\u0000"+
|
||||
"\u0000\u0371\u0374\b\f\u0000\u0000\u0372\u0374\u0003\u00bf_\u0000\u0373"+
|
||||
"\u0371\u0001\u0000\u0000\u0000\u0373\u0372\u0001\u0000\u0000\u0000\u0374"+
|
||||
"\u00be\u0001\u0000\u0000\u0000\u0375\u037b\u0005\\\u0000\u0000\u0376\u0377"+
|
||||
"\u0005u\u0000\u0000\u0377\u0378\u00050\u0000\u0000\u0378\u0379\u00050"+
|
||||
"\u0000\u0000\u0379\u037a\u00055\u0000\u0000\u037a\u037c\u0005c\u0000\u0000"+
|
||||
"\u037b\u0376\u0001\u0000\u0000\u0000\u037b\u037c\u0001\u0000\u0000\u0000"+
|
||||
"\u037c\u037d\u0001\u0000\u0000\u0000\u037d\u0381\u0007\r\u0000\u0000\u037e"+
|
||||
"\u0381\u0003\u00c1`\u0000\u037f\u0381\u0003\u00c5b\u0000\u0380\u0375\u0001"+
|
||||
"\u0000\u0000\u0000\u0380\u037e\u0001\u0000\u0000\u0000\u0380\u037f\u0001"+
|
||||
"\u0000\u0000\u0000\u0381\u00c0\u0001\u0000\u0000\u0000\u0382\u0388\u0005"+
|
||||
"\\\u0000\u0000\u0383\u0384\u0005u\u0000\u0000\u0384\u0385\u00050\u0000"+
|
||||
"\u0000\u0385\u0386\u00050\u0000\u0000\u0386\u0387\u00055\u0000\u0000\u0387"+
|
||||
"\u0389\u0005c\u0000\u0000\u0388\u0383\u0001\u0000\u0000\u0000\u0388\u0389"+
|
||||
"\u0001\u0000\u0000\u0000\u0389\u038a\u0001\u0000\u0000\u0000\u038a\u03a3"+
|
||||
"\u0003\u008dF\u0000\u038b\u0391\u0005\\\u0000\u0000\u038c\u038d\u0005"+
|
||||
"u\u0000\u0000\u038d\u038e\u00050\u0000\u0000\u038e\u038f\u00050\u0000"+
|
||||
"\u0000\u038f\u0390\u00055\u0000\u0000\u0390\u0392\u0005c\u0000\u0000\u0391"+
|
||||
"\u038c\u0001\u0000\u0000\u0000\u0391\u0392\u0001\u0000\u0000\u0000\u0392"+
|
||||
"\u0393\u0001\u0000\u0000\u0000\u0393\u0394\u0003\u008dF\u0000\u0394\u0395"+
|
||||
"\u0003\u008dF\u0000\u0395\u03a3\u0001\u0000\u0000\u0000\u0396\u039c\u0005"+
|
||||
"\\\u0000\u0000\u0397\u0398\u0005u\u0000\u0000\u0398\u0399\u00050\u0000"+
|
||||
"\u0000\u0399\u039a\u00050\u0000\u0000\u039a\u039b\u00055\u0000\u0000\u039b"+
|
||||
"\u039d\u0005c\u0000\u0000\u039c\u0397\u0001\u0000\u0000\u0000\u039c\u039d"+
|
||||
"\u0001\u0000\u0000\u0000\u039d\u039e\u0001\u0000\u0000\u0000\u039e\u039f"+
|
||||
"\u0003\u00c3a\u0000\u039f\u03a0\u0003\u008dF\u0000\u03a0\u03a1\u0003\u008d"+
|
||||
"F\u0000\u03a1\u03a3\u0001\u0000\u0000\u0000\u03a2\u0382\u0001\u0000\u0000"+
|
||||
"\u0000\u03a2\u038b\u0001\u0000\u0000\u0000\u03a2\u0396\u0001\u0000\u0000"+
|
||||
"\u0000\u03a3\u00c2\u0001\u0000\u0000\u0000\u03a4\u03a5\u0007\u000e\u0000"+
|
||||
"\u0000\u03a5\u00c4\u0001\u0000\u0000\u0000\u03a6\u03a8\u0005\\\u0000\u0000"+
|
||||
"\u03a7\u03a9\u0005u\u0000\u0000\u03a8\u03a7\u0001\u0000\u0000\u0000\u03a9"+
|
||||
"\u03aa\u0001\u0000\u0000\u0000\u03aa\u03a8\u0001\u0000\u0000\u0000\u03aa"+
|
||||
"\u03ab\u0001\u0000\u0000\u0000\u03ab\u03ac\u0001\u0000\u0000\u0000\u03ac"+
|
||||
"\u03ad\u0003\u0083A\u0000\u03ad\u03ae\u0003\u0083A\u0000\u03ae\u03af\u0003"+
|
||||
"\u0083A\u0000\u03af\u03b0\u0003\u0083A\u0000\u03b0\u00c6\u0001\u0000\u0000"+
|
||||
"\u0000\u03b1\u03b2\u0005n\u0000\u0000\u03b2\u03b3\u0005u\u0000\u0000\u03b3"+
|
||||
"\u03b4\u0005l\u0000\u0000\u03b4\u03b5\u0005l\u0000\u0000\u03b5\u00c8\u0001"+
|
||||
"\u0000\u0000\u0000\u03b6\u03b7\u0005(\u0000\u0000\u03b7\u00ca\u0001\u0000"+
|
||||
"\u0000\u0000\u03b8\u03b9\u0005)\u0000\u0000\u03b9\u00cc\u0001\u0000\u0000"+
|
||||
"\u0000\u03ba\u03bb\u0005{\u0000\u0000\u03bb\u00ce\u0001\u0000\u0000\u0000"+
|
||||
"\u03bc\u03bd\u0005}\u0000\u0000\u03bd\u00d0\u0001\u0000\u0000\u0000\u03be"+
|
||||
"\u03bf\u0005[\u0000\u0000\u03bf\u00d2\u0001\u0000\u0000\u0000\u03c0\u03c1"+
|
||||
"\u0005]\u0000\u0000\u03c1\u00d4\u0001\u0000\u0000\u0000\u03c2\u03c3\u0005"+
|
||||
";\u0000\u0000\u03c3\u00d6\u0001\u0000\u0000\u0000\u03c4\u03c5\u0005,\u0000"+
|
||||
"\u0000\u03c5\u00d8\u0001\u0000\u0000\u0000\u03c6\u03c7\u0005.\u0000\u0000"+
|
||||
"\u03c7\u00da\u0001\u0000\u0000\u0000\u03c8\u03c9\u0005=\u0000\u0000\u03c9"+
|
||||
"\u00dc\u0001\u0000\u0000\u0000\u03ca\u03cb\u0005>\u0000\u0000\u03cb\u00de"+
|
||||
"\u0001\u0000\u0000\u0000\u03cc\u03cd\u0005<\u0000\u0000\u03cd\u00e0\u0001"+
|
||||
"\u0000\u0000\u0000\u03ce\u03cf\u0005!\u0000\u0000\u03cf\u00e2\u0001\u0000"+
|
||||
"\u0000\u0000\u03d0\u03d1\u0005~\u0000\u0000\u03d1\u00e4\u0001\u0000\u0000"+
|
||||
"\u0000\u03d2\u03d3\u0005?\u0000\u0000\u03d3\u00e6\u0001\u0000\u0000\u0000"+
|
||||
"\u03d4\u03d5\u0005:\u0000\u0000\u03d5\u00e8\u0001\u0000\u0000\u0000\u03d6"+
|
||||
"\u03d7\u0005=\u0000\u0000\u03d7\u03d8\u0005=\u0000\u0000\u03d8\u00ea\u0001"+
|
||||
"\u0000\u0000\u0000\u03d9\u03da\u0005<\u0000\u0000\u03da\u03db\u0005=\u0000"+
|
||||
"\u0000\u03db\u00ec\u0001\u0000\u0000\u0000\u03dc\u03dd\u0005>\u0000\u0000"+
|
||||
"\u03dd\u03de\u0005=\u0000\u0000\u03de\u00ee\u0001\u0000\u0000\u0000\u03df"+
|
||||
"\u03e0\u0005!\u0000\u0000\u03e0\u03e1\u0005=\u0000\u0000\u03e1\u00f0\u0001"+
|
||||
"\u0000\u0000\u0000\u03e2\u03e3\u0005&\u0000\u0000\u03e3\u03e4\u0005&\u0000"+
|
||||
"\u0000\u03e4\u00f2\u0001\u0000\u0000\u0000\u03e5\u03e6\u0005|\u0000\u0000"+
|
||||
"\u03e6\u03e7\u0005|\u0000\u0000\u03e7\u00f4\u0001\u0000\u0000\u0000\u03e8"+
|
||||
"\u03e9\u0005+\u0000\u0000\u03e9\u03ea\u0005+\u0000\u0000\u03ea\u00f6\u0001"+
|
||||
"\u0000\u0000\u0000\u03eb\u03ec\u0005-\u0000\u0000\u03ec\u03ed\u0005-\u0000"+
|
||||
"\u0000\u03ed\u00f8\u0001\u0000\u0000\u0000\u03ee\u03ef\u0005+\u0000\u0000"+
|
||||
"\u03ef\u00fa\u0001\u0000\u0000\u0000\u03f0\u03f1\u0005-\u0000\u0000\u03f1"+
|
||||
"\u00fc\u0001\u0000\u0000\u0000\u03f2\u03f3\u0005*\u0000\u0000\u03f3\u00fe"+
|
||||
"\u0001\u0000\u0000\u0000\u03f4\u03f5\u0005/\u0000\u0000\u03f5\u0100\u0001"+
|
||||
"\u0000\u0000\u0000\u03f6\u03f7\u0005&\u0000\u0000\u03f7\u0102\u0001\u0000"+
|
||||
"\u0000\u0000\u03f8\u03f9\u0005|\u0000\u0000\u03f9\u0104\u0001\u0000\u0000"+
|
||||
"\u0000\u03fa\u03fb\u0005^\u0000\u0000\u03fb\u0106\u0001\u0000\u0000\u0000"+
|
||||
"\u03fc\u03fd\u0005%\u0000\u0000\u03fd\u0108\u0001\u0000\u0000\u0000\u03fe"+
|
||||
"\u03ff\u0005-\u0000\u0000\u03ff\u0400\u0005>\u0000\u0000\u0400\u010a\u0001"+
|
||||
"\u0000\u0000\u0000\u0401\u0402\u0005:\u0000\u0000\u0402\u0403\u0005:\u0000"+
|
||||
"\u0000\u0403\u010c\u0001\u0000\u0000\u0000\u0404\u0405\u0005+\u0000\u0000"+
|
||||
"\u0405\u0406\u0005=\u0000\u0000\u0406\u010e\u0001\u0000\u0000\u0000\u0407"+
|
||||
"\u0408\u0005-\u0000\u0000\u0408\u0409\u0005=\u0000\u0000\u0409\u0110\u0001"+
|
||||
"\u0000\u0000\u0000\u040a\u040b\u0005*\u0000\u0000\u040b\u040c\u0005=\u0000"+
|
||||
"\u0000\u040c\u0112\u0001\u0000\u0000\u0000\u040d\u040e\u0005/\u0000\u0000"+
|
||||
"\u040e\u040f\u0005=\u0000\u0000\u040f\u0114\u0001\u0000\u0000\u0000\u0410"+
|
||||
"\u0411\u0005&\u0000\u0000\u0411\u0412\u0005=\u0000\u0000\u0412\u0116\u0001"+
|
||||
"\u0000\u0000\u0000\u0413\u0414\u0005|\u0000\u0000\u0414\u0415\u0005=\u0000"+
|
||||
"\u0000\u0415\u0118\u0001\u0000\u0000\u0000\u0416\u0417\u0005^\u0000\u0000"+
|
||||
"\u0417\u0418\u0005=\u0000\u0000\u0418\u011a\u0001\u0000\u0000\u0000\u0419"+
|
||||
"\u041a\u0005%\u0000\u0000\u041a\u041b\u0005=\u0000\u0000\u041b\u011c\u0001"+
|
||||
"\u0000\u0000\u0000\u041c\u041d\u0005<\u0000\u0000\u041d\u041e\u0005<\u0000"+
|
||||
"\u0000\u041e\u041f\u0005=\u0000\u0000\u041f\u011e\u0001\u0000\u0000\u0000"+
|
||||
"\u0420\u0421\u0005>\u0000\u0000\u0421\u0422\u0005>\u0000\u0000\u0422\u0423"+
|
||||
"\u0005=\u0000\u0000\u0423\u0120\u0001\u0000\u0000\u0000\u0424\u0425\u0005"+
|
||||
">\u0000\u0000\u0425\u0426\u0005>\u0000\u0000\u0426\u0427\u0005>\u0000"+
|
||||
"\u0000\u0427\u0428\u0005=\u0000\u0000\u0428\u0122\u0001\u0000\u0000\u0000"+
|
||||
"\u0429\u042d\u0003\u0125\u0092\u0000\u042a\u042c\u0003\u0127\u0093\u0000"+
|
||||
"\u042b\u042a\u0001\u0000\u0000\u0000\u042c\u042f\u0001\u0000\u0000\u0000"+
|
||||
"\u042d\u042b\u0001\u0000\u0000\u0000\u042d\u042e\u0001\u0000\u0000\u0000"+
|
||||
"\u042e\u0124\u0001\u0000\u0000\u0000\u042f\u042d\u0001\u0000\u0000\u0000"+
|
||||
"\u0430\u0432\u0007\u000f\u0000\u0000\u0431\u0430\u0001\u0000\u0000\u0000"+
|
||||
"\u0432\u0126\u0001\u0000\u0000\u0000\u0433\u0436\u0003\u0125\u0092\u0000"+
|
||||
"\u0434\u0436\u0007\u0010\u0000\u0000\u0435\u0433\u0001\u0000\u0000\u0000"+
|
||||
"\u0435\u0434\u0001\u0000\u0000\u0000\u0436\u0128\u0001\u0000\u0000\u0000"+
|
||||
"\u0437\u0438\u0005@\u0000\u0000\u0438\u012a\u0001\u0000\u0000\u0000\u0439"+
|
||||
"\u043a\u0005.\u0000\u0000\u043a\u043b\u0005.\u0000\u0000\u043b\u043c\u0005"+
|
||||
".\u0000\u0000\u043c\u012c\u0001\u0000\u0000\u0000\u043d\u043f\u0007\u0011"+
|
||||
"\u0000\u0000\u043e\u043d\u0001\u0000\u0000\u0000\u043f\u0440\u0001\u0000"+
|
||||
"\u0000\u0000\u0440\u043e\u0001\u0000\u0000\u0000\u0440\u0441\u0001\u0000"+
|
||||
"\u0000\u0000\u0441\u0442\u0001\u0000\u0000\u0000\u0442\u0443\u0006\u0096"+
|
||||
"\u0000\u0000\u0443\u012e\u0001\u0000\u0000\u0000\u0444\u0445\u0005/\u0000"+
|
||||
"\u0000\u0445\u0446\u0005*\u0000\u0000\u0446\u044a\u0001\u0000\u0000\u0000"+
|
||||
"\u0447\u0449\t\u0000\u0000\u0000\u0448\u0447\u0001\u0000\u0000\u0000\u0449"+
|
||||
"\u044c\u0001\u0000\u0000\u0000\u044a\u044b\u0001\u0000\u0000\u0000\u044a"+
|
||||
"\u0448\u0001\u0000\u0000\u0000\u044b\u044d\u0001\u0000\u0000\u0000\u044c"+
|
||||
"\u044a\u0001\u0000\u0000\u0000\u044d\u044e\u0005*\u0000\u0000\u044e\u044f"+
|
||||
"\u0005/\u0000\u0000\u044f\u0450\u0001\u0000\u0000\u0000\u0450\u0451\u0006"+
|
||||
"\u0097\u0000\u0000\u0451\u0130\u0001\u0000\u0000\u0000\u0452\u0453\u0005"+
|
||||
"/\u0000\u0000\u0453\u0454\u0005/\u0000\u0000\u0454\u0458\u0001\u0000\u0000"+
|
||||
"\u0000\u0455\u0457\b\u0012\u0000\u0000\u0456\u0455\u0001\u0000\u0000\u0000"+
|
||||
"\u0457\u045a\u0001\u0000\u0000\u0000\u0458\u0456\u0001\u0000\u0000\u0000"+
|
||||
"\u0458\u0459\u0001\u0000\u0000\u0000\u0459\u045b\u0001\u0000\u0000\u0000"+
|
||||
"\u045a\u0458\u0001\u0000\u0000\u0000\u045b\u045c\u0006\u0098\u0000\u0000"+
|
||||
"\u045c\u0132\u0001\u0000\u0000\u0000;\u0000\u028a\u028e\u0292\u0296\u029a"+
|
||||
"\u02a1\u02a6\u02a8\u02ac\u02af\u02b3\u02ba\u02be\u02c3\u02cb\u02ce\u02d5"+
|
||||
"\u02d9\u02dd\u02e3\u02e6\u02ed\u02f1\u02f9\u02fc\u0303\u0307\u030b\u0310"+
|
||||
"\u0313\u0316\u031b\u031e\u0323\u0328\u0330\u033b\u033f\u0344\u0348\u0358"+
|
||||
"\u0362\u0368\u036f\u0373\u037b\u0380\u0388\u0391\u039c\u03a2\u03aa\u042d"+
|
||||
"\u0431\u0435\u0440\u044a\u0458\u0001\u0006\u0000\u0000";
|
||||
public static final ATN _ATN =
|
||||
new ATNDeserializer().deserialize(_serializedATN.toCharArray());
|
||||
static {
|
||||
_decisionToDFA = new DFA[_ATN.getNumberOfDecisions()];
|
||||
for (int i = 0; i < _ATN.getNumberOfDecisions(); i++) {
|
||||
_decisionToDFA[i] = new DFA(_ATN.getDecisionState(i), i);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,205 +0,0 @@
|
||||
ABSTRACT=1
|
||||
ASSERT=2
|
||||
BOOLEAN=3
|
||||
BREAK=4
|
||||
BYTE=5
|
||||
CASE=6
|
||||
CATCH=7
|
||||
CHAR=8
|
||||
CLASS=9
|
||||
CONST=10
|
||||
CONTINUE=11
|
||||
DEFAULT=12
|
||||
DO=13
|
||||
DOUBLE=14
|
||||
ELSE=15
|
||||
ENUM=16
|
||||
EXTENDS=17
|
||||
FINAL=18
|
||||
FINALLY=19
|
||||
FLOAT=20
|
||||
FOR=21
|
||||
IF=22
|
||||
GOTO=23
|
||||
IMPLEMENTS=24
|
||||
IMPORT=25
|
||||
INSTANCEOF=26
|
||||
INT=27
|
||||
INTERFACE=28
|
||||
LONG=29
|
||||
NATIVE=30
|
||||
NEW=31
|
||||
PACKAGE=32
|
||||
PRIVATE=33
|
||||
PROTECTED=34
|
||||
PUBLIC=35
|
||||
RETURN=36
|
||||
SHORT=37
|
||||
STATIC=38
|
||||
STRICTFP=39
|
||||
SUPER=40
|
||||
SWITCH=41
|
||||
SYNCHRONIZED=42
|
||||
THIS=43
|
||||
THROW=44
|
||||
THROWS=45
|
||||
TRANSIENT=46
|
||||
TRY=47
|
||||
VOID=48
|
||||
VOLATILE=49
|
||||
WHILE=50
|
||||
IntegerLiteral=51
|
||||
FloatingPointLiteral=52
|
||||
BooleanLiteral=53
|
||||
CharacterLiteral=54
|
||||
StringLiteral=55
|
||||
NullLiteral=56
|
||||
LPAREN=57
|
||||
RPAREN=58
|
||||
LBRACE=59
|
||||
RBRACE=60
|
||||
LBRACK=61
|
||||
RBRACK=62
|
||||
SEMI=63
|
||||
COMMA=64
|
||||
DOT=65
|
||||
ASSIGN=66
|
||||
GT=67
|
||||
LT=68
|
||||
BANG=69
|
||||
TILDE=70
|
||||
QUESTION=71
|
||||
COLON=72
|
||||
EQUAL=73
|
||||
LE=74
|
||||
GE=75
|
||||
NOTEQUAL=76
|
||||
AND=77
|
||||
OR=78
|
||||
INC=79
|
||||
DEC=80
|
||||
ADD=81
|
||||
SUB=82
|
||||
MUL=83
|
||||
DIV=84
|
||||
BITAND=85
|
||||
BITOR=86
|
||||
CARET=87
|
||||
MOD=88
|
||||
ARROW=89
|
||||
COLONCOLON=90
|
||||
ADD_ASSIGN=91
|
||||
SUB_ASSIGN=92
|
||||
MUL_ASSIGN=93
|
||||
DIV_ASSIGN=94
|
||||
AND_ASSIGN=95
|
||||
OR_ASSIGN=96
|
||||
XOR_ASSIGN=97
|
||||
MOD_ASSIGN=98
|
||||
LSHIFT_ASSIGN=99
|
||||
RSHIFT_ASSIGN=100
|
||||
URSHIFT_ASSIGN=101
|
||||
Identifier=102
|
||||
AT=103
|
||||
ELLIPSIS=104
|
||||
WS=105
|
||||
COMMENT=106
|
||||
LINE_COMMENT=107
|
||||
'abstract'=1
|
||||
'assert'=2
|
||||
'boolean'=3
|
||||
'break'=4
|
||||
'byte'=5
|
||||
'case'=6
|
||||
'catch'=7
|
||||
'char'=8
|
||||
'class'=9
|
||||
'const'=10
|
||||
'continue'=11
|
||||
'default'=12
|
||||
'do'=13
|
||||
'double'=14
|
||||
'else'=15
|
||||
'enum'=16
|
||||
'extends'=17
|
||||
'final'=18
|
||||
'finally'=19
|
||||
'float'=20
|
||||
'for'=21
|
||||
'if'=22
|
||||
'goto'=23
|
||||
'implements'=24
|
||||
'import'=25
|
||||
'instanceof'=26
|
||||
'int'=27
|
||||
'interface'=28
|
||||
'long'=29
|
||||
'native'=30
|
||||
'new'=31
|
||||
'package'=32
|
||||
'private'=33
|
||||
'protected'=34
|
||||
'public'=35
|
||||
'return'=36
|
||||
'short'=37
|
||||
'static'=38
|
||||
'strictfp'=39
|
||||
'super'=40
|
||||
'switch'=41
|
||||
'synchronized'=42
|
||||
'this'=43
|
||||
'throw'=44
|
||||
'throws'=45
|
||||
'transient'=46
|
||||
'try'=47
|
||||
'void'=48
|
||||
'volatile'=49
|
||||
'while'=50
|
||||
'null'=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
|
||||
'^'=87
|
||||
'%'=88
|
||||
'->'=89
|
||||
'::'=90
|
||||
'+='=91
|
||||
'-='=92
|
||||
'*='=93
|
||||
'/='=94
|
||||
'&='=95
|
||||
'|='=96
|
||||
'^='=97
|
||||
'%='=98
|
||||
'<<='=99
|
||||
'>>='=100
|
||||
'>>>='=101
|
||||
'@'=103
|
||||
'...'=104
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
@@ -1,205 +0,0 @@
|
||||
ABSTRACT=1
|
||||
ASSERT=2
|
||||
BOOLEAN=3
|
||||
BREAK=4
|
||||
BYTE=5
|
||||
CASE=6
|
||||
CATCH=7
|
||||
CHAR=8
|
||||
CLASS=9
|
||||
CONST=10
|
||||
CONTINUE=11
|
||||
DEFAULT=12
|
||||
DO=13
|
||||
DOUBLE=14
|
||||
ELSE=15
|
||||
ENUM=16
|
||||
EXTENDS=17
|
||||
FINAL=18
|
||||
FINALLY=19
|
||||
FLOAT=20
|
||||
FOR=21
|
||||
IF=22
|
||||
GOTO=23
|
||||
IMPLEMENTS=24
|
||||
IMPORT=25
|
||||
INSTANCEOF=26
|
||||
INT=27
|
||||
INTERFACE=28
|
||||
LONG=29
|
||||
NATIVE=30
|
||||
NEW=31
|
||||
PACKAGE=32
|
||||
PRIVATE=33
|
||||
PROTECTED=34
|
||||
PUBLIC=35
|
||||
RETURN=36
|
||||
SHORT=37
|
||||
STATIC=38
|
||||
STRICTFP=39
|
||||
SUPER=40
|
||||
SWITCH=41
|
||||
SYNCHRONIZED=42
|
||||
THIS=43
|
||||
THROW=44
|
||||
THROWS=45
|
||||
TRANSIENT=46
|
||||
TRY=47
|
||||
VOID=48
|
||||
VOLATILE=49
|
||||
WHILE=50
|
||||
IntegerLiteral=51
|
||||
FloatingPointLiteral=52
|
||||
BooleanLiteral=53
|
||||
CharacterLiteral=54
|
||||
StringLiteral=55
|
||||
NullLiteral=56
|
||||
LPAREN=57
|
||||
RPAREN=58
|
||||
LBRACE=59
|
||||
RBRACE=60
|
||||
LBRACK=61
|
||||
RBRACK=62
|
||||
SEMI=63
|
||||
COMMA=64
|
||||
DOT=65
|
||||
ASSIGN=66
|
||||
GT=67
|
||||
LT=68
|
||||
BANG=69
|
||||
TILDE=70
|
||||
QUESTION=71
|
||||
COLON=72
|
||||
EQUAL=73
|
||||
LE=74
|
||||
GE=75
|
||||
NOTEQUAL=76
|
||||
AND=77
|
||||
OR=78
|
||||
INC=79
|
||||
DEC=80
|
||||
ADD=81
|
||||
SUB=82
|
||||
MUL=83
|
||||
DIV=84
|
||||
BITAND=85
|
||||
BITOR=86
|
||||
CARET=87
|
||||
MOD=88
|
||||
ARROW=89
|
||||
COLONCOLON=90
|
||||
ADD_ASSIGN=91
|
||||
SUB_ASSIGN=92
|
||||
MUL_ASSIGN=93
|
||||
DIV_ASSIGN=94
|
||||
AND_ASSIGN=95
|
||||
OR_ASSIGN=96
|
||||
XOR_ASSIGN=97
|
||||
MOD_ASSIGN=98
|
||||
LSHIFT_ASSIGN=99
|
||||
RSHIFT_ASSIGN=100
|
||||
URSHIFT_ASSIGN=101
|
||||
Identifier=102
|
||||
AT=103
|
||||
ELLIPSIS=104
|
||||
WS=105
|
||||
COMMENT=106
|
||||
LINE_COMMENT=107
|
||||
'abstract'=1
|
||||
'assert'=2
|
||||
'boolean'=3
|
||||
'break'=4
|
||||
'byte'=5
|
||||
'case'=6
|
||||
'catch'=7
|
||||
'char'=8
|
||||
'class'=9
|
||||
'const'=10
|
||||
'continue'=11
|
||||
'default'=12
|
||||
'do'=13
|
||||
'double'=14
|
||||
'else'=15
|
||||
'enum'=16
|
||||
'extends'=17
|
||||
'final'=18
|
||||
'finally'=19
|
||||
'float'=20
|
||||
'for'=21
|
||||
'if'=22
|
||||
'goto'=23
|
||||
'implements'=24
|
||||
'import'=25
|
||||
'instanceof'=26
|
||||
'int'=27
|
||||
'interface'=28
|
||||
'long'=29
|
||||
'native'=30
|
||||
'new'=31
|
||||
'package'=32
|
||||
'private'=33
|
||||
'protected'=34
|
||||
'public'=35
|
||||
'return'=36
|
||||
'short'=37
|
||||
'static'=38
|
||||
'strictfp'=39
|
||||
'super'=40
|
||||
'switch'=41
|
||||
'synchronized'=42
|
||||
'this'=43
|
||||
'throw'=44
|
||||
'throws'=45
|
||||
'transient'=46
|
||||
'try'=47
|
||||
'void'=48
|
||||
'volatile'=49
|
||||
'while'=50
|
||||
'null'=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
|
||||
'^'=87
|
||||
'%'=88
|
||||
'->'=89
|
||||
'::'=90
|
||||
'+='=91
|
||||
'-='=92
|
||||
'*='=93
|
||||
'/='=94
|
||||
'&='=95
|
||||
'|='=96
|
||||
'^='=97
|
||||
'%='=98
|
||||
'<<='=99
|
||||
'>>='=100
|
||||
'>>>='=101
|
||||
'@'=103
|
||||
'...'=104
|
||||
@@ -1,102 +0,0 @@
|
||||
import java.io.IOException;
|
||||
import java.nio.file.Files;
|
||||
import java.nio.file.Paths;
|
||||
import java.util.Scanner;
|
||||
|
||||
import org.antlr.v4.runtime.*;
|
||||
import org.antlr.v4.runtime.tree.*;
|
||||
import org.antlr.v4.runtime.misc.ParseCancellationException;
|
||||
|
||||
public class ExprTool {
|
||||
public static void main(String[] args) throws Exception {
|
||||
if (args.length == 0) {
|
||||
// If no files given then read from stdin
|
||||
Scanner scanner = new Scanner(System.in);
|
||||
StringBuilder inputBuilder = new StringBuilder();
|
||||
while (scanner.hasNextLine()) {
|
||||
inputBuilder.append(scanner.nextLine()).append("\n");
|
||||
}
|
||||
scanner.close();
|
||||
|
||||
parseAndWalk(inputBuilder.toString(), "<stdin>");
|
||||
} else {
|
||||
// for Loop through all given file paths
|
||||
for (String filePath : args) {
|
||||
try {
|
||||
String inputText = new String(Files.readAllBytes(Paths.get(filePath)));
|
||||
parseAndWalk(inputText, filePath);
|
||||
} catch (IOException e) {
|
||||
System.err.println("Error reading file: " + filePath);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
private static void parseAndWalk(String inputText, String sourceName) {
|
||||
try {
|
||||
// Create char stream
|
||||
CharStream input = CharStreams.fromString(inputText, sourceName);
|
||||
Java8Lexer lexer = new Java8Lexer(input);
|
||||
lexer.removeErrorListeners();
|
||||
lexer.addErrorListener(new ThrowingErrorListener());
|
||||
|
||||
CommonTokenStream tokens = new CommonTokenStream(lexer);
|
||||
Java8Parser parser = new Java8Parser(tokens);
|
||||
parser.removeErrorListeners();
|
||||
parser.addErrorListener(new ThrowingErrorListener());
|
||||
|
||||
ParseTree tree = parser.compilationUnit();
|
||||
ParseTreeWalker walker = new ParseTreeWalker();
|
||||
walker.walk(new ClassPrinter(sourceName), tree);
|
||||
|
||||
} catch (RuntimeException e) {
|
||||
System.err.println("Parsing File Failed: " + e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
public static class ClassPrinter extends Java8ParserBaseListener {
|
||||
private final String sourceName;
|
||||
|
||||
public ClassPrinter(String sourceName) {
|
||||
this.sourceName = sourceName;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void enterClassDeclaration(Java8Parser.ClassDeclarationContext ctx) {
|
||||
int line = ctx.getStart().getLine();
|
||||
int col = ctx.getStart().getCharPositionInLine();
|
||||
String class_name = "";
|
||||
|
||||
if(ctx.normalClassDeclaration() != null){
|
||||
class_name = ctx.normalClassDeclaration().Identifier().getText();
|
||||
}else if(ctx.enumDeclaration() != null){
|
||||
class_name = ctx.enumDeclaration().Identifier().getText();
|
||||
}
|
||||
|
||||
//String className = ctx.identifier().getText();
|
||||
System.out.printf("Class %s, file %s, line %d, column %d%n",
|
||||
class_name, sourceName, line, col);
|
||||
}
|
||||
}
|
||||
|
||||
// Custom error listener
|
||||
public static class ThrowingErrorListener extends BaseErrorListener {
|
||||
@Override
|
||||
public void syntaxError(Recognizer<?, ?> recognizer,
|
||||
Object offendingSymbol,
|
||||
int line, int charPositionInLine,
|
||||
String msg,
|
||||
RecognitionException e) {
|
||||
String sourceName = recognizer.getInputStream().getSourceName();
|
||||
if (sourceName == null || sourceName.isEmpty()) {
|
||||
sourceName = "<unknown>";
|
||||
}
|
||||
|
||||
String formatted = String.format(
|
||||
" file %s, line %d, column %d, error-msg: %s",
|
||||
sourceName, line, charPositionInLine, msg
|
||||
);
|
||||
|
||||
throw new ParseCancellationException(formatted);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,977 +0,0 @@
|
||||
/*
|
||||
* [The "BSD license"]
|
||||
* Copyright (c) 2014 Terence Parr
|
||||
* Copyright (c) 2014 Sam Harwell
|
||||
* Copyright (c) 2019 Student Main (Make it universal)
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. The name of the author may not be used to endorse or promote products
|
||||
* derived from this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
||||
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
/**
|
||||
* A Java 8 grammar for ANTLR 4 derived from the Java Language Specification
|
||||
* chapter 19.
|
||||
*
|
||||
* NOTE: This grammar results in a generated parser that is much slower
|
||||
* than the Java 7 grammar in the grammars-v4/java directory. This
|
||||
* one is, however, extremely close to the spec.
|
||||
*
|
||||
* You can test with
|
||||
*
|
||||
* $ antlr4 Java8.g4
|
||||
* $ javac *.java
|
||||
* $ grun Java8 compilationUnit *.java
|
||||
*
|
||||
* Or,
|
||||
~/antlr/code/grammars-v4/java8 $ java Test .
|
||||
/Users/parrt/antlr/code/grammars-v4/java8/./Java8BaseListener.java
|
||||
/Users/parrt/antlr/code/grammars-v4/java8/./Java8Lexer.java
|
||||
/Users/parrt/antlr/code/grammars-v4/java8/./Java8Listener.java
|
||||
/Users/parrt/antlr/code/grammars-v4/java8/./Java8Parser.java
|
||||
/Users/parrt/antlr/code/grammars-v4/java8/./Test.java
|
||||
Total lexer+parser time 30844ms.
|
||||
*/
|
||||
|
||||
// $antlr-format alignTrailingComments true, columnLimit 150, maxEmptyLinesToKeep 1, reflowComments false, useTab false
|
||||
// $antlr-format allowShortRulesOnASingleLine true, allowShortBlocksOnASingleLine true, minEmptyLines 0, alignSemicolons ownLine
|
||||
// $antlr-format alignColons trailing, singleLineOverrulesHangingColon true, alignLexerCommands true, alignLabels true, alignTrailers true
|
||||
|
||||
lexer grammar Java8Lexer;
|
||||
|
||||
// LEXER
|
||||
|
||||
// §3.9 Keywords
|
||||
|
||||
ABSTRACT : 'abstract';
|
||||
ASSERT : 'assert';
|
||||
BOOLEAN : 'boolean';
|
||||
BREAK : 'break';
|
||||
BYTE : 'byte';
|
||||
CASE : 'case';
|
||||
CATCH : 'catch';
|
||||
CHAR : 'char';
|
||||
CLASS : 'class';
|
||||
CONST : 'const';
|
||||
CONTINUE : 'continue';
|
||||
DEFAULT : 'default';
|
||||
DO : 'do';
|
||||
DOUBLE : 'double';
|
||||
ELSE : 'else';
|
||||
ENUM : 'enum';
|
||||
EXTENDS : 'extends';
|
||||
FINAL : 'final';
|
||||
FINALLY : 'finally';
|
||||
FLOAT : 'float';
|
||||
FOR : 'for';
|
||||
IF : 'if';
|
||||
GOTO : 'goto';
|
||||
IMPLEMENTS : 'implements';
|
||||
IMPORT : 'import';
|
||||
INSTANCEOF : 'instanceof';
|
||||
INT : 'int';
|
||||
INTERFACE : 'interface';
|
||||
LONG : 'long';
|
||||
NATIVE : 'native';
|
||||
NEW : 'new';
|
||||
PACKAGE : 'package';
|
||||
PRIVATE : 'private';
|
||||
PROTECTED : 'protected';
|
||||
PUBLIC : 'public';
|
||||
RETURN : 'return';
|
||||
SHORT : 'short';
|
||||
STATIC : 'static';
|
||||
STRICTFP : 'strictfp';
|
||||
SUPER : 'super';
|
||||
SWITCH : 'switch';
|
||||
SYNCHRONIZED : 'synchronized';
|
||||
THIS : 'this';
|
||||
THROW : 'throw';
|
||||
THROWS : 'throws';
|
||||
TRANSIENT : 'transient';
|
||||
TRY : 'try';
|
||||
VOID : 'void';
|
||||
VOLATILE : 'volatile';
|
||||
WHILE : 'while';
|
||||
|
||||
// §3.10.1 Integer Literals
|
||||
|
||||
IntegerLiteral:
|
||||
DecimalIntegerLiteral
|
||||
| HexIntegerLiteral
|
||||
| OctalIntegerLiteral
|
||||
| BinaryIntegerLiteral
|
||||
;
|
||||
|
||||
fragment DecimalIntegerLiteral: DecimalNumeral IntegerTypeSuffix?;
|
||||
|
||||
fragment HexIntegerLiteral: HexNumeral IntegerTypeSuffix?;
|
||||
|
||||
fragment OctalIntegerLiteral: OctalNumeral IntegerTypeSuffix?;
|
||||
|
||||
fragment BinaryIntegerLiteral: BinaryNumeral IntegerTypeSuffix?;
|
||||
|
||||
fragment IntegerTypeSuffix: [lL];
|
||||
|
||||
fragment DecimalNumeral: '0' | NonZeroDigit (Digits? | Underscores Digits);
|
||||
|
||||
fragment Digits: Digit (DigitsAndUnderscores? Digit)?;
|
||||
|
||||
fragment Digit: '0' | NonZeroDigit;
|
||||
|
||||
fragment NonZeroDigit: [1-9];
|
||||
|
||||
fragment DigitsAndUnderscores: DigitOrUnderscore+;
|
||||
|
||||
fragment DigitOrUnderscore: Digit | '_';
|
||||
|
||||
fragment Underscores: '_'+;
|
||||
|
||||
fragment HexNumeral: '0' [xX] HexDigits;
|
||||
|
||||
fragment HexDigits: HexDigit (HexDigitsAndUnderscores? HexDigit)?;
|
||||
|
||||
fragment HexDigit: [0-9a-fA-F];
|
||||
|
||||
fragment HexDigitsAndUnderscores: HexDigitOrUnderscore+;
|
||||
|
||||
fragment HexDigitOrUnderscore: HexDigit | '_';
|
||||
|
||||
fragment OctalNumeral: '0' Underscores? OctalDigits;
|
||||
|
||||
fragment OctalDigits: OctalDigit (OctalDigitsAndUnderscores? OctalDigit)?;
|
||||
|
||||
fragment OctalDigit: [0-7];
|
||||
|
||||
fragment OctalDigitsAndUnderscores: OctalDigitOrUnderscore+;
|
||||
|
||||
fragment OctalDigitOrUnderscore: OctalDigit | '_';
|
||||
|
||||
fragment BinaryNumeral: '0' [bB] BinaryDigits;
|
||||
|
||||
fragment BinaryDigits: BinaryDigit (BinaryDigitsAndUnderscores? BinaryDigit)?;
|
||||
|
||||
fragment BinaryDigit: [01];
|
||||
|
||||
fragment BinaryDigitsAndUnderscores: BinaryDigitOrUnderscore+;
|
||||
|
||||
fragment BinaryDigitOrUnderscore: BinaryDigit | '_';
|
||||
|
||||
// §3.10.2 Floating-Point Literals
|
||||
|
||||
FloatingPointLiteral: DecimalFloatingPointLiteral | HexadecimalFloatingPointLiteral;
|
||||
|
||||
fragment DecimalFloatingPointLiteral:
|
||||
Digits '.' Digits? ExponentPart? FloatTypeSuffix?
|
||||
| '.' Digits ExponentPart? FloatTypeSuffix?
|
||||
| Digits ExponentPart FloatTypeSuffix?
|
||||
| Digits FloatTypeSuffix
|
||||
;
|
||||
|
||||
fragment ExponentPart: ExponentIndicator SignedInteger;
|
||||
|
||||
fragment ExponentIndicator: [eE];
|
||||
|
||||
fragment SignedInteger: Sign? Digits;
|
||||
|
||||
fragment Sign: [+-];
|
||||
|
||||
fragment FloatTypeSuffix: [fFdD];
|
||||
|
||||
fragment HexadecimalFloatingPointLiteral: HexSignificand BinaryExponent FloatTypeSuffix?;
|
||||
|
||||
fragment HexSignificand: HexNumeral '.'? | '0' [xX] HexDigits? '.' HexDigits;
|
||||
|
||||
fragment BinaryExponent: BinaryExponentIndicator SignedInteger;
|
||||
|
||||
fragment BinaryExponentIndicator: [pP];
|
||||
|
||||
// §3.10.3 Boolean Literals
|
||||
|
||||
BooleanLiteral: 'true' | 'false';
|
||||
|
||||
// §3.10.4 Character Literals
|
||||
|
||||
CharacterLiteral: '\'' SingleCharacter '\'' | '\'' EscapeSequence '\'';
|
||||
|
||||
fragment SingleCharacter: ~['\\\r\n];
|
||||
|
||||
// §3.10.5 String Literals
|
||||
|
||||
StringLiteral: '"' StringCharacters? '"';
|
||||
|
||||
fragment StringCharacters: StringCharacter+;
|
||||
|
||||
fragment StringCharacter: ~["\\\r\n] | EscapeSequence;
|
||||
|
||||
// §3.10.6 Escape Sequences for Character and String Literals
|
||||
|
||||
fragment EscapeSequence:
|
||||
'\\' 'u005c'? [btnfr"'\\]
|
||||
| OctalEscape
|
||||
| UnicodeEscape // This is not in the spec but prevents having to preprocess the input
|
||||
;
|
||||
|
||||
fragment OctalEscape:
|
||||
'\\' 'u005c'? OctalDigit
|
||||
| '\\' 'u005c'? OctalDigit OctalDigit
|
||||
| '\\' 'u005c'? ZeroToThree OctalDigit OctalDigit
|
||||
;
|
||||
|
||||
fragment ZeroToThree: [0-3];
|
||||
|
||||
// This is not in the spec but prevents having to preprocess the input
|
||||
fragment UnicodeEscape: '\\' 'u'+ HexDigit HexDigit HexDigit HexDigit;
|
||||
|
||||
// §3.10.7 The Null Literal
|
||||
|
||||
NullLiteral: 'null';
|
||||
|
||||
// §3.11 Separators
|
||||
|
||||
LPAREN : '(';
|
||||
RPAREN : ')';
|
||||
LBRACE : '{';
|
||||
RBRACE : '}';
|
||||
LBRACK : '[';
|
||||
RBRACK : ']';
|
||||
SEMI : ';';
|
||||
COMMA : ',';
|
||||
DOT : '.';
|
||||
|
||||
// §3.12 Operators
|
||||
|
||||
ASSIGN : '=';
|
||||
GT : '>';
|
||||
LT : '<';
|
||||
BANG : '!';
|
||||
TILDE : '~';
|
||||
QUESTION : '?';
|
||||
COLON : ':';
|
||||
EQUAL : '==';
|
||||
LE : '<=';
|
||||
GE : '>=';
|
||||
NOTEQUAL : '!=';
|
||||
AND : '&&';
|
||||
OR : '||';
|
||||
INC : '++';
|
||||
DEC : '--';
|
||||
ADD : '+';
|
||||
SUB : '-';
|
||||
MUL : '*';
|
||||
DIV : '/';
|
||||
BITAND : '&';
|
||||
BITOR : '|';
|
||||
CARET : '^';
|
||||
MOD : '%';
|
||||
ARROW : '->';
|
||||
COLONCOLON : '::';
|
||||
|
||||
ADD_ASSIGN : '+=';
|
||||
SUB_ASSIGN : '-=';
|
||||
MUL_ASSIGN : '*=';
|
||||
DIV_ASSIGN : '/=';
|
||||
AND_ASSIGN : '&=';
|
||||
OR_ASSIGN : '|=';
|
||||
XOR_ASSIGN : '^=';
|
||||
MOD_ASSIGN : '%=';
|
||||
LSHIFT_ASSIGN : '<<=';
|
||||
RSHIFT_ASSIGN : '>>=';
|
||||
URSHIFT_ASSIGN : '>>>=';
|
||||
|
||||
// §3.8 Identifiers (must appear after all keywords in the grammar)
|
||||
|
||||
Identifier: IdentifierStart IdentifierPart*;
|
||||
/*
|
||||
fragment
|
||||
JavaLetter
|
||||
: [a-zA-Z$_] // these are the "java letters" below 0x7F
|
||||
| // covers all characters above 0x7F which are not a surrogate
|
||||
~[\u0000-\u007F\uD800-\uDBFF] {this.wasJavaIdentiferStart()}?
|
||||
| // covers UTF-16 surrogate pairs encodings for U+10000 to U+10FFFF
|
||||
[\uD800-\uDBFF] [\uDC00-\uDFFF] {this.wasJavaIdentiferStartUTF16()}?
|
||||
;
|
||||
|
||||
fragment
|
||||
JavaLetterOrDigit
|
||||
: [a-zA-Z0-9$_] // these are the "java letters or digits" below 0x7F
|
||||
| // covers all characters above 0x7F which are not a surrogate
|
||||
~[\u0000-\u007F\uD800-\uDBFF] {this.wasJavaIdentiferPart()}?
|
||||
| // covers UTF-16 surrogate pairs encodings for U+10000 to U+10FFFF
|
||||
[\uD800-\uDBFF] [\uDC00-\uDFFF] {this.wasJavaIdentiferPartUTF16()}?
|
||||
;*/
|
||||
|
||||
// Dropped SMP support as ANTLR has no native support for it
|
||||
fragment IdentifierStart:
|
||||
[\u0024]
|
||||
| [\u0041-\u005A]
|
||||
| [\u005F]
|
||||
| [\u0061-\u007A]
|
||||
| [\u00A2-\u00A5]
|
||||
| [\u00AA]
|
||||
| [\u00B5]
|
||||
| [\u00BA]
|
||||
| [\u00C0-\u00D6]
|
||||
| [\u00D8-\u00F6]
|
||||
| [\u00F8-\u02C1]
|
||||
| [\u02C6-\u02D1]
|
||||
| [\u02E0-\u02E4]
|
||||
| [\u02EC]
|
||||
| [\u02EE]
|
||||
| [\u0370-\u0374]
|
||||
| [\u0376-\u0377]
|
||||
| [\u037A-\u037D]
|
||||
| [\u037F]
|
||||
| [\u0386]
|
||||
| [\u0388-\u038A]
|
||||
| [\u038C]
|
||||
| [\u038E-\u03A1]
|
||||
| [\u03A3-\u03F5]
|
||||
| [\u03F7-\u0481]
|
||||
| [\u048A-\u052F]
|
||||
| [\u0531-\u0556]
|
||||
| [\u0559]
|
||||
| [\u0561-\u0587]
|
||||
| [\u058F]
|
||||
| [\u05D0-\u05EA]
|
||||
| [\u05F0-\u05F2]
|
||||
| [\u060B]
|
||||
| [\u0620-\u064A]
|
||||
| [\u066E-\u066F]
|
||||
| [\u0671-\u06D3]
|
||||
| [\u06D5]
|
||||
| [\u06E5-\u06E6]
|
||||
| [\u06EE-\u06EF]
|
||||
| [\u06FA-\u06FC]
|
||||
| [\u06FF]
|
||||
| [\u0710]
|
||||
| [\u0712-\u072F]
|
||||
| [\u074D-\u07A5]
|
||||
| [\u07B1]
|
||||
| [\u07CA-\u07EA]
|
||||
| [\u07F4-\u07F5]
|
||||
| [\u07FA]
|
||||
| [\u0800-\u0815]
|
||||
| [\u081A]
|
||||
| [\u0824]
|
||||
| [\u0828]
|
||||
| [\u0840-\u0858]
|
||||
| [\u0860-\u086A]
|
||||
| [\u08A0-\u08B4]
|
||||
| [\u08B6-\u08BD]
|
||||
| [\u0904-\u0939]
|
||||
| [\u093D]
|
||||
| [\u0950]
|
||||
| [\u0958-\u0961]
|
||||
| [\u0971-\u0980]
|
||||
| [\u0985-\u098C]
|
||||
| [\u098F-\u0990]
|
||||
| [\u0993-\u09A8]
|
||||
| [\u09AA-\u09B0]
|
||||
| [\u09B2]
|
||||
| [\u09B6-\u09B9]
|
||||
| [\u09BD]
|
||||
| [\u09CE]
|
||||
| [\u09DC-\u09DD]
|
||||
| [\u09DF-\u09E1]
|
||||
| [\u09F0-\u09F3]
|
||||
| [\u09FB-\u09FC]
|
||||
| [\u0A05-\u0A0A]
|
||||
| [\u0A0F-\u0A10]
|
||||
| [\u0A13-\u0A28]
|
||||
| [\u0A2A-\u0A30]
|
||||
| [\u0A32-\u0A33]
|
||||
| [\u0A35-\u0A36]
|
||||
| [\u0A38-\u0A39]
|
||||
| [\u0A59-\u0A5C]
|
||||
| [\u0A5E]
|
||||
| [\u0A72-\u0A74]
|
||||
| [\u0A85-\u0A8D]
|
||||
| [\u0A8F-\u0A91]
|
||||
| [\u0A93-\u0AA8]
|
||||
| [\u0AAA-\u0AB0]
|
||||
| [\u0AB2-\u0AB3]
|
||||
| [\u0AB5-\u0AB9]
|
||||
| [\u0ABD]
|
||||
| [\u0AD0]
|
||||
| [\u0AE0-\u0AE1]
|
||||
| [\u0AF1]
|
||||
| [\u0AF9]
|
||||
| [\u0B05-\u0B0C]
|
||||
| [\u0B0F-\u0B10]
|
||||
| [\u0B13-\u0B28]
|
||||
| [\u0B2A-\u0B30]
|
||||
| [\u0B32-\u0B33]
|
||||
| [\u0B35-\u0B39]
|
||||
| [\u0B3D]
|
||||
| [\u0B5C-\u0B5D]
|
||||
| [\u0B5F-\u0B61]
|
||||
| [\u0B71]
|
||||
| [\u0B83]
|
||||
| [\u0B85-\u0B8A]
|
||||
| [\u0B8E-\u0B90]
|
||||
| [\u0B92-\u0B95]
|
||||
| [\u0B99-\u0B9A]
|
||||
| [\u0B9C]
|
||||
| [\u0B9E-\u0B9F]
|
||||
| [\u0BA3-\u0BA4]
|
||||
| [\u0BA8-\u0BAA]
|
||||
| [\u0BAE-\u0BB9]
|
||||
| [\u0BD0]
|
||||
| [\u0BF9]
|
||||
| [\u0C05-\u0C0C]
|
||||
| [\u0C0E-\u0C10]
|
||||
| [\u0C12-\u0C28]
|
||||
| [\u0C2A-\u0C39]
|
||||
| [\u0C3D]
|
||||
| [\u0C58-\u0C5A]
|
||||
| [\u0C60-\u0C61]
|
||||
| [\u0C80]
|
||||
| [\u0C85-\u0C8C]
|
||||
| [\u0C8E-\u0C90]
|
||||
| [\u0C92-\u0CA8]
|
||||
| [\u0CAA-\u0CB3]
|
||||
| [\u0CB5-\u0CB9]
|
||||
| [\u0CBD]
|
||||
| [\u0CDE]
|
||||
| [\u0CE0-\u0CE1]
|
||||
| [\u0CF1-\u0CF2]
|
||||
| [\u0D05-\u0D0C]
|
||||
| [\u0D0E-\u0D10]
|
||||
| [\u0D12-\u0D3A]
|
||||
| [\u0D3D]
|
||||
| [\u0D4E]
|
||||
| [\u0D54-\u0D56]
|
||||
| [\u0D5F-\u0D61]
|
||||
| [\u0D7A-\u0D7F]
|
||||
| [\u0D85-\u0D96]
|
||||
| [\u0D9A-\u0DB1]
|
||||
| [\u0DB3-\u0DBB]
|
||||
| [\u0DBD]
|
||||
| [\u0DC0-\u0DC6]
|
||||
| [\u0E01-\u0E30]
|
||||
| [\u0E32-\u0E33]
|
||||
| [\u0E3F-\u0E46]
|
||||
| [\u0E81-\u0E82]
|
||||
| [\u0E84]
|
||||
| [\u0E87-\u0E88]
|
||||
| [\u0E8A]
|
||||
| [\u0E8D]
|
||||
| [\u0E94-\u0E97]
|
||||
| [\u0E99-\u0E9F]
|
||||
| [\u0EA1-\u0EA3]
|
||||
| [\u0EA5]
|
||||
| [\u0EA7]
|
||||
| [\u0EAA-\u0EAB]
|
||||
| [\u0EAD-\u0EB0]
|
||||
| [\u0EB2-\u0EB3]
|
||||
| [\u0EBD]
|
||||
| [\u0EC0-\u0EC4]
|
||||
| [\u0EC6]
|
||||
| [\u0EDC-\u0EDF]
|
||||
| [\u0F00]
|
||||
| [\u0F40-\u0F47]
|
||||
| [\u0F49-\u0F6C]
|
||||
| [\u0F88-\u0F8C]
|
||||
| [\u1000-\u102A]
|
||||
| [\u103F]
|
||||
| [\u1050-\u1055]
|
||||
| [\u105A-\u105D]
|
||||
| [\u1061]
|
||||
| [\u1065-\u1066]
|
||||
| [\u106E-\u1070]
|
||||
| [\u1075-\u1081]
|
||||
| [\u108E]
|
||||
| [\u10A0-\u10C5]
|
||||
| [\u10C7]
|
||||
| [\u10CD]
|
||||
| [\u10D0-\u10FA]
|
||||
| [\u10FC-\u1248]
|
||||
| [\u124A-\u124D]
|
||||
| [\u1250-\u1256]
|
||||
| [\u1258]
|
||||
| [\u125A-\u125D]
|
||||
| [\u1260-\u1288]
|
||||
| [\u128A-\u128D]
|
||||
| [\u1290-\u12B0]
|
||||
| [\u12B2-\u12B5]
|
||||
| [\u12B8-\u12BE]
|
||||
| [\u12C0]
|
||||
| [\u12C2-\u12C5]
|
||||
| [\u12C8-\u12D6]
|
||||
| [\u12D8-\u1310]
|
||||
| [\u1312-\u1315]
|
||||
| [\u1318-\u135A]
|
||||
| [\u1380-\u138F]
|
||||
| [\u13A0-\u13F5]
|
||||
| [\u13F8-\u13FD]
|
||||
| [\u1401-\u166C]
|
||||
| [\u166F-\u167F]
|
||||
| [\u1681-\u169A]
|
||||
| [\u16A0-\u16EA]
|
||||
| [\u16EE-\u16F8]
|
||||
| [\u1700-\u170C]
|
||||
| [\u170E-\u1711]
|
||||
| [\u1720-\u1731]
|
||||
| [\u1740-\u1751]
|
||||
| [\u1760-\u176C]
|
||||
| [\u176E-\u1770]
|
||||
| [\u1780-\u17B3]
|
||||
| [\u17D7]
|
||||
| [\u17DB-\u17DC]
|
||||
| [\u1820-\u1877]
|
||||
| [\u1880-\u1884]
|
||||
| [\u1887-\u18A8]
|
||||
| [\u18AA]
|
||||
| [\u18B0-\u18F5]
|
||||
| [\u1900-\u191E]
|
||||
| [\u1950-\u196D]
|
||||
| [\u1970-\u1974]
|
||||
| [\u1980-\u19AB]
|
||||
| [\u19B0-\u19C9]
|
||||
| [\u1A00-\u1A16]
|
||||
| [\u1A20-\u1A54]
|
||||
| [\u1AA7]
|
||||
| [\u1B05-\u1B33]
|
||||
| [\u1B45-\u1B4B]
|
||||
| [\u1B83-\u1BA0]
|
||||
| [\u1BAE-\u1BAF]
|
||||
| [\u1BBA-\u1BE5]
|
||||
| [\u1C00-\u1C23]
|
||||
| [\u1C4D-\u1C4F]
|
||||
| [\u1C5A-\u1C7D]
|
||||
| [\u1C80-\u1C88]
|
||||
| [\u1CE9-\u1CEC]
|
||||
| [\u1CEE-\u1CF1]
|
||||
| [\u1CF5-\u1CF6]
|
||||
| [\u1D00-\u1DBF]
|
||||
| [\u1E00-\u1F15]
|
||||
| [\u1F18-\u1F1D]
|
||||
| [\u1F20-\u1F45]
|
||||
| [\u1F48-\u1F4D]
|
||||
| [\u1F50-\u1F57]
|
||||
| [\u1F59]
|
||||
| [\u1F5B]
|
||||
| [\u1F5D]
|
||||
| [\u1F5F-\u1F7D]
|
||||
| [\u1F80-\u1FB4]
|
||||
| [\u1FB6-\u1FBC]
|
||||
| [\u1FBE]
|
||||
| [\u1FC2-\u1FC4]
|
||||
| [\u1FC6-\u1FCC]
|
||||
| [\u1FD0-\u1FD3]
|
||||
| [\u1FD6-\u1FDB]
|
||||
| [\u1FE0-\u1FEC]
|
||||
| [\u1FF2-\u1FF4]
|
||||
| [\u1FF6-\u1FFC]
|
||||
| [\u203F-\u2040]
|
||||
| [\u2054]
|
||||
| [\u2071]
|
||||
| [\u207F]
|
||||
| [\u2090-\u209C]
|
||||
| [\u20A0-\u20BF]
|
||||
| [\u2102]
|
||||
| [\u2107]
|
||||
| [\u210A-\u2113]
|
||||
| [\u2115]
|
||||
| [\u2119-\u211D]
|
||||
| [\u2124]
|
||||
| [\u2126]
|
||||
| [\u2128]
|
||||
| [\u212A-\u212D]
|
||||
| [\u212F-\u2139]
|
||||
| [\u213C-\u213F]
|
||||
| [\u2145-\u2149]
|
||||
| [\u214E]
|
||||
| [\u2160-\u2188]
|
||||
| [\u2C00-\u2C2E]
|
||||
| [\u2C30-\u2C5E]
|
||||
| [\u2C60-\u2CE4]
|
||||
| [\u2CEB-\u2CEE]
|
||||
| [\u2CF2-\u2CF3]
|
||||
| [\u2D00-\u2D25]
|
||||
| [\u2D27]
|
||||
| [\u2D2D]
|
||||
| [\u2D30-\u2D67]
|
||||
| [\u2D6F]
|
||||
| [\u2D80-\u2D96]
|
||||
| [\u2DA0-\u2DA6]
|
||||
| [\u2DA8-\u2DAE]
|
||||
| [\u2DB0-\u2DB6]
|
||||
| [\u2DB8-\u2DBE]
|
||||
| [\u2DC0-\u2DC6]
|
||||
| [\u2DC8-\u2DCE]
|
||||
| [\u2DD0-\u2DD6]
|
||||
| [\u2DD8-\u2DDE]
|
||||
| [\u2E2F]
|
||||
| [\u3005-\u3007]
|
||||
| [\u3021-\u3029]
|
||||
| [\u3031-\u3035]
|
||||
| [\u3038-\u303C]
|
||||
| [\u3041-\u3096]
|
||||
| [\u309D-\u309F]
|
||||
| [\u30A1-\u30FA]
|
||||
| [\u30FC-\u30FF]
|
||||
| [\u3105-\u312E]
|
||||
| [\u3131-\u318E]
|
||||
| [\u31A0-\u31BA]
|
||||
| [\u31F0-\u31FF]
|
||||
| [\u3400-\u4DB5]
|
||||
| [\u4E00-\u9FEA]
|
||||
| [\uA000-\uA48C]
|
||||
| [\uA4D0-\uA4FD]
|
||||
| [\uA500-\uA60C]
|
||||
| [\uA610-\uA61F]
|
||||
| [\uA62A-\uA62B]
|
||||
| [\uA640-\uA66E]
|
||||
| [\uA67F-\uA69D]
|
||||
| [\uA6A0-\uA6EF]
|
||||
| [\uA717-\uA71F]
|
||||
| [\uA722-\uA788]
|
||||
| [\uA78B-\uA7AE]
|
||||
| [\uA7B0-\uA7B7]
|
||||
| [\uA7F7-\uA801]
|
||||
| [\uA803-\uA805]
|
||||
| [\uA807-\uA80A]
|
||||
| [\uA80C-\uA822]
|
||||
| [\uA838]
|
||||
| [\uA840-\uA873]
|
||||
| [\uA882-\uA8B3]
|
||||
| [\uA8F2-\uA8F7]
|
||||
| [\uA8FB]
|
||||
| [\uA8FD]
|
||||
| [\uA90A-\uA925]
|
||||
| [\uA930-\uA946]
|
||||
| [\uA960-\uA97C]
|
||||
| [\uA984-\uA9B2]
|
||||
| [\uA9CF]
|
||||
| [\uA9E0-\uA9E4]
|
||||
| [\uA9E6-\uA9EF]
|
||||
| [\uA9FA-\uA9FE]
|
||||
| [\uAA00-\uAA28]
|
||||
| [\uAA40-\uAA42]
|
||||
| [\uAA44-\uAA4B]
|
||||
| [\uAA60-\uAA76]
|
||||
| [\uAA7A]
|
||||
| [\uAA7E-\uAAAF]
|
||||
| [\uAAB1]
|
||||
| [\uAAB5-\uAAB6]
|
||||
| [\uAAB9-\uAABD]
|
||||
| [\uAAC0]
|
||||
| [\uAAC2]
|
||||
| [\uAADB-\uAADD]
|
||||
| [\uAAE0-\uAAEA]
|
||||
| [\uAAF2-\uAAF4]
|
||||
| [\uAB01-\uAB06]
|
||||
| [\uAB09-\uAB0E]
|
||||
| [\uAB11-\uAB16]
|
||||
| [\uAB20-\uAB26]
|
||||
| [\uAB28-\uAB2E]
|
||||
| [\uAB30-\uAB5A]
|
||||
| [\uAB5C-\uAB65]
|
||||
| [\uAB70-\uABE2]
|
||||
| [\uAC00-\uD7A3]
|
||||
| [\uD7B0-\uD7C6]
|
||||
| [\uD7CB-\uD7FB]
|
||||
| [\uF900-\uFA6D]
|
||||
| [\uFA70-\uFAD9]
|
||||
| [\uFB00-\uFB06]
|
||||
| [\uFB13-\uFB17]
|
||||
| [\uFB1D]
|
||||
| [\uFB1F-\uFB28]
|
||||
| [\uFB2A-\uFB36]
|
||||
| [\uFB38-\uFB3C]
|
||||
| [\uFB3E]
|
||||
| [\uFB40-\uFB41]
|
||||
| [\uFB43-\uFB44]
|
||||
| [\uFB46-\uFBB1]
|
||||
| [\uFBD3-\uFD3D]
|
||||
| [\uFD50-\uFD8F]
|
||||
| [\uFD92-\uFDC7]
|
||||
| [\uFDF0-\uFDFC]
|
||||
| [\uFE33-\uFE34]
|
||||
| [\uFE4D-\uFE4F]
|
||||
| [\uFE69]
|
||||
| [\uFE70-\uFE74]
|
||||
| [\uFE76-\uFEFC]
|
||||
| [\uFF04]
|
||||
| [\uFF21-\uFF3A]
|
||||
| [\uFF3F]
|
||||
| [\uFF41-\uFF5A]
|
||||
| [\uFF66-\uFFBE]
|
||||
| [\uFFC2-\uFFC7]
|
||||
| [\uFFCA-\uFFCF]
|
||||
| [\uFFD2-\uFFD7]
|
||||
| [\uFFDA-\uFFDC]
|
||||
| [\uFFE0-\uFFE1]
|
||||
| [\uFFE5-\uFFE6]
|
||||
;
|
||||
|
||||
fragment IdentifierPart:
|
||||
IdentifierStart
|
||||
| [\u0030-\u0039]
|
||||
| [\u007F-\u009F]
|
||||
| [\u00AD]
|
||||
| [\u0300-\u036F]
|
||||
| [\u0483-\u0487]
|
||||
| [\u0591-\u05BD]
|
||||
| [\u05BF]
|
||||
| [\u05C1-\u05C2]
|
||||
| [\u05C4-\u05C5]
|
||||
| [\u05C7]
|
||||
| [\u0600-\u0605]
|
||||
| [\u0610-\u061A]
|
||||
| [\u061C]
|
||||
| [\u064B-\u0669]
|
||||
| [\u0670]
|
||||
| [\u06D6-\u06DD]
|
||||
| [\u06DF-\u06E4]
|
||||
| [\u06E7-\u06E8]
|
||||
| [\u06EA-\u06ED]
|
||||
| [\u06F0-\u06F9]
|
||||
| [\u070F]
|
||||
| [\u0711]
|
||||
| [\u0730-\u074A]
|
||||
| [\u07A6-\u07B0]
|
||||
| [\u07C0-\u07C9]
|
||||
| [\u07EB-\u07F3]
|
||||
| [\u0816-\u0819]
|
||||
| [\u081B-\u0823]
|
||||
| [\u0825-\u0827]
|
||||
| [\u0829-\u082D]
|
||||
| [\u0859-\u085B]
|
||||
| [\u08D4-\u0903]
|
||||
| [\u093A-\u093C]
|
||||
| [\u093E-\u094F]
|
||||
| [\u0951-\u0957]
|
||||
| [\u0962-\u0963]
|
||||
| [\u0966-\u096F]
|
||||
| [\u0981-\u0983]
|
||||
| [\u09BC]
|
||||
| [\u09BE-\u09C4]
|
||||
| [\u09C7-\u09C8]
|
||||
| [\u09CB-\u09CD]
|
||||
| [\u09D7]
|
||||
| [\u09E2-\u09E3]
|
||||
| [\u09E6-\u09EF]
|
||||
| [\u0A01-\u0A03]
|
||||
| [\u0A3C]
|
||||
| [\u0A3E-\u0A42]
|
||||
| [\u0A47-\u0A48]
|
||||
| [\u0A4B-\u0A4D]
|
||||
| [\u0A51]
|
||||
| [\u0A66-\u0A71]
|
||||
| [\u0A75]
|
||||
| [\u0A81-\u0A83]
|
||||
| [\u0ABC]
|
||||
| [\u0ABE-\u0AC5]
|
||||
| [\u0AC7-\u0AC9]
|
||||
| [\u0ACB-\u0ACD]
|
||||
| [\u0AE2-\u0AE3]
|
||||
| [\u0AE6-\u0AEF]
|
||||
| [\u0AFA-\u0AFF]
|
||||
| [\u0B01-\u0B03]
|
||||
| [\u0B3C]
|
||||
| [\u0B3E-\u0B44]
|
||||
| [\u0B47-\u0B48]
|
||||
| [\u0B4B-\u0B4D]
|
||||
| [\u0B56-\u0B57]
|
||||
| [\u0B62-\u0B63]
|
||||
| [\u0B66-\u0B6F]
|
||||
| [\u0B82]
|
||||
| [\u0BBE-\u0BC2]
|
||||
| [\u0BC6-\u0BC8]
|
||||
| [\u0BCA-\u0BCD]
|
||||
| [\u0BD7]
|
||||
| [\u0BE6-\u0BEF]
|
||||
| [\u0C00-\u0C03]
|
||||
| [\u0C3E-\u0C44]
|
||||
| [\u0C46-\u0C48]
|
||||
| [\u0C4A-\u0C4D]
|
||||
| [\u0C55-\u0C56]
|
||||
| [\u0C62-\u0C63]
|
||||
| [\u0C66-\u0C6F]
|
||||
| [\u0C81-\u0C83]
|
||||
| [\u0CBC]
|
||||
| [\u0CBE-\u0CC4]
|
||||
| [\u0CC6-\u0CC8]
|
||||
| [\u0CCA-\u0CCD]
|
||||
| [\u0CD5-\u0CD6]
|
||||
| [\u0CE2-\u0CE3]
|
||||
| [\u0CE6-\u0CEF]
|
||||
| [\u0D00-\u0D03]
|
||||
| [\u0D3B-\u0D3C]
|
||||
| [\u0D3E-\u0D44]
|
||||
| [\u0D46-\u0D48]
|
||||
| [\u0D4A-\u0D4D]
|
||||
| [\u0D57]
|
||||
| [\u0D62-\u0D63]
|
||||
| [\u0D66-\u0D6F]
|
||||
| [\u0D82-\u0D83]
|
||||
| [\u0DCA]
|
||||
| [\u0DCF-\u0DD4]
|
||||
| [\u0DD6]
|
||||
| [\u0DD8-\u0DDF]
|
||||
| [\u0DE6-\u0DEF]
|
||||
| [\u0DF2-\u0DF3]
|
||||
| [\u0E31]
|
||||
| [\u0E34-\u0E3A]
|
||||
| [\u0E47-\u0E4E]
|
||||
| [\u0E50-\u0E59]
|
||||
| [\u0EB1]
|
||||
| [\u0EB4-\u0EB9]
|
||||
| [\u0EBB-\u0EBC]
|
||||
| [\u0EC8-\u0ECD]
|
||||
| [\u0ED0-\u0ED9]
|
||||
| [\u0F18-\u0F19]
|
||||
| [\u0F20-\u0F29]
|
||||
| [\u0F35]
|
||||
| [\u0F37]
|
||||
| [\u0F39]
|
||||
| [\u0F3E-\u0F3F]
|
||||
| [\u0F71-\u0F84]
|
||||
| [\u0F86-\u0F87]
|
||||
| [\u0F8D-\u0F97]
|
||||
| [\u0F99-\u0FBC]
|
||||
| [\u0FC6]
|
||||
| [\u102B-\u103E]
|
||||
| [\u1040-\u1049]
|
||||
| [\u1056-\u1059]
|
||||
| [\u105E-\u1060]
|
||||
| [\u1062-\u1064]
|
||||
| [\u1067-\u106D]
|
||||
| [\u1071-\u1074]
|
||||
| [\u1082-\u108D]
|
||||
| [\u108F-\u109D]
|
||||
| [\u135D-\u135F]
|
||||
| [\u1712-\u1714]
|
||||
| [\u1732-\u1734]
|
||||
| [\u1752-\u1753]
|
||||
| [\u1772-\u1773]
|
||||
| [\u17B4-\u17D3]
|
||||
| [\u17DD]
|
||||
| [\u17E0-\u17E9]
|
||||
| [\u180B-\u180E]
|
||||
| [\u1810-\u1819]
|
||||
| [\u1885-\u1886]
|
||||
| [\u18A9]
|
||||
| [\u1920-\u192B]
|
||||
| [\u1930-\u193B]
|
||||
| [\u1946-\u194F]
|
||||
| [\u19D0-\u19D9]
|
||||
| [\u1A17-\u1A1B]
|
||||
| [\u1A55-\u1A5E]
|
||||
| [\u1A60-\u1A7C]
|
||||
| [\u1A7F-\u1A89]
|
||||
| [\u1A90-\u1A99]
|
||||
| [\u1AB0-\u1ABD]
|
||||
| [\u1B00-\u1B04]
|
||||
| [\u1B34-\u1B44]
|
||||
| [\u1B50-\u1B59]
|
||||
| [\u1B6B-\u1B73]
|
||||
| [\u1B80-\u1B82]
|
||||
| [\u1BA1-\u1BAD]
|
||||
| [\u1BB0-\u1BB9]
|
||||
| [\u1BE6-\u1BF3]
|
||||
| [\u1C24-\u1C37]
|
||||
| [\u1C40-\u1C49]
|
||||
| [\u1C50-\u1C59]
|
||||
| [\u1CD0-\u1CD2]
|
||||
| [\u1CD4-\u1CE8]
|
||||
| [\u1CED]
|
||||
| [\u1CF2-\u1CF4]
|
||||
| [\u1CF7-\u1CF9]
|
||||
| [\u1DC0-\u1DF9]
|
||||
| [\u1DFB-\u1DFF]
|
||||
| [\u200B-\u200F]
|
||||
| [\u202A-\u202E]
|
||||
| [\u2060-\u2064]
|
||||
| [\u2066-\u206F]
|
||||
| [\u20D0-\u20DC]
|
||||
| [\u20E1]
|
||||
| [\u20E5-\u20F0]
|
||||
| [\u2CEF-\u2CF1]
|
||||
| [\u2D7F]
|
||||
| [\u2DE0-\u2DFF]
|
||||
| [\u302A-\u302F]
|
||||
| [\u3099-\u309A]
|
||||
| [\uA620-\uA629]
|
||||
| [\uA66F]
|
||||
| [\uA674-\uA67D]
|
||||
| [\uA69E-\uA69F]
|
||||
| [\uA6F0-\uA6F1]
|
||||
| [\uA802]
|
||||
| [\uA806]
|
||||
| [\uA80B]
|
||||
| [\uA823-\uA827]
|
||||
| [\uA880-\uA881]
|
||||
| [\uA8B4-\uA8C5]
|
||||
| [\uA8D0-\uA8D9]
|
||||
| [\uA8E0-\uA8F1]
|
||||
| [\uA900-\uA909]
|
||||
| [\uA926-\uA92D]
|
||||
| [\uA947-\uA953]
|
||||
| [\uA980-\uA983]
|
||||
| [\uA9B3-\uA9C0]
|
||||
| [\uA9D0-\uA9D9]
|
||||
| [\uA9E5]
|
||||
| [\uA9F0-\uA9F9]
|
||||
| [\uAA29-\uAA36]
|
||||
| [\uAA43]
|
||||
| [\uAA4C-\uAA4D]
|
||||
| [\uAA50-\uAA59]
|
||||
| [\uAA7B-\uAA7D]
|
||||
| [\uAAB0]
|
||||
| [\uAAB2-\uAAB4]
|
||||
| [\uAAB7-\uAAB8]
|
||||
| [\uAABE-\uAABF]
|
||||
| [\uAAC1]
|
||||
| [\uAAEB-\uAAEF]
|
||||
| [\uAAF5-\uAAF6]
|
||||
| [\uABE3-\uABEA]
|
||||
| [\uABEC-\uABED]
|
||||
| [\uABF0-\uABF9]
|
||||
| [\uFB1E]
|
||||
| [\uFE00-\uFE0F]
|
||||
| [\uFE20-\uFE2F]
|
||||
| [\uFEFF]
|
||||
| [\uFF10-\uFF19]
|
||||
| [\uFFF9-\uFFFB]
|
||||
;
|
||||
|
||||
//
|
||||
// Additional symbols not defined in the lexical specification
|
||||
//
|
||||
|
||||
AT : '@';
|
||||
ELLIPSIS : '...';
|
||||
|
||||
//
|
||||
// Whitespace and comments
|
||||
//
|
||||
|
||||
WS: [ \t\r\n\u000C]+ -> skip;
|
||||
|
||||
COMMENT: '/*' .*? '*/' -> skip;
|
||||
|
||||
LINE_COMMENT: '//' ~[\r\n]* -> skip;
|
||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -1,14 +0,0 @@
|
||||
public class test {
|
||||
void methodOne() {
|
||||
class Helper234 {
|
||||
void doStuff() {}
|
||||
}
|
||||
class Helper2 {
|
||||
void doStuff() {}
|
||||
}
|
||||
}
|
||||
|
||||
void methodTwo() {
|
||||
System.out.println("Hello");
|
||||
}
|
||||
}
|
||||
@@ -1,20 +0,0 @@
|
||||
# Readme File
|
||||
|
||||
## Java-8
|
||||
```bash
|
||||
antr4 Java8Lexer.g4 Java8Parser.g4
|
||||
javac *.java
|
||||
java -cp ".:antlr-4.13.2-complete.jar" ExprTool ./Test/TaxApp.java
|
||||
```
|
||||
|
||||
|
||||
## JavaParser1.0.0
|
||||
```bash
|
||||
javac -cp .:javaparser-1.0.0.jar LCA_JP1_0_0.java
|
||||
java -cp .:javaparser-1.0.0.jar LCA_JP1_0_0 test.java
|
||||
```
|
||||
|
||||
## JavaParser3.27.0
|
||||
```bash
|
||||
javax
|
||||
```
|
||||
@@ -1,674 +0,0 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU Affero General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
Java 1.5 parser and Abstract Syntax Tree
|
||||
Copyright (C) 2007 Júlio Vilmar Gesser
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
Java 1.5 parser and Abstract Syntax Tree Copyright (C) 2007 Júlio Vilmar Gesser
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<http://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
||||
@@ -1,165 +0,0 @@
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
|
||||
This version of the GNU Lesser General Public License incorporates
|
||||
the terms and conditions of version 3 of the GNU General Public
|
||||
License, supplemented by the additional permissions listed below.
|
||||
|
||||
0. Additional Definitions.
|
||||
|
||||
As used herein, "this License" refers to version 3 of the GNU Lesser
|
||||
General Public License, and the "GNU GPL" refers to version 3 of the GNU
|
||||
General Public License.
|
||||
|
||||
"The Library" refers to a covered work governed by this License,
|
||||
other than an Application or a Combined Work as defined below.
|
||||
|
||||
An "Application" is any work that makes use of an interface provided
|
||||
by the Library, but which is not otherwise based on the Library.
|
||||
Defining a subclass of a class defined by the Library is deemed a mode
|
||||
of using an interface provided by the Library.
|
||||
|
||||
A "Combined Work" is a work produced by combining or linking an
|
||||
Application with the Library. The particular version of the Library
|
||||
with which the Combined Work was made is also called the "Linked
|
||||
Version".
|
||||
|
||||
The "Minimal Corresponding Source" for a Combined Work means the
|
||||
Corresponding Source for the Combined Work, excluding any source code
|
||||
for portions of the Combined Work that, considered in isolation, are
|
||||
based on the Application, and not on the Linked Version.
|
||||
|
||||
The "Corresponding Application Code" for a Combined Work means the
|
||||
object code and/or source code for the Application, including any data
|
||||
and utility programs needed for reproducing the Combined Work from the
|
||||
Application, but excluding the System Libraries of the Combined Work.
|
||||
|
||||
1. Exception to Section 3 of the GNU GPL.
|
||||
|
||||
You may convey a covered work under sections 3 and 4 of this License
|
||||
without being bound by section 3 of the GNU GPL.
|
||||
|
||||
2. Conveying Modified Versions.
|
||||
|
||||
If you modify a copy of the Library, and, in your modifications, a
|
||||
facility refers to a function or data to be supplied by an Application
|
||||
that uses the facility (other than as an argument passed when the
|
||||
facility is invoked), then you may convey a copy of the modified
|
||||
version:
|
||||
|
||||
a) under this License, provided that you make a good faith effort to
|
||||
ensure that, in the event an Application does not supply the
|
||||
function or data, the facility still operates, and performs
|
||||
whatever part of its purpose remains meaningful, or
|
||||
|
||||
b) under the GNU GPL, with none of the additional permissions of
|
||||
this License applicable to that copy.
|
||||
|
||||
3. Object Code Incorporating Material from Library Header Files.
|
||||
|
||||
The object code form of an Application may incorporate material from
|
||||
a header file that is part of the Library. You may convey such object
|
||||
code under terms of your choice, provided that, if the incorporated
|
||||
material is not limited to numerical parameters, data structure
|
||||
layouts and accessors, or small macros, inline functions and templates
|
||||
(ten or fewer lines in length), you do both of the following:
|
||||
|
||||
a) Give prominent notice with each copy of the object code that the
|
||||
Library is used in it and that the Library and its use are
|
||||
covered by this License.
|
||||
|
||||
b) Accompany the object code with a copy of the GNU GPL and this license
|
||||
document.
|
||||
|
||||
4. Combined Works.
|
||||
|
||||
You may convey a Combined Work under terms of your choice that,
|
||||
taken together, effectively do not restrict modification of the
|
||||
portions of the Library contained in the Combined Work and reverse
|
||||
engineering for debugging such modifications, if you also do each of
|
||||
the following:
|
||||
|
||||
a) Give prominent notice with each copy of the Combined Work that
|
||||
the Library is used in it and that the Library and its use are
|
||||
covered by this License.
|
||||
|
||||
b) Accompany the Combined Work with a copy of the GNU GPL and this license
|
||||
document.
|
||||
|
||||
c) For a Combined Work that displays copyright notices during
|
||||
execution, include the copyright notice for the Library among
|
||||
these notices, as well as a reference directing the user to the
|
||||
copies of the GNU GPL and this license document.
|
||||
|
||||
d) Do one of the following:
|
||||
|
||||
0) Convey the Minimal Corresponding Source under the terms of this
|
||||
License, and the Corresponding Application Code in a form
|
||||
suitable for, and under terms that permit, the user to
|
||||
recombine or relink the Application with a modified version of
|
||||
the Linked Version to produce a modified Combined Work, in the
|
||||
manner specified by section 6 of the GNU GPL for conveying
|
||||
Corresponding Source.
|
||||
|
||||
1) Use a suitable shared library mechanism for linking with the
|
||||
Library. A suitable mechanism is one that (a) uses at run time
|
||||
a copy of the Library already present on the user's computer
|
||||
system, and (b) will operate properly with a modified version
|
||||
of the Library that is interface-compatible with the Linked
|
||||
Version.
|
||||
|
||||
e) Provide Installation Information, but only if you would otherwise
|
||||
be required to provide such information under section 6 of the
|
||||
GNU GPL, and only to the extent that such information is
|
||||
necessary to install and execute a modified version of the
|
||||
Combined Work produced by recombining or relinking the
|
||||
Application with a modified version of the Linked Version. (If
|
||||
you use option 4d0, the Installation Information must accompany
|
||||
the Minimal Corresponding Source and Corresponding Application
|
||||
Code. If you use option 4d1, you must provide the Installation
|
||||
Information in the manner specified by section 6 of the GNU GPL
|
||||
for conveying Corresponding Source.)
|
||||
|
||||
5. Combined Libraries.
|
||||
|
||||
You may place library facilities that are a work based on the
|
||||
Library side by side in a single library together with other library
|
||||
facilities that are not Applications and are not covered by this
|
||||
License, and convey such a combined library under terms of your
|
||||
choice, if you do both of the following:
|
||||
|
||||
a) Accompany the combined library with a copy of the same work based
|
||||
on the Library, uncombined with any other library facilities,
|
||||
conveyed under the terms of this License.
|
||||
|
||||
b) Give prominent notice with the combined library that part of it
|
||||
is a work based on the Library, and explaining where to find the
|
||||
accompanying uncombined form of the same work.
|
||||
|
||||
6. Revised Versions of the GNU Lesser General Public License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions
|
||||
of the GNU Lesser General Public License from time to time. Such new
|
||||
versions will be similar in spirit to the present version, but may
|
||||
differ in detail to address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Library as you received it specifies that a certain numbered version
|
||||
of the GNU Lesser General Public License "or any later version"
|
||||
applies to it, you have the option of following the terms and
|
||||
conditions either of that published version or of any later version
|
||||
published by the Free Software Foundation. If the Library as you
|
||||
received it does not specify a version number of the GNU Lesser
|
||||
General Public License, you may choose any version of the GNU Lesser
|
||||
General Public License ever published by the Free Software Foundation.
|
||||
|
||||
If the Library as you received it specifies that a proxy can decide
|
||||
whether future versions of the GNU Lesser General Public License shall
|
||||
apply, that proxy's public statement of acceptance of any version is
|
||||
permanent authorization for you to choose that version for the
|
||||
Library.
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,41 +0,0 @@
|
||||
import japa.parser.JavaParser;
|
||||
import japa.parser.ast.CompilationUnit;
|
||||
import japa.parser.ast.body.*;
|
||||
import japa.parser.ast.visitor.VoidVisitorAdapter;
|
||||
|
||||
import java.io.FileInputStream;
|
||||
import java.io.File;
|
||||
|
||||
public class LCA_JP1_0_0 {
|
||||
|
||||
public static void main(String[] args) throws Exception {
|
||||
if (args.length == 0) {
|
||||
System.out.println("Usage: java LCA_JP1_0_0 <JavaSourceFile>");
|
||||
return;
|
||||
}
|
||||
|
||||
FileInputStream in = new FileInputStream(new File(args[0]));
|
||||
CompilationUnit cu = JavaParser.parse(in);
|
||||
in.close();
|
||||
|
||||
LocalClassVisitor visitor = new LocalClassVisitor();
|
||||
visitor.visit(cu, null);
|
||||
}
|
||||
|
||||
static class LocalClassVisitor extends VoidVisitorAdapter<Void> {
|
||||
private boolean insideMethod = false;
|
||||
|
||||
@Override
|
||||
public void visit(MethodDeclaration n, Void arg) {
|
||||
insideMethod = true;
|
||||
super.visit(n, arg);
|
||||
insideMethod = false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void visit(ClassOrInterfaceDeclaration n, Void arg) {
|
||||
System.out.println("Local class: " + n.getName());
|
||||
super.visit(n, arg);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,54 +0,0 @@
|
||||
import com.github.javaparser.JavaParser;
|
||||
import com.github.javaparser.ParserConfiguration;
|
||||
import com.github.javaparser.ast.CompilationUnit;
|
||||
import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration;
|
||||
import com.github.javaparser.ast.body.MethodDeclaration;
|
||||
import com.github.javaparser.ast.visitor.VoidVisitorAdapter;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.FileInputStream;
|
||||
|
||||
import static com.github.javaparser.ParserConfiguration.LanguageLevel.JAVA_8;
|
||||
|
||||
public class LCA_JP3_27_0 {
|
||||
|
||||
public static void main(String[] args) throws Exception {
|
||||
if (args.length == 0) {
|
||||
System.out.println("Usage: java LCA_JP3_27_0 <JavaSourceFile>");
|
||||
return;
|
||||
}
|
||||
|
||||
// Configure parser for Java 8
|
||||
ParserConfiguration config = new ParserConfiguration();
|
||||
config.setLanguageLevel(JAVA_8);
|
||||
JavaParser parser = new JavaParser(config);
|
||||
|
||||
// Parse the file
|
||||
FileInputStream in = new FileInputStream(new File(args[0]));
|
||||
CompilationUnit cu = parser.parse(in).getResult().get();
|
||||
in.close();
|
||||
|
||||
// Visit and find local classes
|
||||
LocalClassVisitor visitor = new LocalClassVisitor();
|
||||
visitor.visit(cu, null);
|
||||
}
|
||||
|
||||
static class LocalClassVisitor extends VoidVisitorAdapter<Void> {
|
||||
private boolean insideMethod = false;
|
||||
|
||||
@Override
|
||||
public void visit(MethodDeclaration n, Void arg) {
|
||||
insideMethod = true;
|
||||
super.visit(n, arg);
|
||||
insideMethod = false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void visit(ClassOrInterfaceDeclaration n, Void arg) {
|
||||
if (insideMethod) {
|
||||
System.out.println("Local class: " + n.getNameAsString());
|
||||
}
|
||||
super.visit(n, arg);
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -1,133 +0,0 @@
|
||||
+-------------------------------------------------------------------------------+
|
||||
| Java 1.5 parser and Abstract Syntax Tree. |
|
||||
+-------------------------------------------------------------------------------+
|
||||
| Copyright (C) 2007 J<>lio Vilmar Gesser |
|
||||
| jgesser@gmail.com |
|
||||
| http://code.google.com/p/javaparser/ |
|
||||
+-------------------------------------------------------------------------------+
|
||||
| This program is free software: you can redistribute it and/or modify |
|
||||
| it under the terms of the GNU Lesser General Public License as published by |
|
||||
| the Free Software Foundation, either version 3 of the License, or |
|
||||
| (at your option) any later version. |
|
||||
| |
|
||||
| This program is distributed in the hope that it will be useful, |
|
||||
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
||||
| GNU Lesser General Public License for more details. |
|
||||
| |
|
||||
| You should have received a copy of the GNU Lesser General Public License |
|
||||
| along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
||||
+-------------------------------------------------------------------------------+
|
||||
|
||||
This package contains a Java 1.5 Parser with AST generation and visitor support.
|
||||
The AST records the source code structure, javadoc and comments. Soon will be
|
||||
possible change the AST nodes or create new ones to modify source code like refactoring.
|
||||
This parser is based on Sreenivasa Viswanadha Java 1.5 parser.
|
||||
|
||||
Visit the project site, there you can get help, view some sample codes, report
|
||||
bugs and feature enhacement and download the latest version:
|
||||
http://code.google.com/p/javaparser/
|
||||
|
||||
|
||||
People who helped to improve this parser
|
||||
(Thank you all, sorry if I miss someone)
|
||||
------------------------------------------
|
||||
|
||||
Dmitry Kichinsky
|
||||
John Li
|
||||
Leon Poyyayil
|
||||
Keffin Barnaby
|
||||
Marc-Philippe Huget
|
||||
Samuel Stanojevic
|
||||
Sreenivasa Viswanadha
|
||||
Stephan Heiss
|
||||
Vadim TSES'KO
|
||||
|
||||
|
||||
Version history
|
||||
---------------
|
||||
|
||||
1.0.0 (2008-06-25)
|
||||
- Changed version numbering, starting version 1.0.0
|
||||
- Javadoc done for packages:
|
||||
- japa.parser
|
||||
- japa.parser.ast
|
||||
- Corrected bug when parsing in multithread:
|
||||
- JavaParser.setCacheParser(false) must be called before to use the parser concurrent
|
||||
|
||||
2008-06-19
|
||||
- No code changes, added binary distribution to download page
|
||||
|
||||
2008-06-11
|
||||
- Bug corrected: NPE in VoidVisitorAdapter
|
||||
- http://code.google.com/p/javaparser/issues/detail?id=2
|
||||
|
||||
2008-06-09
|
||||
- Added Adapters for de visitors
|
||||
|
||||
2008-05-28
|
||||
- This project now is published at Google Code:
|
||||
- http://code.google.com/p/javaparser/
|
||||
|
||||
2008-05-25
|
||||
- Added support for comments and javadoc to the tree.
|
||||
- Javadocs are stored directly to members (BodyDeclaration and all deriveds (classes, methods, fields, etc.)), accessible by the method getJavadoc().
|
||||
- All comments are stored in the CompilationUnit, accessible by the method getComments().
|
||||
|
||||
2008-04-01
|
||||
- Changed all nodes public attributes to be private and created getters to access them
|
||||
- Changed the methods of the Node getLine e getColumn to getBeginLine and getBeginColumn
|
||||
- Added the methods getEndLine and getEndColumn to the Node class (works only in the BlockNode)
|
||||
|
||||
2007-12-22
|
||||
- Corrected ConditionalExpression bug
|
||||
|
||||
2007-10-21
|
||||
- Added LGPL License
|
||||
|
||||
2007-10-21
|
||||
- Bugs corrected:
|
||||
- Created PackageDeclaration member of CompilationUnit to add suport for annotations in the package declaration
|
||||
- Parameterized anonymous constructor invocation
|
||||
- Explicit constructor invotation Type Arguments
|
||||
- ctrl+z ("\u001A") ar end of compilation unit
|
||||
|
||||
2007-10-09
|
||||
- EnumConstantDeclaration annotation support corrected
|
||||
- Parssing Java Unicode escape characters suport added
|
||||
|
||||
2007-10-03
|
||||
- Bug corrected: "MotifComboPopup.this.super()" statement was generating parser error
|
||||
|
||||
2007-10-01
|
||||
- Bug corrected: Casting signed primitive values
|
||||
double d = (double) -1;
|
||||
^
|
||||
|
||||
2007-08-06
|
||||
- Bug with the ingle line comments in the final of the unit corrected
|
||||
|
||||
2007-07-31
|
||||
- Fixed the bug with the following expression:
|
||||
Class c = (int.class);
|
||||
|
||||
2007-06-26
|
||||
- Bug fixes from Leon Poyyayil work
|
||||
- suport for hex floating point
|
||||
- unicode digits in indentifier
|
||||
- MemberValueArrayInitializer
|
||||
|
||||
2007-03-09
|
||||
- Long and Integer literal MIN_VALUE bug
|
||||
|
||||
2007-02-24
|
||||
- '\0' bug fixed
|
||||
|
||||
2007-02-01
|
||||
- Many bug fixes
|
||||
- Added line/column to nodes
|
||||
```bash
|
||||
javac -cp .:javaparser-1.0.0.jar LCA_JP1_0_0.java
|
||||
java -cp .:javaparser-1.0.0.jar test.java
|
||||
|
||||
```
|
||||
@@ -1,17 +0,0 @@
|
||||
public class test {
|
||||
void methodOne() {
|
||||
public class Helper234 {
|
||||
void doStuff() {
|
||||
}
|
||||
}
|
||||
private class Helper2 {
|
||||
void doStuff() {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void methodTwo() {
|
||||
System.out.println("Hello");
|
||||
}
|
||||
|
||||
}
|
||||
Binary file not shown.
@@ -1,3 +0,0 @@
|
||||
# Applied automatic formatting to the entire project
|
||||
# See https://github.com/javaparser/javaparser/issues/4408 for details
|
||||
5106428130cd3ff052a57d37a3d192f040da5edf
|
||||
@@ -1 +0,0 @@
|
||||
*.java text eol=lf
|
||||
@@ -1,10 +0,0 @@
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: "maven"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "daily"
|
||||
- package-ecosystem: "github-actions"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "daily"
|
||||
@@ -1,17 +0,0 @@
|
||||
{
|
||||
"extends": [
|
||||
"config:base"
|
||||
],
|
||||
"packageRules": [
|
||||
{
|
||||
"updateTypes": ["minor", "patch", "pin", "digest"],
|
||||
"automerge": true
|
||||
}
|
||||
],
|
||||
"automergeType": "pr",
|
||||
"prHourlyLimit": 0,
|
||||
"semanticCommits": true,
|
||||
"dependencyDashboard": true,
|
||||
"configWarningReuseIssue": false,
|
||||
"labels": ["dependencies"]
|
||||
}
|
||||
@@ -1,36 +0,0 @@
|
||||
on:
|
||||
push:
|
||||
# Sequence of patterns matched against refs/tags
|
||||
tags:
|
||||
# - 'v[0-9]+.[0-9]+.[0-9]+' # Push events to matching pattern -- updated to use regex for a semantic versioning version number
|
||||
- 'javaparser-parent-[0-9].*' # Push events to matching pattern -- loosened pattern to be v followed by at least one number, then anything else after (this allows for e.g. "-DRAFT" and "-SNAPSHOT" as a suffix, and shorter version numbers such as "v2")
|
||||
|
||||
name: Create Release from semantic versioning tag push
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Create Release
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4.2.2
|
||||
|
||||
- name: Create Release
|
||||
id: create_release
|
||||
uses: actions/create-release@v1.1.4
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
|
||||
with:
|
||||
tag_name: ${{ github.ref }}
|
||||
release_name: Release ${{ github.ref }}
|
||||
## Body content doesn't yet seem to appear in the Github UI
|
||||
# body: |
|
||||
# Bug Fixes:
|
||||
# - TODO: Describe any bug fixes
|
||||
#
|
||||
# Enhancements:
|
||||
# - TODO: Describe any new features or enhancements
|
||||
## Option -- trigger as a draft release, followed by the addition of any key release notes and manual approval?
|
||||
## Alternative -- replace the above body with a link to the changelog? We can always edit release after the fact to add in e.g. notes about breaking changes.
|
||||
draft: true
|
||||
prerelease: false
|
||||
@@ -1,63 +0,0 @@
|
||||
name: Check codegen and formatting
|
||||
|
||||
#on: [push, pull_request]
|
||||
#on: [pull_request]
|
||||
on:
|
||||
# Trigger the workflow on push to master (ignoring .md only changes)
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
|
||||
# Trigger the workflow on any pull_request (ignoring .md only changes)
|
||||
pull_request:
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
|
||||
# Enable manual triggering (important for contributors to enable a check on their fork)
|
||||
workflow_dispatch:
|
||||
|
||||
# If a build is running in the current branch, and the branch is updated, we cancel the previous build and start
|
||||
# a new one with the updated changes.
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
# Run checkstyle validations for pipeline
|
||||
checkstyle_check:
|
||||
name: Validate checkstyle
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout latest code
|
||||
uses: actions/checkout@v4.2.2
|
||||
with:
|
||||
fetch-depth: "0"
|
||||
- name: Set up JDK 11
|
||||
uses: actions/setup-java@v4
|
||||
with:
|
||||
java-version: '11'
|
||||
distribution: 'zulu'
|
||||
- name: Validate Project Checkstyle
|
||||
run: ./mvnw -B checkstyle:check
|
||||
|
||||
spotless_check:
|
||||
name: Spotless check
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout latest code
|
||||
uses: actions/checkout@v4.2.2
|
||||
with:
|
||||
fetch-depth: "0"
|
||||
- name: Set up JDK 11
|
||||
uses: actions/setup-java@v4
|
||||
with:
|
||||
java-version: '11'
|
||||
distribution: 'zulu'
|
||||
- name: Generate code and format
|
||||
run: |
|
||||
./run_core_metamodel_generator.sh
|
||||
# ./run_core_generators.sh automatically runs ./mvnw spotless:apply
|
||||
./run_core_generators.sh
|
||||
git diff --exit-code
|
||||
@@ -1,116 +0,0 @@
|
||||
name: Build and test (using maven)
|
||||
|
||||
#on: [push, pull_request]
|
||||
#on: [pull_request]
|
||||
on:
|
||||
# Trigger the workflow on push to master (ignoring .md only changes)
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
|
||||
# Trigger the workflow on any pull_request (ignoring .md only changes)
|
||||
pull_request:
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
|
||||
# Enable manual triggering (important for contributors to enable a check on their fork)
|
||||
workflow_dispatch:
|
||||
|
||||
# If a build is running in the current branch, and the branch is updated, we cancel the previous build and start
|
||||
# a new one with the updated changes.
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
maven_test:
|
||||
strategy:
|
||||
## Optionally cancel all other combinations if one fails
|
||||
fail-fast: false
|
||||
matrix:
|
||||
## Different OSs have different default line-endings -- test on all combinations.
|
||||
os: [ ubuntu-latest, macos-latest, windows-latest ]
|
||||
## Different JDK versions have different implementations etc. -- test on all combinations (ideally 8 to latest).
|
||||
### exclude pre-8 (min development version jdk8)
|
||||
jdk: [ 8,9,10,11,12,13,14,15,16,17,18 ]
|
||||
# The below configurations are no longer available on github runners and is not supported by the
|
||||
# setup-java action, nor are they available from the supported distributions.
|
||||
# See https://github.com/actions/setup-java for details
|
||||
exclude:
|
||||
- os: macos-latest
|
||||
jdk: 9
|
||||
- os: macos-latest
|
||||
jdk: 10
|
||||
- os: macos-latest
|
||||
jdk: 12
|
||||
- os: macos-latest
|
||||
jdk: 14
|
||||
|
||||
env:
|
||||
OS: ${{ matrix.os }}
|
||||
JDK: ${{ matrix.jdk }}
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
steps:
|
||||
## Checkout the current version of the code from the repo.
|
||||
- name: Checkout latest code
|
||||
uses: actions/checkout@v4.2.2
|
||||
with:
|
||||
fetch-depth: "0"
|
||||
|
||||
## Setup the specified version of Java (includes maven/gradle).
|
||||
- name: Set up JDK ${{ matrix.jdk }}
|
||||
uses: actions/setup-java@v4
|
||||
with:
|
||||
distribution: 'zulu' # v2 requires explicitly stating the distribution - `zulu` and `adopt` supported at time of writing
|
||||
java-version: ${{ matrix.jdk }} # Use matrix to select which JDK level to use
|
||||
java-package: jdk # optional (jdk or jre) - defaults to jdk
|
||||
|
||||
## Given that the build matrix only specifies the major version (configurable), output the precise version used.
|
||||
- name: Echo exact java version being used
|
||||
run: java -version
|
||||
|
||||
## Use a cache to reduce the build/test times (avoids having to download dependencies on EVERY run).
|
||||
### https://help.github.com/en/actions/language-and-framework-guides/building-and-testing-java-with-maven#caching-dependencies
|
||||
- name: Cache Maven packages
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: ~/.m2
|
||||
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
|
||||
restore-keys: ${{ runner.os }}-m2
|
||||
|
||||
|
||||
## Actually perform the tests. Unsuccessful tests will indicate a failed build.
|
||||
### -e, --errors : show traces where any errors occur
|
||||
### -B,--batch-mode : Run in non-interactive (batch) mode (disables output color)
|
||||
### clean : run the maven lifecycle stage `clean`
|
||||
### test : run the maven lifecycle stage `test`
|
||||
### -P,--activate-profiles : Comma-delimited list of profiles to activate
|
||||
### AlsoSlowTests : by default, only quick tests are run - the profile `AlsoSlowTests` runs the full test suite
|
||||
- name: Test with Maven (incl. slow tests)
|
||||
shell: bash
|
||||
run: ./mvnw -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -B --errors clean test --activate-profiles AlsoSlowTests
|
||||
|
||||
|
||||
- name: CodeCov - JavaParser Core
|
||||
uses: codecov/codecov-action@v5.4.3
|
||||
timeout-minutes: 10
|
||||
with:
|
||||
files: javaparser-core-testing/target/site/jacoco/jacoco.xml,javaparser-core-testing-bdd/target/site/jacoco/jacoco.xml
|
||||
fail_ci_if_error: false # optional (default = false) -- fail the build if upload to codecov.io fails
|
||||
verbose: false # optional (default = false):
|
||||
flags: javaparser-core,AlsoSlowTests,${{ matrix.os }},jdk-${{ matrix.jdk }}
|
||||
env_vars: OS,JDK
|
||||
|
||||
- name: CodeCov - JavaParser Symbol Solver
|
||||
uses: codecov/codecov-action@v5.4.3
|
||||
timeout-minutes: 10
|
||||
with:
|
||||
file: javaparser-symbol-solver-testing/target/site/jacoco/jacoco.xml
|
||||
fail_ci_if_error: false # optional (default = false) -- fail the build if upload to codecov.io fails
|
||||
verbose: false # optional (default = false):
|
||||
flags: javaparser-symbol-solver,AlsoSlowTests,${{ matrix.os }},jdk-${{ matrix.jdk }}
|
||||
env_vars: OS,JDK
|
||||
@@ -1,81 +0,0 @@
|
||||
name: Build Snapshot
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
|
||||
## (testing only) Trigger the workflow on any pull request
|
||||
#pull_request:
|
||||
|
||||
jobs:
|
||||
|
||||
generate_changelog:
|
||||
name: Generate Changelog
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
||||
# Check out current repository
|
||||
- name: Fetch Sources
|
||||
uses: actions/checkout@v4.2.2
|
||||
|
||||
# Setup Java 11 environment for the next steps
|
||||
- name: Setup Java
|
||||
uses: actions/setup-java@v4
|
||||
with:
|
||||
distribution: zulu
|
||||
java-version: 11
|
||||
|
||||
# Set environment variables
|
||||
- name: Generate Changelog
|
||||
id: vars
|
||||
shell: bash
|
||||
working-directory: ./scripts
|
||||
run: |
|
||||
## By convention, the "next" milestone is named "next release"
|
||||
./run_generate_changelog_by_milestone_title.sh "next release"
|
||||
|
||||
SHA_LONG=$(git rev-parse HEAD)
|
||||
SHA_SHORT=$(git rev-parse --short HEAD)
|
||||
CHANGELOG="$(<temp_changelog.md)"
|
||||
RELEASE_TITLE="SNAPSHOT - $SHA_SHORT"
|
||||
RELEASE_TAG_NAME="v_snapshot_$SHA_SHORT"
|
||||
|
||||
echo "sha_long=$SHA_LONG" >> $GITHUB_OUTPUT
|
||||
echo "sha_short=$SHA_SHORT" >> $GITHUB_OUTPUT
|
||||
echo "changelog<<EOF" >> $GITHUB_OUTPUT
|
||||
echo "$CHANGELOG" >> $GITHUB_OUTPUT
|
||||
echo "EOF" >> $GITHUB_OUTPUT
|
||||
echo "release_title=$RELEASE_TITLE" >> $GITHUB_OUTPUT
|
||||
echo "release_tag_name=$RELEASE_TAG_NAME" >> $GITHUB_OUTPUT
|
||||
|
||||
|
||||
- name: Output variables
|
||||
run: |
|
||||
echo sha_short = ${{ steps.vars.outputs.sha_short }}
|
||||
echo sha_long = ${{ steps.vars.outputs.sha_long }}
|
||||
echo changelog = "${{ steps.vars.outputs.changelog }}"
|
||||
echo changelog = "${{ steps.vars.outputs.release_title }}"
|
||||
echo changelog = "${{ steps.vars.outputs.release_tag_name }}"
|
||||
|
||||
|
||||
# Remove old release drafts by using the curl request for the available releases with draft flag
|
||||
- name: Remove Old Release Drafts
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: |
|
||||
gh api repos/{owner}/{repo}/releases \
|
||||
--jq '.[] | select(.draft == true) | .id' \
|
||||
| xargs -I '{}' gh api -X DELETE repos/{owner}/{repo}/releases/{}
|
||||
|
||||
|
||||
# Create new release draft - which is not publicly visible and requires manual acceptance
|
||||
- name: Create Release Draft
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: |
|
||||
gh release create ${{ steps.vars.outputs.release_tag_name }} \
|
||||
--target ${{ steps.vars.outputs.sha_long }} \
|
||||
--draft \
|
||||
--prerelease \
|
||||
--title "${{ steps.vars.outputs.release_title }}" \
|
||||
--notes-file ./scripts/temp_changelog.md
|
||||
|
||||
@@ -1,28 +0,0 @@
|
||||
/lib
|
||||
bin
|
||||
.manager
|
||||
target
|
||||
.settings
|
||||
*~
|
||||
.project
|
||||
.classpath
|
||||
.idea/
|
||||
*.iml
|
||||
release.properties
|
||||
**/.DS_Store
|
||||
**/pom.xml.releaseBackup
|
||||
|
||||
# Mobile Tools for Java (J2ME)
|
||||
.mtj.tmp/
|
||||
|
||||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
||||
hs_err_pid*
|
||||
|
||||
.gradle
|
||||
*.ipr
|
||||
*.iws
|
||||
build-*
|
||||
*.asc
|
||||
build
|
||||
out
|
||||
.java-version
|
||||
@@ -1,117 +0,0 @@
|
||||
/*
|
||||
* Copyright 2007-present the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
import java.net.*;
|
||||
import java.io.*;
|
||||
import java.nio.channels.*;
|
||||
import java.util.Properties;
|
||||
|
||||
public class MavenWrapperDownloader {
|
||||
|
||||
private static final String WRAPPER_VERSION = "0.5.6";
|
||||
/**
|
||||
* Default URL to download the maven-wrapper.jar from, if no 'downloadUrl' is provided.
|
||||
*/
|
||||
private static final String DEFAULT_DOWNLOAD_URL = "https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/"
|
||||
+ WRAPPER_VERSION + "/maven-wrapper-" + WRAPPER_VERSION + ".jar";
|
||||
|
||||
/**
|
||||
* Path to the maven-wrapper.properties file, which might contain a downloadUrl property to
|
||||
* use instead of the default one.
|
||||
*/
|
||||
private static final String MAVEN_WRAPPER_PROPERTIES_PATH =
|
||||
".mvn/wrapper/maven-wrapper.properties";
|
||||
|
||||
/**
|
||||
* Path where the maven-wrapper.jar will be saved to.
|
||||
*/
|
||||
private static final String MAVEN_WRAPPER_JAR_PATH =
|
||||
".mvn/wrapper/maven-wrapper.jar";
|
||||
|
||||
/**
|
||||
* Name of the property which should be used to override the default download url for the wrapper.
|
||||
*/
|
||||
private static final String PROPERTY_NAME_WRAPPER_URL = "wrapperUrl";
|
||||
|
||||
public static void main(String args[]) {
|
||||
System.out.println("- Downloader started");
|
||||
File baseDirectory = new File(args[0]);
|
||||
System.out.println("- Using base directory: " + baseDirectory.getAbsolutePath());
|
||||
|
||||
// If the maven-wrapper.properties exists, read it and check if it contains a custom
|
||||
// wrapperUrl parameter.
|
||||
File mavenWrapperPropertyFile = new File(baseDirectory, MAVEN_WRAPPER_PROPERTIES_PATH);
|
||||
String url = DEFAULT_DOWNLOAD_URL;
|
||||
if(mavenWrapperPropertyFile.exists()) {
|
||||
FileInputStream mavenWrapperPropertyFileInputStream = null;
|
||||
try {
|
||||
mavenWrapperPropertyFileInputStream = new FileInputStream(mavenWrapperPropertyFile);
|
||||
Properties mavenWrapperProperties = new Properties();
|
||||
mavenWrapperProperties.load(mavenWrapperPropertyFileInputStream);
|
||||
url = mavenWrapperProperties.getProperty(PROPERTY_NAME_WRAPPER_URL, url);
|
||||
} catch (IOException e) {
|
||||
System.out.println("- ERROR loading '" + MAVEN_WRAPPER_PROPERTIES_PATH + "'");
|
||||
} finally {
|
||||
try {
|
||||
if(mavenWrapperPropertyFileInputStream != null) {
|
||||
mavenWrapperPropertyFileInputStream.close();
|
||||
}
|
||||
} catch (IOException e) {
|
||||
// Ignore ...
|
||||
}
|
||||
}
|
||||
}
|
||||
System.out.println("- Downloading from: " + url);
|
||||
|
||||
File outputFile = new File(baseDirectory.getAbsolutePath(), MAVEN_WRAPPER_JAR_PATH);
|
||||
if(!outputFile.getParentFile().exists()) {
|
||||
if(!outputFile.getParentFile().mkdirs()) {
|
||||
System.out.println(
|
||||
"- ERROR creating output directory '" + outputFile.getParentFile().getAbsolutePath() + "'");
|
||||
}
|
||||
}
|
||||
System.out.println("- Downloading to: " + outputFile.getAbsolutePath());
|
||||
try {
|
||||
downloadFileFromURL(url, outputFile);
|
||||
System.out.println("Done");
|
||||
System.exit(0);
|
||||
} catch (Throwable e) {
|
||||
System.out.println("- Error downloading");
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
private static void downloadFileFromURL(String urlString, File destination) throws Exception {
|
||||
if (System.getenv("MVNW_USERNAME") != null && System.getenv("MVNW_PASSWORD") != null) {
|
||||
String username = System.getenv("MVNW_USERNAME");
|
||||
char[] password = System.getenv("MVNW_PASSWORD").toCharArray();
|
||||
Authenticator.setDefault(new Authenticator() {
|
||||
@Override
|
||||
protected PasswordAuthentication getPasswordAuthentication() {
|
||||
return new PasswordAuthentication(username, password);
|
||||
}
|
||||
});
|
||||
}
|
||||
URL website = new URL(urlString);
|
||||
ReadableByteChannel rbc;
|
||||
rbc = Channels.newChannel(website.openStream());
|
||||
FileOutputStream fos = new FileOutputStream(destination);
|
||||
fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE);
|
||||
fos.close();
|
||||
rbc.close();
|
||||
}
|
||||
|
||||
}
|
||||
Binary file not shown.
@@ -1,19 +0,0 @@
|
||||
# Licensed to the Apache Software Foundation (ASF) under one
|
||||
# or more contributor license agreements. See the NOTICE file
|
||||
# distributed with this work for additional information
|
||||
# regarding copyright ownership. The ASF licenses this file
|
||||
# to you under the Apache License, Version 2.0 (the
|
||||
# "License"); you may not use this file except in compliance
|
||||
# with the License. You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing,
|
||||
# software distributed under the License is distributed on an
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
# KIND, either express or implied. See the License for the
|
||||
# specific language governing permissions and limitations
|
||||
# under the License.
|
||||
wrapperVersion=3.3.2
|
||||
distributionType=only-script
|
||||
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.10/apache-maven-3.9.10-bin.zip
|
||||
@@ -1,79 +0,0 @@
|
||||
## Getting started
|
||||
Here is some information that's good to know when contributing to JavaParser:
|
||||
|
||||
- There is some interesting information on the [wiki](https://github.com/javaparser/javaparser/wiki).
|
||||
- We work on JavaParser because we like to, not because it earns us money. Please remember that we try to run a professional project in our spare time, on a budget of zero.
|
||||
- Be sure to check [the coding guidelines](https://github.com/javaparser/javaparser/wiki/Coding-Guidelines) which are easily used by installing the formatting rules as described there.
|
||||
- If you're new and like to casually contribute something, check out the [easy issues](https://github.com/javaparser/javaparser/labels/Easy).
|
||||
- If you're new and would like to become a member, start your own project that uses JavaParser.
|
||||
We noticed we get the best feedback from those.
|
||||
Here are [some fun project ideas](https://github.com/javaparser/javaparser/labels/fun%20project%20idea).
|
||||
- If you start working on an issue, please say so with a comment in the issue.
|
||||
- If you know how to fix a problem, please fix it and open a pull request instead of opening an issue.
|
||||
- If you would like to add new nodes, or new fields to existing nodes, check out the [Guide to Adding New Nodes and Fields](https://github.com/javaparser/javaparser/wiki/A-Detailed-Guide-to-Adding-New-Nodes-and-Fields).
|
||||
|
||||
Thanks for helping!
|
||||
|
||||
## Contribution Workflow
|
||||
|
||||
Our development workflow is based on Pull Request. If you are not familiar with the Pull Requests, we suggest you to checkout the [Github Documentation](https://help.github.com/articles/creating-a-pull-request/) for more information.
|
||||
|
||||
1. **Fork** the JavaParser project. If you already have a fork, ensure to fetch the latest commits.
|
||||
2. In your forked project, **create a branch** related to the issue you are working on. This is important to ensure that your pull request will not contain unrelated work.
|
||||
3. When your work in your branch is done, **push your branch to your forked repository**.
|
||||
4. Go back to the [javaparser project site](https://github.com/javaparser/javaparser) and it should have a message offering to **create a pull request**. If it doesn't you can [create one manually](https://github.com/javaparser/javaparser/compare).
|
||||
|
||||
### Remember:
|
||||
- A pull request should include tests. You can either use BDD or JUnit.
|
||||
- Every pull request will automatically be checked by a few tools. Make sure AppVeyor and Travis are green.
|
||||
- Pull requests often stay open for at least a few days to give people a chance to review it.
|
||||
- A pull request is merged when all comments on it have been resolved.
|
||||
- If you create a pull request for an issue, mention the issue in the format #123 to make github link it automatically.
|
||||
- Before creating a commit (or at least before submitting a pull request), please reformat the project with the instructions given below
|
||||
to avoid any formatting-related issues during the review.
|
||||
|
||||
### Note on formatting the project:
|
||||
|
||||
- If you are developing on a machine with bash installed, execute `./run_core_metamodel_generator.sh && ./run_core_generators.sh`. This
|
||||
will re-run all of the code generators and then re-format the entire project as a final step. This ensures that:
|
||||
- All the code that needs to be generated has been generated correctly.
|
||||
- None of the changes you've added will be overwritten by code generation in the future.
|
||||
- All of your changes are correctly formatted (including changes made during code generation, for example whitespace changes).
|
||||
|
||||
The PR check for style runs these generators and checks that the diff after doing so is empty, so if you've run this on your machine,
|
||||
then that check should not fail.
|
||||
|
||||
- If you are developing on a machine without bash, execute `./mvnw spotless:apply`. This will re-format the project, but without
|
||||
running the code generators. This will be sufficient in many cases, but it's still possible that changes are introduced during
|
||||
code generation which would cause the PR style check to fail. If this happens, some manual changes are required.
|
||||
|
||||
To fix this:
|
||||
1. Go to the job output for the failed `Spotless check` job by clicking the red cross next to the job.
|
||||
2. Scroll to the bottom of the `Generate code and format` output tab.
|
||||
3. There, you will see output from the diff command showing what failed. For example, in https://github.com/javaparser/javaparser/actions/runs/10389076737/job/28766249645,
|
||||
that output is:
|
||||
```
|
||||
[INFO] ------------------------------------------------------------------------
|
||||
diff --git a/javaparser-core/src/main/java/com/github/javaparser/ast/expr/RecordPatternExpr.java b/javaparser-core/src/main/java/com/github/javaparser/ast/expr/RecordPatternExpr.java
|
||||
index 7bc7f46b9..429889e35 100644
|
||||
--- a/javaparser-core/src/main/java/com/github/javaparser/ast/expr/RecordPatternExpr.java
|
||||
+++ b/javaparser-core/src/main/java/com/github/javaparser/ast/expr/RecordPatternExpr.java
|
||||
@@ -17,7 +17,6 @@
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Lesser General Public License for more details.
|
||||
*/
|
||||
-
|
||||
package com.github.javaparser.ast.expr;
|
||||
|
||||
import static com.github.javaparser.utils.Utils.assertNotNull;
|
||||
Error: Process completed with exit code 1.
|
||||
```
|
||||
|
||||
4. Verify that this output does not overwrite any code you wrote which would change the behaviour. If it does, you probably implemented
|
||||
something manually when it should've been generated and this will be overwritten next time the code generators are run. This requires
|
||||
a manual fix to your code to prevent issues in the future.
|
||||
5. If no major issues are found, copy this output, excluding the `[INFO] --...` line and the `Error: Process complete with exit code 1.`
|
||||
line and paste that into a patch file (for example, `/tmp/style.patch`, but the name and location aren't important).
|
||||
6. From the javaparser project directory, run `git apply /tmp/style.patch` (substituting `/tmp/style.patch` for the path of your
|
||||
patch file). `git status` should now show that all the files mentioned in the patch are modified.
|
||||
7. Add and commit the changes and push to update the PR.
|
||||
@@ -1,309 +0,0 @@
|
||||
|
||||
# Features
|
||||
This page describes the changes introduced within each version.
|
||||
|
||||
Language-related changes should normally have a validator, used in conjunction with the grammar, as part of the parsing process.
|
||||
|
||||
Where a change is not a language-related change _(e.g. JVM and garbage collection changes)_, this is marked as "Not Applicable (NA)".
|
||||
|
||||
## JDK 1.0 - January 1996
|
||||
Source: https://en.wikipedia.org/wiki/Java_version_history#JDK_1.0
|
||||
## JDK 1.1 - February 1997
|
||||
Source: https://en.wikipedia.org/wiki/Java_version_history#JDK_1.1
|
||||
## JDK 1.2 - December 1998
|
||||
Source: https://en.wikipedia.org/wiki/Java_version_history#J2SE_1.2
|
||||
## JDK 1.3 - May 2000
|
||||
Source: https://en.wikipedia.org/wiki/Java_version_history#J2SE_1.3
|
||||
## JDK 1.4 - February 2002
|
||||
Source: https://en.wikipedia.org/wiki/Java_version_history#J2SE_1.4
|
||||
## JDK 5 - September 2004
|
||||
Source: https://en.wikipedia.org/wiki/Java_version_history#J2SE_5.0
|
||||
## JDK 6 - December 2006
|
||||
Source: https://en.wikipedia.org/wiki/Java_version_history#Java_SE_6
|
||||
|
||||
## JDK 7 - July 2011
|
||||
Source: https://en.wikipedia.org/wiki/Java_version_history#Java_SE_7
|
||||
|
||||
|
||||
## JDK 8 - March 2014
|
||||
Source: https://en.wikipedia.org/wiki/Java_version_history#Java_SE_8
|
||||
|
||||
- JSR 335, JEP 126: Language-level support for lambda expressions (officially, lambda expressions; unofficially, closures) under Project Lambda and default methods (virtual extension methods) which allow the addition of methods to interfaces without breaking existing implementations. There was an ongoing debate in the Java community on whether to add support for lambda expressions. Sun later declared that lambda expressions would be included in Java and asked for community input to refine the feature. Supporting lambda expressions also enables functional-style operations on streams of elements, such as MapReduce-inspired transformations on collections. Default methods allow an author of an API to add new methods to an interface without breaking the old code using it. Although it was not their primary intent, default methods also allow multiple inheritance of behavior (but not state).
|
||||
- JSR 223, JEP 174: Project Nashorn, a JavaScript runtime which allows developers to embed JavaScript code within applications
|
||||
- JSR 308, JEP 104: Annotation on Java types, Unsigned integer arithmetic
|
||||
- JSR 337, JEP 120: Repeating annotations
|
||||
- JSR 310, JEP 150: Date and time API
|
||||
- JEP 178: Statically-linked JNI libraries
|
||||
- JEP 153: Launch JavaFX applications (direct launching of JavaFX application JARs)
|
||||
- JEP 122: Remove the permanent generation
|
||||
|
||||
## JDK 9 - September 2017
|
||||
Source: https://en.wikipedia.org/wiki/Java_version_history#Java_SE_9
|
||||
|
||||
- JSR 376: Modularization of the JDK under Project Jigsaw (Java Platform Module System)
|
||||
- JEP 222: JShell: The Java Shell (a Java REPL)
|
||||
- JEP 295: Ahead-of-time compilation
|
||||
- JEP 268: XML catalogs
|
||||
- JEP 266: More concurrency updates. It includes a Java implementation of Reactive Streams, including a new Flow class that included the interfaces previously provided by Reactive Streams
|
||||
- JEP 193: Variable handles: define a standard means to invoke the equivalents of various java.util.concurrent.atomic and sun.misc.Unsafe operations
|
||||
- JEP 282: jlink: The Java Linker: create a tool that can assemble and optimize a set of modules and their dependencies into a custom run-time image. It effectively allows to produce a fully usable executable including the JVM to run it. JavaDB was removed from JDK
|
||||
- JEP 263: HiDPI graphics: automatic scaling and sizing
|
||||
- JEP 254: Compact Strings
|
||||
- JEP 213: Milling Project Coin
|
||||
|
||||
## JDK 10 - March 2018
|
||||
Source: https://openjdk.java.net/projects/jdk/10/
|
||||
|
||||
Java 10 support [complete on 25/Feb/2018](https://github.com/javaparser/javaparser/blob/master/changelog.md#version-3515)
|
||||
|
||||
| JEP | Status | JavaParser Since | Description |
|
||||
|:--------------------------------------------:|:----------------:|:---------------------------------------------------------------:|---------------------------------------------------------|
|
||||
| [JEP 286](https://openjdk.java.net/jeps/286) | **Release** | **Supported Since: v3.5.15<br>Released on: 25/Feb/2018** | **Local-Variable Type Inference** |
|
||||
| [JEP 296](https://openjdk.java.net/jeps/296) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Consolidate the JDK Forest into a Single Repository~~ |
|
||||
| [JEP 304](https://openjdk.java.net/jeps/304) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Garbage-Collector Interface~~ |
|
||||
| [JEP 307](https://openjdk.java.net/jeps/307) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Parallel Full GC for G1~~ |
|
||||
| [JEP 310](https://openjdk.java.net/jeps/310) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Application Class-Data Sharing~~ |
|
||||
| [JEP 312](https://openjdk.java.net/jeps/312) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Thread-Local Handshakes~~ |
|
||||
| [JEP 313](https://openjdk.java.net/jeps/313) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Remove the Native-Header Generation Tool (javah)~~ |
|
||||
| [JEP 314](https://openjdk.java.net/jeps/314) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Additional Unicode Language-Tag Extensions~~ |
|
||||
| [JEP 316](https://openjdk.java.net/jeps/316) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Heap Allocation on Alternative Memory Devices~~ |
|
||||
| [JEP 317](https://openjdk.java.net/jeps/317) | ~~Experimental~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Experimental Java-Based JIT Compiler~~ |
|
||||
| [JEP 319](https://openjdk.java.net/jeps/319) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Root Certificates~~ |
|
||||
| [JEP 322](https://openjdk.java.net/jeps/322) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Time-Based Release Versioning~~ |
|
||||
|
||||
## JDK 11 - September 2018
|
||||
Source: https://openjdk.java.net/projects/jdk/11/
|
||||
|
||||
Java 11 support [complete on 19/Aug/2018](https://github.com/javaparser/javaparser/blob/master/changelog.md#version-3618)
|
||||
|
||||
| JEP | Status | JavaParser Since | Description |
|
||||
|:--------------------------------------------:|:----------------:|:----------------------------------------------------------------------------------------------------:|------------------------------------------------------------------|
|
||||
| [JEP 323](https://openjdk.java.net/jeps/323) | **Release** | **Supported Since: v3.xx.yy<br>Released on: dd/mmm/yyyy** | **Local-Variable Syntax for Lambda Parameters** |
|
||||
| [JEP 327](https://openjdk.java.net/jeps/327) | _Release_ | _Discussion Needed <sup id="a_11_JEP327">[JEP327](#f_11_JEP327)</sup>_ | _Unicode 10_ |
|
||||
| [JEP 181](https://openjdk.java.net/jeps/181) | _Release_ | _Discussion Needed <sup id="a_11_JEP181">[JEP181](#f_11_JEP181)</sup>_ | _Nest-Based Access Control_ |
|
||||
| [JEP 309](https://openjdk.java.net/jeps/309) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Dynamic Class-File Constants~~ |
|
||||
| [JEP 315](https://openjdk.java.net/jeps/315) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Improve Aarch64 Intrinsics~~ |
|
||||
| [JEP 318](https://openjdk.java.net/jeps/318) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Epsilon: A No-Op Garbage Collector~~ |
|
||||
| [JEP 320](https://openjdk.java.net/jeps/320) | ~~_Release_~~ | ~~_Not Applicable - Not a language change (NA) <sup id="a_11_JEP320">[JEP320](#f_11_JEP320)</sup>_~~ | ~~Remove the Java EE and CORBA Modules~~ |
|
||||
| [JEP 321](https://openjdk.java.net/jeps/321) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~HTTP Client (Standard)~~ |
|
||||
| [JEP 324](https://openjdk.java.net/jeps/324) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Key Agreement with Curve25519 and Curve448~~ |
|
||||
| [JEP 328](https://openjdk.java.net/jeps/328) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Flight Recorder~~ |
|
||||
| [JEP 329](https://openjdk.java.net/jeps/329) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~ChaCha20 and Poly1305 Cryptographic Algorithms~~ |
|
||||
| [JEP 330](https://openjdk.java.net/jeps/330) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Launch Single-File Source-Code Programs~~ |
|
||||
| [JEP 331](https://openjdk.java.net/jeps/331) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Low-Overhead Heap Profiling~~ |
|
||||
| [JEP 332](https://openjdk.java.net/jeps/332) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Transport Layer Security (TLS) 1.3~~ |
|
||||
| [JEP 333](https://openjdk.java.net/jeps/333) | ~~Experimental~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~ZGC: A Scalable Low-Latency Garbage Collector (Experimental)~~ |
|
||||
| [JEP 335](https://openjdk.java.net/jeps/335) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Deprecate the Nashorn JavaScript Engine~~ |
|
||||
| [JEP 336](https://openjdk.java.net/jeps/336) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Deprecate the Pack200 Tools and API~~ |
|
||||
|
||||
##### Footnotes:
|
||||
|
||||
- <b id="f_11_JEP181">JEP181</b> - Based on a cursory reading of this JEP, it is unclear if this is a change that affects JavaParser.
|
||||
Comments/discussion on this are welcomed. [↩](#a_11_JEP181)
|
||||
- <b id="f_11_JEP327">JEP327</b> - Based on a cursory reading of this JEP, it is unclear if this is a change that affects JavaParser.
|
||||
Comments/discussion on this are welcomed. [↩](#a_11_JEP327)
|
||||
- <b id="f_11_JEP320">JEP320</b> - JEP 320 is marked as NA. This is because JavaParser does not make use of classes within these packages,
|
||||
and any users of JavaParser will need to provide the relevant files in order to do parsing/solving
|
||||
(e.g. as source files, a jar, or via reflection). [↩](#a_11_JEP320)
|
||||
|
||||
|
||||
## JDK 12 - March 2019
|
||||
Source: https://openjdk.java.net/projects/jdk/12/
|
||||
|
||||
Parsing support for Java 12 (including preview features) [complete on 03/Feb/2019](https://github.com/javaparser/javaparser/blob/master/changelog.md#version-3110)
|
||||
|
||||
Resolution support for Java 12 complete on ??/??/2019
|
||||
|
||||
| JEP | Status | JavaParser Since | Description |
|
||||
|:--------------------------------------------:|:----------------:|:---------------------------------------------------------------:|-------------------------------------------------------------------|
|
||||
| [JEP 325](https://openjdk.java.net/jeps/325) | **_Preview_** | **Supported Since: v3.11.0<br>Released on: 03/Feb/2019** | Switch Expressions (Preview) |
|
||||
| [JEP 189](https://openjdk.java.net/jeps/189) | ~~Experimental~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)~~ |
|
||||
| [JEP 230](https://openjdk.java.net/jeps/230) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Microbenchmark Suite~~ |
|
||||
| [JEP 334](https://openjdk.java.net/jeps/334) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~JVM Constants API~~ |
|
||||
| [JEP 340](https://openjdk.java.net/jeps/340) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~One AArch64 Port, Not Two~~ |
|
||||
| [JEP 341](https://openjdk.java.net/jeps/341) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Default CDS Archives~~ |
|
||||
| [JEP 344](https://openjdk.java.net/jeps/344) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Abortable Mixed Collections for G1~~ |
|
||||
| [JEP 346](https://openjdk.java.net/jeps/346) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Promptly Return Unused Committed Memory from G1~~ |
|
||||
|
||||
## JDK 13 - September 2018
|
||||
Source: https://openjdk.java.net/projects/jdk/13/
|
||||
|
||||
No language specification changes in JDK 13 -- thus no "complete" date. Details of preview support is below.
|
||||
|
||||
| JEP | Status | JavaParser Since | Description |
|
||||
|:--------------------------------------------:|:-------------:|:---------------------------------------------------------------:|---------------------------------------|
|
||||
| [JEP 354](https://openjdk.java.net/jeps/354) | **_Preview_** | **Supported Since: v3.11.0<br>Released on: 03/Feb/2019** | Switch Expressions (Preview) |
|
||||
| [JEP 355](https://openjdk.java.net/jeps/355) | **_Preview_** | **Supported Since: v3.14.0<br>Released on: 05/May/2019** | Text Blocks (Preview) |
|
||||
| [JEP 350](https://openjdk.java.net/jeps/350) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Dynamic CDS Archives~~ |
|
||||
| [JEP 351](https://openjdk.java.net/jeps/351) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~ZGC: Uncommit Unused Memory~~ |
|
||||
| [JEP 353](https://openjdk.java.net/jeps/353) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Reimplement the Legacy Socket API~~ |
|
||||
|
||||
|
||||
|
||||
## JDK 14 - March 2020
|
||||
Source: https://openjdk.java.net/projects/jdk/14/
|
||||
|
||||
Switch support was complete during preview status.
|
||||
|
||||
The preview features of records are work-in-progress.
|
||||
|
||||
| JEP | Status | JavaParser Since | Description |
|
||||
|:--------------------------------------------:|:---------------:|:-----------------------------------------------------------------------------------------------------------------:|---------------------------------------------------------------|
|
||||
| [JEP 361](https://openjdk.java.net/jeps/361) | **Release** | **Supported Since: v3.xx.yy<br>Released on: dd/mmm/yyyy** | **Switch Expressions (Standard)** |
|
||||
| [JEP 368](https://openjdk.java.net/jeps/368) | **2nd Preview** | **Supported Since: v3.14.0<br>Released on: 05/May/2019** | **Text Blocks (Second Preview)** |
|
||||
| [JEP 305](https://openjdk.java.net/jeps/305) | **_Preview_** | **Supported Since: v3.18.0<br>Released on: 01/Dec/2020** | **Pattern Matching for `instanceof` (Preview)** |
|
||||
| [JEP 359](https://openjdk.java.net/jeps/359) | **_Preview_** | **Partial Support Since: v3.22.0<br>Released on: 11/May/2021 <sup id="a_14_JEP359">[JEP343](#f_14_JEP359)</sup>** | **Records (Preview)** |
|
||||
| [JEP 343](https://openjdk.java.net/jeps/343) | ~~_Incubator_~~ | ~~_Not Applicable (NA)<sup id="a_14_JEP343">[JEP343](#f_14_JEP343)</sup>_~~ | ~~Packaging Tool (Incubator)~~ |
|
||||
| [JEP 345](https://openjdk.java.net/jeps/345) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~NUMA-Aware Memory Allocation for G1~~ |
|
||||
| [JEP 349](https://openjdk.java.net/jeps/349) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~JFR Event Streaming~~ |
|
||||
| [JEP 352](https://openjdk.java.net/jeps/352) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Non-Volatile Mapped Byte Buffers~~ |
|
||||
| [JEP 358](https://openjdk.java.net/jeps/358) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Helpful NullPointerExceptions~~ |
|
||||
| [JEP 362](https://openjdk.java.net/jeps/362) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Deprecate the Solaris and SPARC Ports~~ |
|
||||
| [JEP 363](https://openjdk.java.net/jeps/363) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Remove the Concurrent Mark Sweep (CMS) Garbage Collector~~ |
|
||||
| [JEP 364](https://openjdk.java.net/jeps/364) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~ZGC on macOS~~ |
|
||||
| [JEP 365](https://openjdk.java.net/jeps/365) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~ZGC on Windows~~ |
|
||||
| [JEP 366](https://openjdk.java.net/jeps/366) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Deprecate the ParallelScavenge + SerialOld GC Combination~~ |
|
||||
| [JEP 367](https://openjdk.java.net/jeps/367) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Remove the Pack200 Tools and API~~ |
|
||||
| [JEP 370](https://openjdk.java.net/jeps/370) | ~~_Release_~~ | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Foreign-Memory Access API (Incubator)~~ |
|
||||
|
||||
##### Footnotes:
|
||||
|
||||
- <b id="f_14_JEP343">JEP343</b> - JEP 343 is marked as not applicable, as it relates to packaging of apps - e.g. as `.exe`/`.msi`/`.deb`/`.rpm`/`.pkg`/`.dmg`.
|
||||
The JEP describes the layout/structure of the output file, suggesting that _maybe_ in the future the files may be examined, and _potentially_ used similarly to a `.jar` or set of `.class` files.
|
||||
This is not going to be actively pursued (_especially_ since this is still in the incubator stage), though tested PRs are always welcome.
|
||||
[↩](#a_14_JEP343)
|
||||
|
||||
|
||||
- <b id="f_14_JEP359">JEP359</b> - The behaviour of records changed between preview/2nd preview/release.
|
||||
Unless otherwise stated, the JavaParser implementation follows the released behaviour.
|
||||
Additionally, note that "partial" support refers to javaparser-core being complete since 3.21.0, and javaparser-symbol-solver-core support is TBC.
|
||||
[↩](#a_14_JEP359)
|
||||
|
||||
|
||||
|
||||
## JDK 15 - September 2020
|
||||
Source: https://openjdk.java.net/projects/jdk/15/
|
||||
|
||||
Note: Unless otherwise stated, the JavaParser implementations of features follows the released behaviour.
|
||||
|
||||
| JEP | Status | JavaParser Since | Description |
|
||||
|:--------------------------------------------:|:---------------:|:-----------------------------------------------------------------------------------------------------------------:|--------------------------------------------------------|
|
||||
| [JEP 378](https://openjdk.java.net/jeps/378) | **_Release_** | **Supported Since: v3.14.0<br>Released on: 05/May/2019** | **Text Blocks** |
|
||||
| [JEP 384](https://openjdk.java.net/jeps/384) | **_Release_** | **Partial Support Since: v3.22.0<br>Released on: 11/May/2021 <sup id="a_15_JEP384">[JEP384](#f_15_JEP384)</sup>** | **Records (Second Preview)** |
|
||||
| [JEP 375](https://openjdk.java.net/jeps/375) | **_Release_** | **Supported Since: v3.18.0<br>Released on: 01/Dec/2020** | **Pattern Matching for `instanceof` (Second Preview)** |
|
||||
| [JEP 360](https://openjdk.java.net/jeps/360) | **_Preview_** | | **Sealed Classes (Preview)** |
|
||||
| [JEP 339](https://openjdk.java.net/jeps/339) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Edwards-Curve Digital Signature Algorithm (EdDSA)~~ |
|
||||
| [JEP 371](https://openjdk.java.net/jeps/371) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Hidden Classes~~ |
|
||||
| [JEP 372](https://openjdk.java.net/jeps/372) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Remove the Nashorn JavaScript Engine~~ |
|
||||
| [JEP 373](https://openjdk.java.net/jeps/373) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Reimplement the Legacy DatagramSocket API~~ |
|
||||
| [JEP 374](https://openjdk.java.net/jeps/374) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Disable and Deprecate Biased Locking~~ |
|
||||
| [JEP 377](https://openjdk.java.net/jeps/377) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~ZGC: A Scalable Low-Latency Garbage Collector~~ |
|
||||
| [JEP 379](https://openjdk.java.net/jeps/379) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Shenandoah: A Low-Pause-Time Garbage Collector~~ |
|
||||
| [JEP 381](https://openjdk.java.net/jeps/381) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Remove the Solaris and SPARC Ports~~ |
|
||||
| [JEP 383](https://openjdk.java.net/jeps/383) | **_Incubator_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Foreign-Memory Access API (Second Incubator)~~ |
|
||||
| [JEP 385](https://openjdk.java.net/jeps/385) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Deprecate RMI Activation for Removal~~ |
|
||||
|
||||
- <b id="f_15_JEP384">JEP384</b> - The behaviour of records changed between preview/2nd preview/release.
|
||||
Unless otherwise stated, the JavaParser implementation follows the released behaviour.
|
||||
Additionally, note that "partial" support refers to javaparser-core being complete since 3.21.0, and javaparser-symbol-solver-core support is TBC.
|
||||
[↩](#a_15_JEP384)
|
||||
|
||||
|
||||
|
||||
## JDK 16 - March 2021
|
||||
Source: https://openjdk.java.net/projects/jdk/16/
|
||||
|
||||
Note: Unless otherwise stated, the JavaParser implementations of features follows the released behaviour.
|
||||
|
||||
| JEP | Status | JavaParser Since | Description |
|
||||
|:--------------------------------------------:|:---------------:|:------------------------------------------------------------------------------------------------------------------------------:|---------------------------------------------------|
|
||||
| [JEP 395](https://openjdk.java.net/jeps/395) | **_Release_** | **Parser Support Since: v3.22.0<br>Released on: 11/May/2021, Solving TBC <sup id="a_16_JEP384">[JEP395](#f_16_JEP395)</sup>** | **Records** |
|
||||
| [JEP 394](https://openjdk.java.net/jeps/394) | **_Release_** | **Supported Since: v3.18.0<br>Released on: 01/Dec/2020** | **Pattern Matching for `instanceof`** |
|
||||
| [JEP 397](https://openjdk.java.net/jeps/397) | **2nd Preview** | | **Sealed Classes (Second Preview)** |
|
||||
| [JEP 338](https://openjdk.java.net/jeps/338) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Vector API (Incubator)~~ |
|
||||
| [JEP 347](https://openjdk.java.net/jeps/347) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Enable C++14 Language Features~~ |
|
||||
| [JEP 357](https://openjdk.java.net/jeps/357) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Migrate from Mercurial to Git~~ |
|
||||
| [JEP 369](https://openjdk.java.net/jeps/369) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Migrate to GitHub~~ |
|
||||
| [JEP 376](https://openjdk.java.net/jeps/376) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~ZGC: Concurrent Thread-Stack Processing~~ |
|
||||
| [JEP 380](https://openjdk.java.net/jeps/380) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Unix-Domain Socket Channels~~ |
|
||||
| [JEP 386](https://openjdk.java.net/jeps/386) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Alpine Linux Port~~ |
|
||||
| [JEP 387](https://openjdk.java.net/jeps/387) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Elastic Metaspace~~ |
|
||||
| [JEP 388](https://openjdk.java.net/jeps/388) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Windows/AArch64 Port~~ |
|
||||
| [JEP 389](https://openjdk.java.net/jeps/389) | **_Incubator_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Foreign Linker API (Incubator)~~ |
|
||||
| [JEP 390](https://openjdk.java.net/jeps/390) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Warnings for Value-Based Classes~~ |
|
||||
| [JEP 392](https://openjdk.java.net/jeps/392) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Packaging Tool~~ |
|
||||
| [JEP 393](https://openjdk.java.net/jeps/393) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Foreign-Memory Access API (Third Incubator)~~ |
|
||||
| [JEP 396](https://openjdk.java.net/jeps/396) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | ~~Strongly Encapsulate JDK Internals by Default~~ |
|
||||
|
||||
- <b id="f_16_JEP395">JEP395</b> - The behaviour of records changed between preview/2nd preview/release.
|
||||
Unless otherwise stated, the JavaParser implementation follows the released behaviour.
|
||||
Additionally, note that "partial" support refers to javaparser-core being complete since 3.21.0, and javaparser-symbol-solver-core support is TBC.
|
||||
[↩](#a_16_JEP395)
|
||||
|
||||
|
||||
## JDK 17 - September 2021
|
||||
Source: https://openjdk.java.net/projects/jdk/17/
|
||||
|
||||
Note: Unless otherwise stated, the JavaParser implementations of features follows the released behaviour.
|
||||
|
||||
| JEP | Status | JavaParser Since | Description |
|
||||
|:--------------------------------------------:|:-------------------:|:---------------------------------------------------------------:|------------------------------------------------|
|
||||
| [JEP 306](https://openjdk.java.net/jeps/306) | **_Release_** | | Restore Always-Strict Floating-Point Semantics |
|
||||
| [JEP 409](https://openjdk.java.net/jeps/409) | **_Release_** | | Sealed Classes |
|
||||
| [JEP 406](https://openjdk.java.net/jeps/406) | **_Preview_** | | Pattern Matching for `switch` (Preview) |
|
||||
| [JEP 356](https://openjdk.java.net/jeps/356) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | Enhanced Pseudo-Random Number Generators |
|
||||
| [JEP 382](https://openjdk.java.net/jeps/382) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | New macOS Rendering Pipeline |
|
||||
| [JEP 391](https://openjdk.java.net/jeps/391) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | macOS/AArch64 Port |
|
||||
| [JEP 398](https://openjdk.java.net/jeps/398) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | Deprecate the Applet API for Removal |
|
||||
| [JEP 403](https://openjdk.java.net/jeps/403) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | Strongly Encapsulate JDK Internals |
|
||||
| [JEP 407](https://openjdk.java.net/jeps/407) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | Remove RMI Activation |
|
||||
| [JEP 410](https://openjdk.java.net/jeps/410) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | Remove the Experimental AOT and JIT Compiler |
|
||||
| [JEP 411](https://openjdk.java.net/jeps/411) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | Deprecate the Security Manager for Removal |
|
||||
| [JEP 412](https://openjdk.java.net/jeps/412) | **_Incubator_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | Foreign Function & Memory API (Incubator) |
|
||||
| [JEP 414](https://openjdk.java.net/jeps/414) | **_2nd Incubator_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | Vector API (Second Incubator) |
|
||||
| [JEP 415](https://openjdk.java.net/jeps/415) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | Context-Specific Deserialization Filters |
|
||||
|
||||
|
||||
|
||||
## JDK 18 - March 2022
|
||||
Source: https://openjdk.java.net/projects/jdk/18/
|
||||
|
||||
Note: Unless otherwise stated, the JavaParser implementations of features follows the released behaviour.
|
||||
|
||||
### Schedule
|
||||
|
||||
2021/12/09 Rampdown Phase One (fork from main line)
|
||||
2022/01/20 Rampdown Phase Two
|
||||
2022/02/10 Initial Release Candidate
|
||||
2022/02/24 Final Release Candidate
|
||||
2022/03/22 General Availability
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
| JEP | Status | JavaParser Since | Description |
|
||||
|:--------------------------------------------:|:-------------------:|:---------------------------------------------------------------:|--------------------------------------------------|
|
||||
| [JEP 413](https://openjdk.java.net/jeps/413) | **_Release_** | | Code Snippets in Java API Documentation |
|
||||
| [JEP 420](https://openjdk.java.net/jeps/420) | **_Preview_** | | Pattern Matching for `switch` (Second Preview) |
|
||||
| [JEP 400](https://openjdk.java.net/jeps/400) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | UTF-8 by Default |
|
||||
| [JEP 408](https://openjdk.java.net/jeps/408) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | Simple Web Server |
|
||||
| [JEP 416](https://openjdk.java.net/jeps/416) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | Reimplement Core Reflection with Method Handles |
|
||||
| [JEP 417](https://openjdk.java.net/jeps/417) | **_3rd Incubator_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | Vector API (Third Incubator) |
|
||||
| [JEP 418](https://openjdk.java.net/jeps/418) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | Internet-Address Resolution SPI |
|
||||
| [JEP 419](https://openjdk.java.net/jeps/419) | **_2nd Incubator_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | Foreign Function & Memory API (Second Incubator) |
|
||||
| [JEP 421](https://openjdk.java.net/jeps/421) | **_Release_** | ~~_Not Applicable - Not a language specification change (NA)_~~ | Deprecate Finalization for Removal |
|
||||
|
||||
|
||||
|
||||
## JDK 19 - _targeted for September 2022_
|
||||
Source: https://openjdk.java.net/projects/jdk/18/
|
||||
|
||||
Note: Unless otherwise stated, the JavaParser implementations of features follows the released behaviour.
|
||||
|
||||
### Features
|
||||
|
||||
JEPs targeted to JDK 19, so far
|
||||
422: Linux/RISC-V Port
|
||||
|
||||
Last update: 2022/3/18 16:38 UTC
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1,52 +0,0 @@
|
||||
import com.github.javaparser.JavaParser;
|
||||
import com.github.javaparser.ParserConfiguration;
|
||||
import com.github.javaparser.ast.CompilationUnit;
|
||||
import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration;
|
||||
import com.github.javaparser.ast.body.MethodDeclaration;
|
||||
import com.github.javaparser.ast.visitor.VoidVisitorAdapter;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.FileInputStream;
|
||||
|
||||
import static com.github.javaparser.ParserConfiguration.LanguageLevel.JAVA_8;
|
||||
|
||||
public class LCA_JP3_27_0 {
|
||||
|
||||
public static void main(String[] args) throws Exception {
|
||||
if (args.length == 0) {
|
||||
System.out.println("Usage: java LCA_JP3_27_0 <JavaSourceFile>");
|
||||
return;
|
||||
}
|
||||
|
||||
// Configure parser for Java 8
|
||||
ParserConfiguration config = new ParserConfiguration();
|
||||
config.setLanguageLevel(JAVA_8);
|
||||
JavaParser parser = new JavaParser(config);
|
||||
|
||||
// Parse the file
|
||||
FileInputStream in = new FileInputStream(new File(args[0]));
|
||||
CompilationUnit cu = parser.parse(in).getResult().get();
|
||||
in.close();
|
||||
|
||||
// Visit and find local classes
|
||||
LocalClassVisitor visitor = new LocalClassVisitor();
|
||||
visitor.visit(cu, null);
|
||||
}
|
||||
|
||||
static class LocalClassVisitor extends VoidVisitorAdapter<Void> {
|
||||
private boolean insideMethod = false;
|
||||
|
||||
@Override
|
||||
public void visit(MethodDeclaration n, Void arg) {
|
||||
insideMethod = true;
|
||||
super.visit(n, arg);
|
||||
insideMethod = false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void visit(ClassOrInterfaceDeclaration n, Void arg) {
|
||||
System.out.println("Local class: " + n.getNameAsString());
|
||||
super.visit(n, arg);
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -1,17 +0,0 @@
|
||||
public class test {
|
||||
void methodOne() {
|
||||
public class Helper234 {
|
||||
void doStuff() {
|
||||
}
|
||||
}
|
||||
private class Helper2 {
|
||||
void doStuff() {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void methodTwo() {
|
||||
System.out.println("Hello");
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,6 +0,0 @@
|
||||
JavaParser is available either under the terms of the LGPL License or the Apache License. You as the user are entitled to choose the terms under which to adopt JavaParser.
|
||||
|
||||
For details about the LGPL License please refer to LICENSE.LGPL. Please note
|
||||
that LGPL is just an extension to GPL, located in LICENSE.GPL.
|
||||
|
||||
For details about the Apache License please refer to LICENSE.APACHE
|
||||
@@ -1,202 +0,0 @@
|
||||
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work.
|
||||
|
||||
To apply the Apache License to your work, attach the following
|
||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||
replaced with your own identifying information. (Don't include
|
||||
the brackets!) The text should be enclosed in the appropriate
|
||||
comment syntax for the file format. We also recommend that a
|
||||
file or class name and description of purpose be included on the
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright [yyyy] [name of copyright owner]
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
@@ -1,674 +0,0 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU Affero General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
Java 1.5 japa.parser and Abstract Syntax Tree
|
||||
Copyright (C) 2007 J<>lio Vilmar Gesser
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
Java 1.5 japa.parser and Abstract Syntax Tree Copyright (C) 2007 J<>lio Vilmar Gesser
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<http://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
||||
@@ -1,165 +0,0 @@
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
|
||||
This version of the GNU Lesser General Public License incorporates
|
||||
the terms and conditions of version 3 of the GNU General Public
|
||||
License, supplemented by the additional permissions listed below.
|
||||
|
||||
0. Additional Definitions.
|
||||
|
||||
As used herein, "this License" refers to version 3 of the GNU Lesser
|
||||
General Public License, and the "GNU GPL" refers to version 3 of the GNU
|
||||
General Public License.
|
||||
|
||||
"The Library" refers to a covered work governed by this License,
|
||||
other than an Application or a Combined Work as defined below.
|
||||
|
||||
An "Application" is any work that makes use of an interface provided
|
||||
by the Library, but which is not otherwise based on the Library.
|
||||
Defining a subclass of a class defined by the Library is deemed a mode
|
||||
of using an interface provided by the Library.
|
||||
|
||||
A "Combined Work" is a work produced by combining or linking an
|
||||
Application with the Library. The particular version of the Library
|
||||
with which the Combined Work was made is also called the "Linked
|
||||
Version".
|
||||
|
||||
The "Minimal Corresponding Source" for a Combined Work means the
|
||||
Corresponding Source for the Combined Work, excluding any source code
|
||||
for portions of the Combined Work that, considered in isolation, are
|
||||
based on the Application, and not on the Linked Version.
|
||||
|
||||
The "Corresponding Application Code" for a Combined Work means the
|
||||
object code and/or source code for the Application, including any data
|
||||
and utility programs needed for reproducing the Combined Work from the
|
||||
Application, but excluding the System Libraries of the Combined Work.
|
||||
|
||||
1. Exception to Section 3 of the GNU GPL.
|
||||
|
||||
You may convey a covered work under sections 3 and 4 of this License
|
||||
without being bound by section 3 of the GNU GPL.
|
||||
|
||||
2. Conveying Modified Versions.
|
||||
|
||||
If you modify a copy of the Library, and, in your modifications, a
|
||||
facility refers to a function or data to be supplied by an Application
|
||||
that uses the facility (other than as an argument passed when the
|
||||
facility is invoked), then you may convey a copy of the modified
|
||||
version:
|
||||
|
||||
a) under this License, provided that you make a good faith effort to
|
||||
ensure that, in the event an Application does not supply the
|
||||
function or data, the facility still operates, and performs
|
||||
whatever part of its purpose remains meaningful, or
|
||||
|
||||
b) under the GNU GPL, with none of the additional permissions of
|
||||
this License applicable to that copy.
|
||||
|
||||
3. Object Code Incorporating Material from Library Header Files.
|
||||
|
||||
The object code form of an Application may incorporate material from
|
||||
a header file that is part of the Library. You may convey such object
|
||||
code under terms of your choice, provided that, if the incorporated
|
||||
material is not limited to numerical parameters, data structure
|
||||
layouts and accessors, or small macros, inline functions and templates
|
||||
(ten or fewer lines in length), you do both of the following:
|
||||
|
||||
a) Give prominent notice with each copy of the object code that the
|
||||
Library is used in it and that the Library and its use are
|
||||
covered by this License.
|
||||
|
||||
b) Accompany the object code with a copy of the GNU GPL and this license
|
||||
document.
|
||||
|
||||
4. Combined Works.
|
||||
|
||||
You may convey a Combined Work under terms of your choice that,
|
||||
taken together, effectively do not restrict modification of the
|
||||
portions of the Library contained in the Combined Work and reverse
|
||||
engineering for debugging such modifications, if you also do each of
|
||||
the following:
|
||||
|
||||
a) Give prominent notice with each copy of the Combined Work that
|
||||
the Library is used in it and that the Library and its use are
|
||||
covered by this License.
|
||||
|
||||
b) Accompany the Combined Work with a copy of the GNU GPL and this license
|
||||
document.
|
||||
|
||||
c) For a Combined Work that displays copyright notices during
|
||||
execution, include the copyright notice for the Library among
|
||||
these notices, as well as a reference directing the user to the
|
||||
copies of the GNU GPL and this license document.
|
||||
|
||||
d) Do one of the following:
|
||||
|
||||
0) Convey the Minimal Corresponding Source under the terms of this
|
||||
License, and the Corresponding Application Code in a form
|
||||
suitable for, and under terms that permit, the user to
|
||||
recombine or relink the Application with a modified version of
|
||||
the Linked Version to produce a modified Combined Work, in the
|
||||
manner specified by section 6 of the GNU GPL for conveying
|
||||
Corresponding Source.
|
||||
|
||||
1) Use a suitable shared library mechanism for linking with the
|
||||
Library. A suitable mechanism is one that (a) uses at run time
|
||||
a copy of the Library already present on the user's computer
|
||||
system, and (b) will operate properly with a modified version
|
||||
of the Library that is interface-compatible with the Linked
|
||||
Version.
|
||||
|
||||
e) Provide Installation Information, but only if you would otherwise
|
||||
be required to provide such information under section 6 of the
|
||||
GNU GPL, and only to the extent that such information is
|
||||
necessary to install and execute a modified version of the
|
||||
Combined Work produced by recombining or relinking the
|
||||
Application with a modified version of the Linked Version. (If
|
||||
you use option 4d0, the Installation Information must accompany
|
||||
the Minimal Corresponding Source and Corresponding Application
|
||||
Code. If you use option 4d1, you must provide the Installation
|
||||
Information in the manner specified by section 6 of the GNU GPL
|
||||
for conveying Corresponding Source.)
|
||||
|
||||
5. Combined Libraries.
|
||||
|
||||
You may place library facilities that are a work based on the
|
||||
Library side by side in a single library together with other library
|
||||
facilities that are not Applications and are not covered by this
|
||||
License, and convey such a combined library under terms of your
|
||||
choice, if you do both of the following:
|
||||
|
||||
a) Accompany the combined library with a copy of the same work based
|
||||
on the Library, uncombined with any other library facilities,
|
||||
conveyed under the terms of this License.
|
||||
|
||||
b) Give prominent notice with the combined library that part of it
|
||||
is a work based on the Library, and explaining where to find the
|
||||
accompanying uncombined form of the same work.
|
||||
|
||||
6. Revised Versions of the GNU Lesser General Public License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions
|
||||
of the GNU Lesser General Public License from time to time. Such new
|
||||
versions will be similar in spirit to the present version, but may
|
||||
differ in detail to address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Library as you received it specifies that a certain numbered version
|
||||
of the GNU Lesser General Public License "or any later version"
|
||||
applies to it, you have the option of following the terms and
|
||||
conditions either of that published version or of any later version
|
||||
published by the Free Software Foundation. If the Library as you
|
||||
received it does not specify a version number of the GNU Lesser
|
||||
General Public License, you may choose any version of the GNU Lesser
|
||||
General Public License ever published by the Free Software Foundation.
|
||||
|
||||
If the Library as you received it specifies that a proxy can decide
|
||||
whether future versions of the GNU Lesser General Public License shall
|
||||
apply, that proxy's public statement of acceptance of any version is
|
||||
permanent authorization for you to choose that version for the
|
||||
Library.
|
||||
@@ -1 +0,0 @@
|
||||
Fixes #9999.
|
||||
@@ -1,42 +0,0 @@
|
||||
version: '{build}'
|
||||
os: Windows Server 2012
|
||||
|
||||
environment:
|
||||
appveyor_build_worker_cloud: gce
|
||||
|
||||
init:
|
||||
# Setup autocrlf -- by default, appveyor uses autocrlf input
|
||||
# ... This affects tests which expect resource files to have the systems's line separator.
|
||||
- git config --global core.autocrlf true
|
||||
|
||||
install:
|
||||
# Download maven
|
||||
- ps: |
|
||||
Add-Type -AssemblyName System.IO.Compression.FileSystem
|
||||
if (!(Test-Path -Path "C:\maven" )) {
|
||||
(new-object System.Net.WebClient).DownloadFile(
|
||||
'http://www.us.apache.org/dist/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.zip',
|
||||
'C:\maven-bin.zip'
|
||||
)
|
||||
[System.IO.Compression.ZipFile]::ExtractToDirectory("C:\maven-bin.zip", "C:\maven")
|
||||
}
|
||||
# Setup environment variables for Maven and Java
|
||||
- cmd: SET JAVA_HOME=C:\Program Files\Java\jdk10
|
||||
- cmd: SET M2_HOME=C:\maven\apache-maven-3.6.3
|
||||
- cmd: SET MAVEN_OPTS=-Xmx1g
|
||||
- cmd: SET JAVA_OPTS=-Xmx1g
|
||||
- cmd: SET PATH=C:\maven\apache-maven-3.6.3\bin;%JAVA_HOME%\bin;%PATH%
|
||||
# Output the git config re: autocrlf to verify the "current" setting
|
||||
- cmd: git config core.autocrlf
|
||||
|
||||
# Appveyor is used for testing only -- the build script is not required.
|
||||
build_script:
|
||||
- echo ignore this
|
||||
|
||||
test_script:
|
||||
- mvn -B clean install --batch-mode
|
||||
|
||||
# Use of the cache speeds up future tests, meaning that dependencies do not need to be re-downloaded on every run.
|
||||
cache:
|
||||
- C:\maven\
|
||||
- C:\Users\appveyor\.m2
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,90 +0,0 @@
|
||||
codecov:
|
||||
require_ci_to_pass: true
|
||||
|
||||
|
||||
coverage:
|
||||
|
||||
## Configure decimal places, rounding, and the colour ranges used:
|
||||
## https://docs.codecov.com/docs/coverage-configuration
|
||||
precision: 3
|
||||
round: down
|
||||
range: "70...90" # Colour range - 70% coverage (and below) is solid red, 90% coverage (and above) is solid green.
|
||||
|
||||
|
||||
## These statuses show at the bottom of the PR.
|
||||
## Split the coverage reporting into sub-projects.
|
||||
## https://docs.codecov.io/docs/commit-status
|
||||
## https://docs.codecov.io/docs/codecovyml-reference#coveragestatus
|
||||
status:
|
||||
|
||||
## Status configuration of the whole project
|
||||
project:
|
||||
|
||||
whole_project: ## Whole project (note no flags specified)
|
||||
target: auto ## Increase overall coverage on each pull request (compared to the previous base commit)
|
||||
threshold: 0.5% ## Flexibility in allowing a minor drop in coverage
|
||||
|
||||
javaparser-core: ## Just JavaParser Core
|
||||
target: auto ## Increase overall coverage on each pull request (compared to the previous base commit)
|
||||
threshold: 0.5% ## Flexibility in allowing a minor drop in coverage
|
||||
## TBC: Unclear if setting flags AND paths is redundant
|
||||
flags:
|
||||
- javaparser-core
|
||||
paths:
|
||||
- javaparser-core/src/main/java*
|
||||
- javaparser-core-testing/src/test/java*
|
||||
- javaparser-core-testing-bdd/src/test/java*
|
||||
|
||||
javaparser-symbol-solver: ## Just the Symbol Solver
|
||||
target: auto ## Increase overall coverage on each pull request (compared to the previous base commit)
|
||||
threshold: 0.5% ## Flexibility in allowing a minor drop in coverage
|
||||
## TBC: Unclear if setting flags AND paths is redundant
|
||||
flags:
|
||||
- javaparser-symbol-solver
|
||||
paths:
|
||||
- javaparser-symbol-solver-core/src/main/java*
|
||||
- javaparser-symbol-solver-testing/src/test/java*
|
||||
|
||||
## Status configuration of ONLY the changed lines
|
||||
patch:
|
||||
|
||||
|
||||
|
||||
## Configuration of the comments that get added to PRs
|
||||
comment:
|
||||
layout: "reach,diff,flags,files,footer"
|
||||
behavior: default
|
||||
require_changes: false
|
||||
### Do not comment on the PR until coverage reports for all builds has been received
|
||||
### Note: 54 = three OSs (mac, windows, ubuntu) x nine java levels (8,9,10,11,12,13,14,15,16) x two modules (jp-core, jss)
|
||||
after_n_builds: 54
|
||||
|
||||
|
||||
## Flags defined elsewhere MUST also be defined here (required for GitHub PR checks information)
|
||||
flags:
|
||||
javaparser-core:
|
||||
paths:
|
||||
- javaparser-core/src/main/java*
|
||||
- javaparser-core-testing/src/test/java*
|
||||
- javaparser-core-testing-bdd/src/test/java*
|
||||
carryforward: false
|
||||
javaparser-symbol-solver:
|
||||
paths:
|
||||
- javaparser-symbol-solver-core/src/main/java*
|
||||
- javaparser-symbol-solver-testing/src/test/java*
|
||||
carryforward: false
|
||||
|
||||
|
||||
# ## New section re: flags
|
||||
# ## No individual flags are added to YAML and flag names are automatically ingested from the Uploader
|
||||
# ## https://docs.codecov.com/docs/flags
|
||||
# flag_management:
|
||||
# default_rules:
|
||||
# carryforward: false
|
||||
|
||||
|
||||
ignore:
|
||||
- "/javaparser-core/src/main/java-templates/**" ## This source is ...
|
||||
# - "/javaparser-core/src/main/javacc-support/**" ## This source is generated by JavaCC
|
||||
- "/javaparser-symbol-solver-testing/src/test/test_sourcecode/**" ## This source is used as inputs to test cases
|
||||
|
||||
@@ -1,46 +0,0 @@
|
||||
<!DOCTYPE module PUBLIC
|
||||
"-//Puppy Crawl//DTD Check Configuration 1.3//EN"
|
||||
"http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
|
||||
<module name="Checker">
|
||||
|
||||
<!-- Based on documentation: https://github.com/javaparser/javaparser/wiki/Coding-Guidelines -->
|
||||
|
||||
<property name="fileExtensions" value="java"/>
|
||||
|
||||
<!-- Wrap lines at 120 characters -->
|
||||
<module name="LineLength">
|
||||
<property name="max" value="120"/>
|
||||
<property name="severity" value="warning" />
|
||||
</module>
|
||||
|
||||
<module name="TreeWalker">
|
||||
|
||||
<!-- Indent with four spaces -->
|
||||
<module name="Indentation">
|
||||
<property name="severity" value="warning" />
|
||||
</module>
|
||||
|
||||
<!-- Type and Method annotations go on a separate line -->
|
||||
<module name="AnnotationLocation">
|
||||
<property name="allowSamelineMultipleAnnotations" value="false"/>
|
||||
<property name="allowSamelineSingleParameterlessAnnotation" value="false"/>
|
||||
<property name="allowSamelineParameterizedAnnotation" value="false"/>
|
||||
<property name="severity" value="warning" />
|
||||
</module>
|
||||
|
||||
<!-- Import order -->
|
||||
<module name="CustomImportOrder">
|
||||
<property name="customImportOrderRules"
|
||||
value="THIRD_PARTY_PACKAGE###SPECIAL_IMPORTS###STANDARD_JAVA_PACKAGE###STATIC"/>
|
||||
<property name="specialImportsRegExp" value="^javax\."/>
|
||||
<property name="standardPackageRegExp" value="^java\."/>
|
||||
<property name="sortImportsInGroupAlphabetically" value="false"/>
|
||||
<property name="separateLineBetweenGroups" value="false"/>
|
||||
<property name="severity" value="warning" />
|
||||
</module>
|
||||
|
||||
<!-- Imports that are not used, should be removed -->
|
||||
<module name="UnusedImports"/>
|
||||
|
||||
</module>
|
||||
</module>
|
||||
@@ -1,295 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<profiles version="12">
|
||||
<profile kind="CodeFormatterProfile" name="JavaParser" version="12">
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_ellipsis" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_annotation_declaration" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_allocation_expression" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_at_in_annotation_type_declaration" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.comment.new_lines_at_block_boundaries" value="true"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_parameters" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_package" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_enum_constant" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.blank_lines_after_imports" value="1"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_while" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_annotation_type_member_declaration" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_throws" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.comment.format_javadoc_comments" value="true"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.indentation.size" value="4"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_postfix_operator" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_increments" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_arguments" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_inits" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_anonymous_type_declaration" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_for" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.disabling_tag" value="@formatter:off"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.continuation_indentation" value="2"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.alignment_for_enum_constants" value="0"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_imports" value="1"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.blank_lines_after_package" value="1"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_binary_operator" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_local_declarations" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant" value="16"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_parameterized_type_reference" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.comment.indent_root_tags" value="true"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.wrap_before_or_operator_multicatch" value="true"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.enabling_tag" value="@formatter:on"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_closing_brace_in_block" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_return" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_method_declaration" value="16"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_parameter" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.keep_then_statement_on_same_line" value="true"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_field" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_explicitconstructorcall_arguments" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_block" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_prefix_operator" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.blank_lines_between_type_declarations" value="1"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_brace_in_array_initializer" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_for" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_catch" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_arguments" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_method" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_switch" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_anonymous_type_declaration" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_parenthesized_expression" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.never_indent_line_comments_on_first_column" value="false"/>
|
||||
<setting id="org.eclipse.jdt.core.compiler.problem.enumIdentifier" value="error"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_and_in_type_parameter" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_inits" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.indent_statements_compare_to_block" value="true"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.brace_position_for_anonymous_type_declaration" value="end_of_line"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_question_in_wildcard" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_invocation_arguments" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_switch" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.comment.line_length" value="119"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.use_on_off_tags" value="false"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_brackets_in_array_allocation_expression" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_constant" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_invocation" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_assignment_operator" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_type_declaration" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_for" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.comment.preserve_white_space_between_code_and_line_comments" value="false"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_local_variable" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.brace_position_for_method_declaration" value="end_of_line"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_invocation" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.alignment_for_union_type_in_multicatch" value="16"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_colon_in_for" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.number_of_blank_lines_at_beginning_of_method_body" value="0"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_arguments" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.keep_else_statement_on_same_line" value="true"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.alignment_for_binary_expression" value="16"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_parameterized_type_reference" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_array_initializer" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_field_declarations" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_annotation" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call" value="16"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_annotation_declaration_header" value="true"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_superinterfaces" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_colon_in_default" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_question_in_conditional" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.brace_position_for_block" value="end_of_line"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.brace_position_for_constructor_declaration" value="end_of_line"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.brace_position_for_lambda_body" value="end_of_line"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.compact_else_if" value="true"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_parameters" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_catch" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_invocation" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.put_empty_statement_on_new_line" value="true"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.alignment_for_parameters_in_constructor_declaration" value="18"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_invocation_arguments" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation" value="16"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_constructor_declaration" value="16"/>
|
||||
<setting id="org.eclipse.jdt.core.compiler.problem.assertIdentifier" value="error"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_block_comment" value="true"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_try" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_new_line_at_end_of_file_if_missing" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_javadoc_comment" value="false"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_array_initializer" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_binary_operator" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_unary_operator" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.alignment_for_expressions_in_array_initializer" value="16"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.format_line_comment_starting_on_first_column" value="true"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.number_of_empty_lines_to_preserve" value="1"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_colon_in_case" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_ellipsis" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_try_resources" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_colon_in_assert" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_if" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_arguments" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_and_in_type_parameter" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_type_declaration" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_parenthesized_expression" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.comment.format_line_comments" value="true"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_colon_in_labeled_statement" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.align_type_members_on_columns" value="false"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.alignment_for_assignment" value="0"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_method_body" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_type_header" value="true"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_declaration" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_enum_constant" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_type_declaration" value="16"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_first_class_body_declaration" value="0"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.alignment_for_conditional_expression" value="80"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_new_line_before_closing_brace_in_array_initializer" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_parameters" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.format_guardian_clause_on_one_line" value="false"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_if" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_type" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_block" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.brace_position_for_enum_declaration" value="end_of_line"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.brace_position_for_block_in_case" value="end_of_line"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_constructor_declaration" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.comment.format_header" value="false"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression" value="16"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_invocation" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_while" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode" value="enabled"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_switch" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.alignment_for_method_declaration" value="0"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.join_wrapped_lines" value="false"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_constructor_declaration" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases" value="true"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_allocation_expression" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_synchronized" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.comment.new_lines_at_javadoc_boundaries" value="true"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.brace_position_for_annotation_type_declaration" value="end_of_line"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_colon_in_for" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.alignment_for_resources_in_try" value="80"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.use_tabs_only_for_leading_indentations" value="false"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.alignment_for_selector_in_method_invocation" value="16"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.never_indent_block_comments_on_first_column" value="false"/>
|
||||
<setting id="org.eclipse.jdt.core.compiler.source" value="1.8"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_synchronized" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_throws" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.tabulation.size" value="4"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_constant" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_allocation_expression" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_reference" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_colon_in_conditional" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.comment.format_source_code" value="true"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_array_initializer" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_try" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_try_resources" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_field" value="0"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.continuation_indentation_for_array_initializer" value="2"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_question_in_wildcard" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_method" value="1"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.alignment_for_superclass_in_type_declaration" value="16"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_enum_declaration" value="16"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_throw" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_colon_in_labeled_statement" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.compiler.codegen.targetPlatform" value="1.8"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.brace_position_for_switch" value="end_of_line"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_superinterfaces" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_parameters" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_type_annotation" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_brace_in_array_initializer" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_parenthesized_expression" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.comment.format_html" value="true"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation_type_declaration" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_parameters" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.alignment_for_compact_if" value="16"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.indent_empty_lines" value="false"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_parameterized_type_reference" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_unary_operator" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_enum_constant" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_annotation" value="0"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_declarations" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.keep_empty_array_initializer_on_one_line" value="false"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch" value="true"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_new_line_before_else_in_if_statement" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_assignment_operator" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_constructor_declaration" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_new_chunk" value="1"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_label" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_declaration_header" value="true"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_allocation_expression" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_constructor_declaration" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_colon_in_conditional" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_parameterized_type_reference" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_parameters" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_arguments" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_cast" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_colon_in_assert" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_member_type" value="1"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_new_line_before_while_in_do_statement" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_type_reference" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_parameterized_type_reference" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression" value="16"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_declaration" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.indent_breaks_compare_to_cases" value="true"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_declaration" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_if" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_semicolon" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_postfix_operator" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_try" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_arguments" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_cast" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.comment.format_block_comments" value="true"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_lambda_arrow" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_declaration" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.keep_imple_if_on_one_line" value="false"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_declaration" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.alignment_for_parameters_in_method_declaration" value="18"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_between_brackets_in_array_type_reference" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_parameters" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_for" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_throws" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_allocation_expression" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.indent_statements_compare_to_body" value="true"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.alignment_for_multiple_fields" value="16"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_constant_arguments" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_prefix_operator" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.brace_position_for_array_initializer" value="end_of_line"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.wrap_before_binary_operator" value="true"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_method_declaration" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_parameters" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_catch" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.compiler.compliance" value="1.8"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_reference" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_annotation" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_constant_arguments" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_braces_in_array_initializer" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_colon_in_case" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_local_declarations" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_annotation_type_declaration" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_reference" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_declaration" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.wrap_outer_expressions_when_nested" value="true"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_closing_paren_in_cast" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.brace_position_for_enum_constant" value="end_of_line"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.brace_position_for_type_declaration" value="end_of_line"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_package" value="0"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_for" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_synchronized" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_increments" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation_type_member_declaration" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_while" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_enum_constant" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_explicitconstructorcall_arguments" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_annotation" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_parameters" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_constant_header" value="true"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_lambda_arrow" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_constructor_declaration" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_throws" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.join_lines_in_comments" value="false"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_parameters" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_question_in_conditional" value="insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.comment.indent_parameter_description" value="true"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_new_line_before_finally_in_try_statement" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.tabulation.char" value="space"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_field_declarations" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.blank_lines_between_import_groups" value="1"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.lineSplit" value="120"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_annotation" value="do not insert"/>
|
||||
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_switch" value="insert"/>
|
||||
</profile>
|
||||
</profiles>
|
||||
@@ -1,38 +0,0 @@
|
||||
<code_scheme name="JavaParser">
|
||||
<option name="OTHER_INDENT_OPTIONS">
|
||||
<value>
|
||||
<option name="INDENT_SIZE" value="4" />
|
||||
<option name="CONTINUATION_INDENT_SIZE" value="8" />
|
||||
<option name="TAB_SIZE" value="4" />
|
||||
<option name="USE_TAB_CHARACTER" value="true" />
|
||||
<option name="SMART_TABS" value="true" />
|
||||
<option name="LABEL_INDENT_SIZE" value="0" />
|
||||
<option name="LABEL_INDENT_ABSOLUTE" value="false" />
|
||||
<option name="USE_RELATIVE_INDENTS" value="false" />
|
||||
</value>
|
||||
</option>
|
||||
<option name="JD_ALIGN_PARAM_COMMENTS" value="false" />
|
||||
<option name="JD_ALIGN_EXCEPTION_COMMENTS" value="false" />
|
||||
<option name="WRAP_COMMENTS" value="true" />
|
||||
<XML>
|
||||
<option name="XML_LEGACY_SETTINGS_IMPORTED" value="true" />
|
||||
</XML>
|
||||
<codeStyleSettings language="JAVA">
|
||||
<option name="RIGHT_MARGIN" value="120" />
|
||||
<indentOptions>
|
||||
<option name="SMART_TABS" value="true" />
|
||||
</indentOptions>
|
||||
</codeStyleSettings>
|
||||
<codeStyleSettings language="Scala">
|
||||
<indentOptions>
|
||||
<option name="USE_TAB_CHARACTER" value="true" />
|
||||
<option name="SMART_TABS" value="true" />
|
||||
</indentOptions>
|
||||
</codeStyleSettings>
|
||||
<codeStyleSettings language="XML">
|
||||
<indentOptions>
|
||||
<option name="USE_TAB_CHARACTER" value="true" />
|
||||
<option name="SMART_TABS" value="true" />
|
||||
</indentOptions>
|
||||
</codeStyleSettings>
|
||||
</code_scheme>
|
||||
@@ -1,35 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
|
||||
|
||||
<!-- THIS IS A TEMPLATE/SAMPLE FOR THE ~/.m2/settings.xml CONFIGURATION FILE, USED e.g. WHEN PERFORMING A RELEASE -->
|
||||
<!-- Values should be placed into environment variables (preferred), though you _can_ insert the values directly below. -->
|
||||
|
||||
<servers>
|
||||
<server>
|
||||
<!-- Credentials for Sonatype OSSRH (OSS Repository Hosting) -->
|
||||
<!-- These are the same credentials you use for https://oss.sonatype.org/ and their JIRA ticketing system. -->
|
||||
<!-- https://central.sonatype.org/pages/apache-maven.html -->
|
||||
<id>ossrh</id>
|
||||
<username>${env.MAVEN_OSSRH_USERNAME}</username>
|
||||
<password>${env.MAVEN_OSSRH_PASSWORD}</password>
|
||||
</server>
|
||||
</servers>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>ossrh</id>
|
||||
<activation>
|
||||
<activeByDefault>true</activeByDefault>
|
||||
</activation>
|
||||
<properties>
|
||||
<!-- You may need to adjust to the reflect the executable within your environment e.g. `gpg2` -->
|
||||
<gpg.executable>gpg</gpg.executable>
|
||||
<gpg.keyname>${env.MAVEN_GPG_KEYNAME}</gpg.keyname>
|
||||
<gpg.passphrase>${env.MAVEN_GPG_PASSPHRASE}</gpg.passphrase>
|
||||
</properties>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
</settings>
|
||||
@@ -1,29 +0,0 @@
|
||||
@startuml
|
||||
node core {
|
||||
[Java parser] <-- [AST]
|
||||
[Javadoc parser]
|
||||
[AST] <-- [lexical preserving printer]
|
||||
[AST] <-- [concrete syntax model]
|
||||
[concrete syntax model] <-- [lexical preserving printer]
|
||||
events <-- [lexical preserving printer]
|
||||
[AST] <-- [comments inserter]
|
||||
[AST] <-- [visitors]
|
||||
[AST] <-- [meta model]
|
||||
[AST] <-- [pretty printer]
|
||||
[visitors] <-- [pretty printer]
|
||||
[AST] - symbol_resolution
|
||||
[AST] - events
|
||||
[visitors] <-- [code generators]
|
||||
[AST] <-- [code generators]
|
||||
[meta model] <-- [code generators]
|
||||
[AST] <-- [JSON (de)serializer]
|
||||
[Java parser] <- [source root]
|
||||
}
|
||||
node symbol-solver {
|
||||
[AST] <- [model]
|
||||
symbol_resolution <- [model]
|
||||
[model] <-- [core]
|
||||
[model] <-- [logic]
|
||||
[logic] <-- [core]
|
||||
}
|
||||
@enduml
|
||||
@@ -1,132 +0,0 @@
|
||||
|
||||
<!--
|
||||
Note that edits to this readme should be done via `docs/readme.md`.
|
||||
Modifying this file directly within the root directory risks it being overwritten.
|
||||
-->
|
||||
|
||||
# JavaParser
|
||||
|
||||
[](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.github.javaparser%22%20AND%20a%3A%22javaparser-core%22)
|
||||
[](https://travis-ci.org/javaparser/javaparser)
|
||||
[](https://app.codecov.io/gh/javaparser/javaparser?branch=master)
|
||||
[](https://gitter.im/javaparser/javaparser?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||
[](LICENSE)
|
||||
[](https://doi.org/10.5281/zenodo.2667378)
|
||||
|
||||
|
||||
This project contains a set of libraries implementing a Java 1.0 - Java 15 Parser with advanced analysis functionalities. This includes preview features to Java 13, with Java 14 preview features work-in-progress.
|
||||
|
||||
Our main site is at [JavaParser.org](http://javaparser.org)
|
||||
|
||||
## Setup
|
||||
|
||||
The project binaries are available in Maven Central.
|
||||
|
||||
We strongly advise users to adopt Maven, Gradle or another build system for their projects.
|
||||
If you are not familiar with them we suggest taking a look at the maven quickstart projects
|
||||
([javaparser-maven-sample](https://github.com/javaparser/javaparser-maven-sample),
|
||||
[javasymbolsolver-maven-sample](https://github.com/javaparser/javasymbolsolver-maven-sample)).
|
||||
|
||||
Just add the following to your maven configuration or tailor to your own dependency management system.
|
||||
|
||||
[Please refer to the Migration Guide when upgrading from 2.5.1 to 3.0.0+](https://github.com/javaparser/javaparser/wiki/Migration-Guide)
|
||||
|
||||
**Maven**:
|
||||
|
||||
```xml
|
||||
<dependency>
|
||||
<groupId>com.github.javaparser</groupId>
|
||||
<artifactId>javaparser-symbol-solver-core</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
```
|
||||
|
||||
**Gradle**:
|
||||
|
||||
```
|
||||
implementation 'com.github.javaparser:javaparser-symbol-solver-core:${project.version}'
|
||||
```
|
||||
|
||||
Since Version 3.5.10, the JavaParser project includes the JavaSymbolSolver.
|
||||
While JavaParser generates an Abstract Syntax Tree, JavaSymbolSolver analyzes that AST and is able to find
|
||||
the relation between an element and its declaration (e.g. for a variable name it could be a parameter of a method, providing information about its type, position in the AST, ect).
|
||||
|
||||
Using the dependency above will add both JavaParser and JavaSymbolSolver to your project. If you only need the core functionality of parsing Java source code in order to traverse and manipulate the generated AST, you can reduce your projects boilerplate by only including JavaParser to your project:
|
||||
|
||||
**Maven**:
|
||||
|
||||
```xml
|
||||
<dependency>
|
||||
<groupId>com.github.javaparser</groupId>
|
||||
<artifactId>javaparser-core</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
```
|
||||
|
||||
**Gradle**:
|
||||
|
||||
```
|
||||
implementation 'com.github.javaparser:javaparser-core:${project.version}'
|
||||
```
|
||||
|
||||
Since version 3.6.17 the AST can be serialized to JSON.
|
||||
There is a separate module for this:
|
||||
|
||||
**Maven**:
|
||||
|
||||
```xml
|
||||
<dependency>
|
||||
<groupId>com.github.javaparser</groupId>
|
||||
<artifactId>javaparser-core-serialization</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
```
|
||||
|
||||
**Gradle**:
|
||||
|
||||
```
|
||||
implementation 'com.github.javaparser:javaparser-core-serialization:${project.version}'
|
||||
```
|
||||
|
||||
## How To Compile Sources
|
||||
|
||||
If you checked out the project's source code from GitHub, you can build the project with maven using:
|
||||
```
|
||||
mvnw clean install
|
||||
```
|
||||
|
||||
If you want to generate the packaged jar files from the source files, you run the following maven command:
|
||||
```
|
||||
mvnw package
|
||||
```
|
||||
|
||||
**NOTE** the jar files for the two modules can be found in:
|
||||
- `javaparser/javaparser-core/target/javaparser-core-\<version\>.jar`
|
||||
- `javaparser-symbol-solver-core/target/javaparser-symbol-solver-core-\<version\>.jar`
|
||||
|
||||
If you checkout the sources and want to view the project in an IDE, it is best to first generate some of the source files;
|
||||
otherwise you will get many compilation complaints in the IDE. (`mvnw clean install` already does this for you.)
|
||||
|
||||
```
|
||||
mvnw javacc:javacc
|
||||
```
|
||||
|
||||
If you modify the code of the AST nodes, specifically if you add or remove fields or node classes,
|
||||
the code generators will update a lot of code for you.
|
||||
The `run_metamodel_generator.sh` script will rebuild the metamodel,
|
||||
which is used by the code generators which are run by `run_core_generators.sh`
|
||||
Make sure that `javaparser-core` at least compiles before you run these.
|
||||
|
||||
**Note**: for Eclipse IDE follow the steps described in the wiki: https://github.com/javaparser/javaparser/wiki/Eclipse-Project-Setup-Guide
|
||||
|
||||
## More information
|
||||
|
||||
#### [JavaParser.org](https://javaparser.org) is the main information site.
|
||||
|
||||
## License
|
||||
|
||||
JavaParser is available either under the terms of the LGPL License or the Apache License. You as the user are entitled to choose the terms under which adopt JavaParser.
|
||||
|
||||
For details about the LGPL License please refer to [LICENSE.LGPL](ttps://github.com/javaparser/javaparser/blob/master/LICENSE.LGPL).
|
||||
|
||||
For details about the Apache License please refer to [LICENSE.APACHE](ttps://github.com/javaparser/javaparser/blob/master/LICENSE.APACHE).
|
||||
Binary file not shown.
@@ -1,55 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<parent>
|
||||
<artifactId>javaparser-parent</artifactId>
|
||||
<groupId>com.github.javaparser</groupId>
|
||||
<version>3.27.0</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>javaparser-core-generators</artifactId>
|
||||
<description>A code generator framework, and the generators for javaparser-core</description>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.github.javaparser</groupId>
|
||||
<artifactId>javaparser-core</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.junit.jupiter</groupId>
|
||||
<artifactId>junit-jupiter-engine</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>run-generators</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>exec-maven-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>generate-javaparser-core</id>
|
||||
<phase>test</phase>
|
||||
<goals>
|
||||
<goal>java</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
<configuration>
|
||||
<classpathScope>test</classpathScope>
|
||||
<mainClass>com.github.javaparser.generator.core.CoreGenerator</mainClass>
|
||||
<arguments>
|
||||
<argument>${project.basedir}</argument>
|
||||
</arguments>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
</project>
|
||||
@@ -1,44 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2007-2010 Júlio Vilmar Gesser.
|
||||
* Copyright (C) 2011, 2013-2024 The JavaParser Team.
|
||||
*
|
||||
* This file is part of JavaParser.
|
||||
*
|
||||
* JavaParser can be used either under the terms of
|
||||
* a) the GNU Lesser General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
* b) the terms of the Apache License
|
||||
*
|
||||
* You should have received a copy of both licenses in LICENCE.LGPL and
|
||||
* LICENCE.APACHE. Please refer to those files for details.
|
||||
*
|
||||
* JavaParser is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Lesser General Public License for more details.
|
||||
*/
|
||||
|
||||
package com.github.javaparser.generator;
|
||||
|
||||
import com.github.javaparser.ParseResult;
|
||||
import com.github.javaparser.ast.CompilationUnit;
|
||||
import com.github.javaparser.utils.SourceRoot;
|
||||
import java.util.List;
|
||||
|
||||
public abstract class CompilationUnitGenerator extends Generator {
|
||||
|
||||
protected CompilationUnitGenerator(SourceRoot sourceRoot) {
|
||||
super(sourceRoot);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void generate() throws Exception {
|
||||
List<ParseResult<CompilationUnit>> parsedCus = sourceRoot.tryToParse();
|
||||
for (ParseResult<CompilationUnit> cu : parsedCus) {
|
||||
cu.ifSuccessful(this::generateCompilationUnit);
|
||||
}
|
||||
}
|
||||
|
||||
protected abstract void generateCompilationUnit(CompilationUnit compilationUnit);
|
||||
}
|
||||
@@ -1,131 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2007-2010 Júlio Vilmar Gesser.
|
||||
* Copyright (C) 2011, 2013-2024 The JavaParser Team.
|
||||
*
|
||||
* This file is part of JavaParser.
|
||||
*
|
||||
* JavaParser can be used either under the terms of
|
||||
* a) the GNU Lesser General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
* b) the terms of the Apache License
|
||||
*
|
||||
* You should have received a copy of both licenses in LICENCE.LGPL and
|
||||
* LICENCE.APACHE. Please refer to those files for details.
|
||||
*
|
||||
* JavaParser is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Lesser General Public License for more details.
|
||||
*/
|
||||
|
||||
package com.github.javaparser.generator;
|
||||
|
||||
import static com.github.javaparser.ast.NodeList.toNodeList;
|
||||
import static com.github.javaparser.utils.CodeGenerationUtils.f;
|
||||
|
||||
import com.github.javaparser.ast.Generated;
|
||||
import com.github.javaparser.ast.Node;
|
||||
import com.github.javaparser.ast.body.CallableDeclaration;
|
||||
import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration;
|
||||
import com.github.javaparser.ast.body.MethodDeclaration;
|
||||
import com.github.javaparser.ast.expr.Expression;
|
||||
import com.github.javaparser.ast.expr.StringLiteralExpr;
|
||||
import com.github.javaparser.ast.nodeTypes.NodeWithAnnotations;
|
||||
import com.github.javaparser.utils.SourceRoot;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* A general pattern that the generators in this module will follow.
|
||||
*/
|
||||
public abstract class Generator {
|
||||
protected final SourceRoot sourceRoot;
|
||||
|
||||
protected Generator(SourceRoot sourceRoot) {
|
||||
this.sourceRoot = sourceRoot;
|
||||
}
|
||||
|
||||
public abstract void generate() throws Exception;
|
||||
|
||||
protected <T extends Node & NodeWithAnnotations<?>> void annotateGenerated(T node) {
|
||||
annotate(node, Generated.class, new StringLiteralExpr(getClass().getName()));
|
||||
}
|
||||
|
||||
protected <T extends Node & NodeWithAnnotations<?>> void annotateSuppressWarnings(T node) {
|
||||
annotate(node, SuppressWarnings.class, new StringLiteralExpr("unchecked"));
|
||||
}
|
||||
|
||||
protected void annotateOverridden(MethodDeclaration method) {
|
||||
annotate(method, Override.class, null);
|
||||
}
|
||||
|
||||
private <T extends Node & NodeWithAnnotations<?>> void annotate(T node, Class<?> annotation, Expression content) {
|
||||
node.setAnnotations(node.getAnnotations().stream()
|
||||
.filter(a -> !a.getNameAsString().equals(annotation.getSimpleName()))
|
||||
.collect(toNodeList()));
|
||||
|
||||
if (content != null) {
|
||||
node.addSingleMemberAnnotation(annotation.getSimpleName(), content);
|
||||
} else {
|
||||
node.addMarkerAnnotation(annotation.getSimpleName());
|
||||
}
|
||||
node.tryAddImportToParentCompilationUnit(annotation);
|
||||
}
|
||||
|
||||
/**
|
||||
* Utility method that looks for a method or constructor with an identical signature as "callable" and replaces it
|
||||
* with callable. If not found, adds callable. When the new callable has no javadoc, any old javadoc will be kept.
|
||||
*/
|
||||
protected void addOrReplaceWhenSameSignature(
|
||||
ClassOrInterfaceDeclaration containingClassOrInterface, CallableDeclaration<?> callable) {
|
||||
addMethod(containingClassOrInterface, callable, () -> containingClassOrInterface.addMember(callable));
|
||||
}
|
||||
|
||||
/**
|
||||
* Utility method that looks for a method or constructor with an identical signature as "callable" and replaces it
|
||||
* with callable. If not found, fails. When the new callable has no javadoc, any old javadoc will be kept. The
|
||||
* method or constructor is annotated with the generator class.
|
||||
*/
|
||||
protected void replaceWhenSameSignature(
|
||||
ClassOrInterfaceDeclaration containingClassOrInterface, CallableDeclaration<?> callable) {
|
||||
addMethod(containingClassOrInterface, callable, () -> {
|
||||
throw new AssertionError(f(
|
||||
"Wanted to regenerate a method with signature %s in %s, but it wasn't there.",
|
||||
callable.getSignature(), containingClassOrInterface.getNameAsString()));
|
||||
});
|
||||
}
|
||||
|
||||
private void addMethod(
|
||||
ClassOrInterfaceDeclaration containingClassOrInterface,
|
||||
CallableDeclaration<?> callable,
|
||||
Runnable onNoExistingMethod) {
|
||||
List<CallableDeclaration<?>> existingCallables =
|
||||
containingClassOrInterface.getCallablesWithSignature(callable.getSignature());
|
||||
if (existingCallables.isEmpty()) {
|
||||
onNoExistingMethod.run();
|
||||
return;
|
||||
}
|
||||
if (existingCallables.size() > 1) {
|
||||
throw new AssertionError(f(
|
||||
"Wanted to regenerate a method with signature %s in %s, but found more than one.",
|
||||
callable.getSignature(), containingClassOrInterface.getNameAsString()));
|
||||
}
|
||||
final CallableDeclaration<?> existingCallable = existingCallables.get(0);
|
||||
callable.setJavadocComment(callable.getJavadocComment()
|
||||
.orElseGet(() -> existingCallable.getJavadocComment().orElse(null)));
|
||||
annotateGenerated(callable);
|
||||
containingClassOrInterface.getMembers().replace(existingCallable, callable);
|
||||
}
|
||||
|
||||
/**
|
||||
* Removes all methods from containingClassOrInterface that have the same signature as callable. This is not used by
|
||||
* any code, but it is useful when changing a generator and you need to get rid of a set of outdated methods.
|
||||
*/
|
||||
protected void removeMethodWithSameSignature(
|
||||
ClassOrInterfaceDeclaration containingClassOrInterface, CallableDeclaration<?> callable) {
|
||||
for (CallableDeclaration<?> existingCallable :
|
||||
containingClassOrInterface.getCallablesWithSignature(callable.getSignature())) {
|
||||
containingClassOrInterface.remove(existingCallable);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,85 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2007-2010 Júlio Vilmar Gesser.
|
||||
* Copyright (C) 2011, 2013-2024 The JavaParser Team.
|
||||
*
|
||||
* This file is part of JavaParser.
|
||||
*
|
||||
* JavaParser can be used either under the terms of
|
||||
* a) the GNU Lesser General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
* b) the terms of the Apache License
|
||||
*
|
||||
* You should have received a copy of both licenses in LICENCE.LGPL and
|
||||
* LICENCE.APACHE. Please refer to those files for details.
|
||||
*
|
||||
* JavaParser is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Lesser General Public License for more details.
|
||||
*/
|
||||
|
||||
package com.github.javaparser.generator;
|
||||
|
||||
import com.github.javaparser.ast.CompilationUnit;
|
||||
import com.github.javaparser.ast.Node;
|
||||
import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration;
|
||||
import com.github.javaparser.ast.body.MethodDeclaration;
|
||||
import com.github.javaparser.metamodel.BaseNodeMetaModel;
|
||||
import com.github.javaparser.metamodel.JavaParserMetaModel;
|
||||
import com.github.javaparser.utils.Log;
|
||||
import com.github.javaparser.utils.Pair;
|
||||
import com.github.javaparser.utils.SourceRoot;
|
||||
import java.util.Arrays;
|
||||
|
||||
/**
|
||||
* Makes it easier to generate code in the core AST nodes. The generateNode method will get every node type passed to
|
||||
* it, ready for modification.
|
||||
*/
|
||||
public abstract class NodeGenerator extends Generator {
|
||||
protected NodeGenerator(SourceRoot sourceRoot) {
|
||||
super(sourceRoot);
|
||||
}
|
||||
|
||||
public final void generate() throws Exception {
|
||||
Log.info("Running %s", () -> getClass().getSimpleName());
|
||||
for (BaseNodeMetaModel nodeMetaModel : JavaParserMetaModel.getNodeMetaModels()) {
|
||||
Pair<CompilationUnit, ClassOrInterfaceDeclaration> result = parseNode(nodeMetaModel);
|
||||
generateNode(nodeMetaModel, result.a, result.b);
|
||||
}
|
||||
after();
|
||||
}
|
||||
|
||||
protected Pair<CompilationUnit, ClassOrInterfaceDeclaration> parseNode(BaseNodeMetaModel nodeMetaModel) {
|
||||
CompilationUnit nodeCu =
|
||||
sourceRoot.parse(nodeMetaModel.getPackageName(), nodeMetaModel.getTypeName() + ".java");
|
||||
ClassOrInterfaceDeclaration nodeCoid = nodeCu.getClassByName(nodeMetaModel.getTypeName())
|
||||
.orElseThrow(() -> new AssertionError("Can't find class"));
|
||||
return new Pair<>(nodeCu, nodeCoid);
|
||||
}
|
||||
|
||||
/**
|
||||
* Annotate a method with the {@link Override} annotation, if it overrides other method.
|
||||
*
|
||||
* @param nodeMetaModel The current meta model.
|
||||
* @param methodDeclaration The method declaration.
|
||||
*/
|
||||
protected void annotateWhenOverridden(BaseNodeMetaModel nodeMetaModel, MethodDeclaration methodDeclaration) {
|
||||
Class<? extends Node> type = nodeMetaModel.getType();
|
||||
Class<?> superClass = type.getSuperclass();
|
||||
|
||||
boolean isOverriding = Arrays.stream(superClass.getMethods())
|
||||
.filter(m -> m.getName().equals(methodDeclaration.getNameAsString()))
|
||||
.anyMatch(m -> m.getParameters().length
|
||||
== methodDeclaration.getParameters().size());
|
||||
if (isOverriding) {
|
||||
annotateOverridden(methodDeclaration);
|
||||
}
|
||||
}
|
||||
|
||||
protected void after() throws Exception {}
|
||||
|
||||
protected abstract void generateNode(
|
||||
BaseNodeMetaModel nodeMetaModel, CompilationUnit nodeCu, ClassOrInterfaceDeclaration nodeCoid)
|
||||
throws Exception;
|
||||
}
|
||||
@@ -1,112 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2007-2010 Júlio Vilmar Gesser.
|
||||
* Copyright (C) 2011, 2013-2024 The JavaParser Team.
|
||||
*
|
||||
* This file is part of JavaParser.
|
||||
*
|
||||
* JavaParser can be used either under the terms of
|
||||
* a) the GNU Lesser General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
* b) the terms of the Apache License
|
||||
*
|
||||
* You should have received a copy of both licenses in LICENCE.LGPL and
|
||||
* LICENCE.APACHE. Please refer to those files for details.
|
||||
*
|
||||
* JavaParser is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Lesser General Public License for more details.
|
||||
*/
|
||||
|
||||
package com.github.javaparser.generator;
|
||||
|
||||
import static com.github.javaparser.ast.Modifier.Keyword.PUBLIC;
|
||||
|
||||
import com.github.javaparser.ast.CompilationUnit;
|
||||
import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration;
|
||||
import com.github.javaparser.ast.body.MethodDeclaration;
|
||||
import com.github.javaparser.ast.expr.MarkerAnnotationExpr;
|
||||
import com.github.javaparser.ast.expr.Name;
|
||||
import com.github.javaparser.metamodel.BaseNodeMetaModel;
|
||||
import com.github.javaparser.metamodel.JavaParserMetaModel;
|
||||
import com.github.javaparser.utils.Log;
|
||||
import com.github.javaparser.utils.SourceRoot;
|
||||
import java.util.Optional;
|
||||
|
||||
/**
|
||||
* Makes it easier to generate visitor classes.
|
||||
* It will create missing visit methods on the fly,
|
||||
* and will ask you to fill in the bodies of the visit methods.
|
||||
*/
|
||||
public abstract class VisitorGenerator extends Generator {
|
||||
private final String pkg;
|
||||
private final String visitorClassName;
|
||||
private final String returnType;
|
||||
private final String argumentType;
|
||||
private final boolean createMissingVisitMethods;
|
||||
|
||||
protected VisitorGenerator(
|
||||
SourceRoot sourceRoot,
|
||||
String pkg,
|
||||
String visitorClassName,
|
||||
String returnType,
|
||||
String argumentType,
|
||||
boolean createMissingVisitMethods) {
|
||||
super(sourceRoot);
|
||||
this.pkg = pkg;
|
||||
this.visitorClassName = visitorClassName;
|
||||
this.returnType = returnType;
|
||||
this.argumentType = argumentType;
|
||||
this.createMissingVisitMethods = createMissingVisitMethods;
|
||||
}
|
||||
|
||||
public final void generate() throws Exception {
|
||||
Log.info("Running %s", () -> getClass().getSimpleName());
|
||||
|
||||
final CompilationUnit compilationUnit = sourceRoot
|
||||
.tryToParse(pkg, visitorClassName + ".java")
|
||||
.getResult()
|
||||
.get();
|
||||
|
||||
Optional<ClassOrInterfaceDeclaration> visitorClassOptional = compilationUnit.getClassByName(visitorClassName);
|
||||
if (!visitorClassOptional.isPresent()) {
|
||||
visitorClassOptional = compilationUnit.getInterfaceByName(visitorClassName);
|
||||
}
|
||||
final ClassOrInterfaceDeclaration visitorClass = visitorClassOptional.get();
|
||||
|
||||
JavaParserMetaModel.getNodeMetaModels().stream()
|
||||
.filter((baseNodeMetaModel) -> !baseNodeMetaModel.isAbstract())
|
||||
.forEach(node -> generateVisitMethodForNode(node, visitorClass, compilationUnit));
|
||||
after();
|
||||
}
|
||||
|
||||
protected void after() throws Exception {}
|
||||
|
||||
private void generateVisitMethodForNode(
|
||||
BaseNodeMetaModel node, ClassOrInterfaceDeclaration visitorClass, CompilationUnit compilationUnit) {
|
||||
final Optional<MethodDeclaration> existingVisitMethod = visitorClass.getMethods().stream()
|
||||
.filter(m -> "visit".equals(m.getNameAsString()))
|
||||
.filter(m -> m.getParameter(0).getType().toString().equals(node.getTypeName()))
|
||||
.findFirst();
|
||||
|
||||
if (existingVisitMethod.isPresent()) {
|
||||
generateVisitMethodBody(node, existingVisitMethod.get(), compilationUnit);
|
||||
} else if (createMissingVisitMethods) {
|
||||
MethodDeclaration newVisitMethod = visitorClass
|
||||
.addMethod("visit")
|
||||
.addParameter(node.getTypeNameGenerified(), "n")
|
||||
.addParameter(argumentType, "arg")
|
||||
.setType(returnType);
|
||||
if (!visitorClass.isInterface()) {
|
||||
newVisitMethod
|
||||
.addAnnotation(new MarkerAnnotationExpr(new Name("Override")))
|
||||
.addModifier(PUBLIC);
|
||||
}
|
||||
generateVisitMethodBody(node, newVisitMethod, compilationUnit);
|
||||
}
|
||||
}
|
||||
|
||||
protected abstract void generateVisitMethodBody(
|
||||
BaseNodeMetaModel node, MethodDeclaration visitMethod, CompilationUnit compilationUnit);
|
||||
}
|
||||
@@ -1,103 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2007-2010 Júlio Vilmar Gesser.
|
||||
* Copyright (C) 2011, 2013-2024 The JavaParser Team.
|
||||
*
|
||||
* This file is part of JavaParser.
|
||||
*
|
||||
* JavaParser can be used either under the terms of
|
||||
* a) the GNU Lesser General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
* b) the terms of the Apache License
|
||||
*
|
||||
* You should have received a copy of both licenses in LICENCE.LGPL and
|
||||
* LICENCE.APACHE. Please refer to those files for details.
|
||||
*
|
||||
* JavaParser is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Lesser General Public License for more details.
|
||||
*/
|
||||
|
||||
package com.github.javaparser.generator.core;
|
||||
|
||||
import static com.github.javaparser.ParserConfiguration.LanguageLevel.RAW;
|
||||
|
||||
import com.github.javaparser.ParserConfiguration;
|
||||
import com.github.javaparser.StaticJavaParser;
|
||||
import com.github.javaparser.generator.core.node.*;
|
||||
import com.github.javaparser.generator.core.other.BndGenerator;
|
||||
import com.github.javaparser.generator.core.other.TokenKindGenerator;
|
||||
import com.github.javaparser.generator.core.quality.NotNullGenerator;
|
||||
import com.github.javaparser.generator.core.visitor.*;
|
||||
import com.github.javaparser.utils.Log;
|
||||
import com.github.javaparser.utils.SourceRoot;
|
||||
import java.nio.file.Path;
|
||||
import java.nio.file.Paths;
|
||||
|
||||
/**
|
||||
* Generates all generated visitors in the javaparser-core module.
|
||||
* Suggested usage is by running the run_core_generators.sh script.
|
||||
* You may want to run_metamodel_generator.sh before that.
|
||||
*/
|
||||
public class CoreGenerator {
|
||||
private static final ParserConfiguration parserConfiguration = new ParserConfiguration().setLanguageLevel(RAW)
|
||||
// .setStoreTokens(false)
|
||||
// .setAttributeComments(false)
|
||||
// .setLexicalPreservationEnabled(true)
|
||||
;
|
||||
|
||||
public static void main(String[] args) throws Exception {
|
||||
if (args.length != 1) {
|
||||
throw new RuntimeException("Need 1 parameter: the JavaParser source checkout root directory.");
|
||||
}
|
||||
Log.setAdapter(new Log.StandardOutStandardErrorAdapter());
|
||||
final Path root = Paths.get(args[0], "..", "javaparser-core", "src", "main", "java");
|
||||
final SourceRoot sourceRoot = new SourceRoot(root, parserConfiguration)
|
||||
// .setPrinter(LexicalPreservingPrinter::print)
|
||||
;
|
||||
StaticJavaParser.setConfiguration(parserConfiguration);
|
||||
|
||||
final Path generatedJavaCcRoot =
|
||||
Paths.get(args[0], "..", "javaparser-core", "target", "generated-sources", "javacc");
|
||||
final SourceRoot generatedJavaCcSourceRoot = new SourceRoot(generatedJavaCcRoot, parserConfiguration)
|
||||
// .setPrinter(LexicalPreservingPrinter::print)
|
||||
;
|
||||
|
||||
new CoreGenerator().run(sourceRoot, generatedJavaCcSourceRoot);
|
||||
|
||||
sourceRoot.saveAll();
|
||||
}
|
||||
|
||||
private void run(SourceRoot sourceRoot, SourceRoot generatedJavaCcSourceRoot) throws Exception {
|
||||
new TypeCastingGenerator(sourceRoot).generate();
|
||||
new GenericListVisitorAdapterGenerator(sourceRoot).generate();
|
||||
new GenericVisitorAdapterGenerator(sourceRoot).generate();
|
||||
new GenericVisitorWithDefaultsGenerator(sourceRoot).generate();
|
||||
new EqualsVisitorGenerator(sourceRoot).generate();
|
||||
new ObjectIdentityEqualsVisitorGenerator(sourceRoot).generate();
|
||||
new NoCommentEqualsVisitorGenerator(sourceRoot).generate();
|
||||
new VoidVisitorAdapterGenerator(sourceRoot).generate();
|
||||
new VoidVisitorGenerator(sourceRoot).generate();
|
||||
new VoidVisitorWithDefaultsGenerator(sourceRoot).generate();
|
||||
new GenericVisitorGenerator(sourceRoot).generate();
|
||||
new HashCodeVisitorGenerator(sourceRoot).generate();
|
||||
new ObjectIdentityHashCodeVisitorGenerator(sourceRoot).generate();
|
||||
new NoCommentHashCodeVisitorGenerator(sourceRoot).generate();
|
||||
new CloneVisitorGenerator(sourceRoot).generate();
|
||||
new ModifierVisitorGenerator(sourceRoot).generate();
|
||||
|
||||
new PropertyGenerator(sourceRoot).generate();
|
||||
new RemoveMethodGenerator(sourceRoot).generate();
|
||||
new ReplaceMethodGenerator(sourceRoot).generate();
|
||||
new CloneGenerator(sourceRoot).generate();
|
||||
new GetMetaModelGenerator(sourceRoot).generate();
|
||||
new MainConstructorGenerator(sourceRoot).generate();
|
||||
new NodeModifierGenerator(sourceRoot).generate();
|
||||
new AcceptGenerator(sourceRoot).generate();
|
||||
new TokenKindGenerator(sourceRoot, generatedJavaCcSourceRoot).generate();
|
||||
new BndGenerator(sourceRoot).generate();
|
||||
|
||||
new NotNullGenerator(sourceRoot).generate();
|
||||
}
|
||||
}
|
||||
@@ -1,60 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2007-2010 Júlio Vilmar Gesser.
|
||||
* Copyright (C) 2011, 2013-2024 The JavaParser Team.
|
||||
*
|
||||
* This file is part of JavaParser.
|
||||
*
|
||||
* JavaParser can be used either under the terms of
|
||||
* a) the GNU Lesser General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
* b) the terms of the Apache License
|
||||
*
|
||||
* You should have received a copy of both licenses in LICENCE.LGPL and
|
||||
* LICENCE.APACHE. Please refer to those files for details.
|
||||
*
|
||||
* JavaParser is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Lesser General Public License for more details.
|
||||
*/
|
||||
|
||||
package com.github.javaparser.generator.core.node;
|
||||
|
||||
import static com.github.javaparser.StaticJavaParser.parseBodyDeclaration;
|
||||
|
||||
import com.github.javaparser.ast.CompilationUnit;
|
||||
import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration;
|
||||
import com.github.javaparser.ast.body.MethodDeclaration;
|
||||
import com.github.javaparser.ast.visitor.GenericVisitor;
|
||||
import com.github.javaparser.ast.visitor.VoidVisitor;
|
||||
import com.github.javaparser.generator.NodeGenerator;
|
||||
import com.github.javaparser.metamodel.BaseNodeMetaModel;
|
||||
import com.github.javaparser.utils.SourceRoot;
|
||||
|
||||
public class AcceptGenerator extends NodeGenerator {
|
||||
private final MethodDeclaration genericAccept;
|
||||
private final MethodDeclaration voidAccept;
|
||||
|
||||
public AcceptGenerator(SourceRoot sourceRoot) {
|
||||
super(sourceRoot);
|
||||
genericAccept = parseBodyDeclaration(
|
||||
"@Override public <R, A> R accept(final GenericVisitor<R, A> v, final A arg) { return v.visit(this, arg); }")
|
||||
.asMethodDeclaration();
|
||||
voidAccept = parseBodyDeclaration(
|
||||
"@Override public <A> void accept(final VoidVisitor<A> v, final A arg) { v.visit(this, arg); }")
|
||||
.asMethodDeclaration();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void generateNode(
|
||||
BaseNodeMetaModel nodeMetaModel, CompilationUnit nodeCu, ClassOrInterfaceDeclaration nodeCoid) {
|
||||
if (nodeMetaModel.isAbstract()) {
|
||||
return;
|
||||
}
|
||||
nodeCu.addImport(GenericVisitor.class);
|
||||
nodeCu.addImport(VoidVisitor.class);
|
||||
addOrReplaceWhenSameSignature(nodeCoid, genericAccept);
|
||||
addOrReplaceWhenSameSignature(nodeCoid, voidAccept);
|
||||
}
|
||||
}
|
||||
@@ -1,49 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2007-2010 Júlio Vilmar Gesser.
|
||||
* Copyright (C) 2011, 2013-2024 The JavaParser Team.
|
||||
*
|
||||
* This file is part of JavaParser.
|
||||
*
|
||||
* JavaParser can be used either under the terms of
|
||||
* a) the GNU Lesser General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
* b) the terms of the Apache License
|
||||
*
|
||||
* You should have received a copy of both licenses in LICENCE.LGPL and
|
||||
* LICENCE.APACHE. Please refer to those files for details.
|
||||
*
|
||||
* JavaParser is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Lesser General Public License for more details.
|
||||
*/
|
||||
|
||||
package com.github.javaparser.generator.core.node;
|
||||
|
||||
import static com.github.javaparser.StaticJavaParser.parseBodyDeclaration;
|
||||
import static com.github.javaparser.utils.CodeGenerationUtils.f;
|
||||
|
||||
import com.github.javaparser.ast.CompilationUnit;
|
||||
import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration;
|
||||
import com.github.javaparser.ast.body.MethodDeclaration;
|
||||
import com.github.javaparser.ast.visitor.CloneVisitor;
|
||||
import com.github.javaparser.generator.NodeGenerator;
|
||||
import com.github.javaparser.metamodel.BaseNodeMetaModel;
|
||||
import com.github.javaparser.utils.SourceRoot;
|
||||
|
||||
public class CloneGenerator extends NodeGenerator {
|
||||
public CloneGenerator(SourceRoot sourceRoot) {
|
||||
super(sourceRoot);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void generateNode(
|
||||
BaseNodeMetaModel nodeMetaModel, CompilationUnit nodeCu, ClassOrInterfaceDeclaration nodeCoid) {
|
||||
nodeCu.addImport(CloneVisitor.class);
|
||||
MethodDeclaration cloneMethod = (MethodDeclaration) parseBodyDeclaration(f(
|
||||
"@Override public %s clone() { return (%s) accept(new CloneVisitor(), null); }",
|
||||
nodeMetaModel.getTypeNameGenerified(), nodeMetaModel.getTypeNameGenerified()));
|
||||
addOrReplaceWhenSameSignature(nodeCoid, cloneMethod);
|
||||
}
|
||||
}
|
||||
@@ -1,53 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2007-2010 Júlio Vilmar Gesser.
|
||||
* Copyright (C) 2011, 2013-2024 The JavaParser Team.
|
||||
*
|
||||
* This file is part of JavaParser.
|
||||
*
|
||||
* JavaParser can be used either under the terms of
|
||||
* a) the GNU Lesser General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
* b) the terms of the Apache License
|
||||
*
|
||||
* You should have received a copy of both licenses in LICENCE.LGPL and
|
||||
* LICENCE.APACHE. Please refer to those files for details.
|
||||
*
|
||||
* JavaParser is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Lesser General Public License for more details.
|
||||
*/
|
||||
|
||||
package com.github.javaparser.generator.core.node;
|
||||
|
||||
import static com.github.javaparser.StaticJavaParser.parseBodyDeclaration;
|
||||
import static com.github.javaparser.utils.CodeGenerationUtils.f;
|
||||
|
||||
import com.github.javaparser.ast.CompilationUnit;
|
||||
import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration;
|
||||
import com.github.javaparser.ast.body.MethodDeclaration;
|
||||
import com.github.javaparser.generator.NodeGenerator;
|
||||
import com.github.javaparser.metamodel.BaseNodeMetaModel;
|
||||
import com.github.javaparser.metamodel.JavaParserMetaModel;
|
||||
import com.github.javaparser.utils.SourceRoot;
|
||||
|
||||
public class GetMetaModelGenerator extends NodeGenerator {
|
||||
public GetMetaModelGenerator(SourceRoot sourceRoot) {
|
||||
super(sourceRoot);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void generateNode(
|
||||
BaseNodeMetaModel nodeMetaModel, CompilationUnit nodeCu, ClassOrInterfaceDeclaration nodeCoid) {
|
||||
final MethodDeclaration getMetaModelMethod = (MethodDeclaration) parseBodyDeclaration(f(
|
||||
"%s public %s getMetaModel() { return JavaParserMetaModel.%s; }",
|
||||
nodeMetaModel.isRootNode() ? "" : "@Override",
|
||||
nodeMetaModel.getClass().getSimpleName(),
|
||||
nodeMetaModel.getMetaModelFieldName()));
|
||||
|
||||
addOrReplaceWhenSameSignature(nodeCoid, getMetaModelMethod);
|
||||
nodeCu.addImport(nodeMetaModel.getClass().getName());
|
||||
nodeCu.addImport(JavaParserMetaModel.class);
|
||||
}
|
||||
}
|
||||
@@ -1,76 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2007-2010 Júlio Vilmar Gesser.
|
||||
* Copyright (C) 2011, 2013-2024 The JavaParser Team.
|
||||
*
|
||||
* This file is part of JavaParser.
|
||||
*
|
||||
* JavaParser can be used either under the terms of
|
||||
* a) the GNU Lesser General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
* b) the terms of the Apache License
|
||||
*
|
||||
* You should have received a copy of both licenses in LICENCE.LGPL and
|
||||
* LICENCE.APACHE. Please refer to those files for details.
|
||||
*
|
||||
* JavaParser is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Lesser General Public License for more details.
|
||||
*/
|
||||
|
||||
package com.github.javaparser.generator.core.node;
|
||||
|
||||
import static com.github.javaparser.StaticJavaParser.parseExplicitConstructorInvocationStmt;
|
||||
import static com.github.javaparser.utils.CodeGenerationUtils.f;
|
||||
|
||||
import com.github.javaparser.TokenRange;
|
||||
import com.github.javaparser.ast.CompilationUnit;
|
||||
import com.github.javaparser.ast.Node;
|
||||
import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration;
|
||||
import com.github.javaparser.ast.body.ConstructorDeclaration;
|
||||
import com.github.javaparser.ast.stmt.BlockStmt;
|
||||
import com.github.javaparser.generator.NodeGenerator;
|
||||
import com.github.javaparser.metamodel.BaseNodeMetaModel;
|
||||
import com.github.javaparser.metamodel.PropertyMetaModel;
|
||||
import com.github.javaparser.utils.SeparatedItemStringBuilder;
|
||||
import com.github.javaparser.utils.SourceRoot;
|
||||
|
||||
public class MainConstructorGenerator extends NodeGenerator {
|
||||
public MainConstructorGenerator(SourceRoot sourceRoot) {
|
||||
super(sourceRoot);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void generateNode(
|
||||
BaseNodeMetaModel nodeMetaModel, CompilationUnit nodeCu, ClassOrInterfaceDeclaration nodeCoid) {
|
||||
if (nodeMetaModel.is(Node.class)) {
|
||||
return;
|
||||
}
|
||||
ConstructorDeclaration constructor = new ConstructorDeclaration()
|
||||
.setPublic(true)
|
||||
.setName(nodeCoid.getNameAsString())
|
||||
.addParameter(TokenRange.class, "tokenRange")
|
||||
.setJavadocComment("\n * This constructor is used by the parser and is considered private.\n ");
|
||||
|
||||
BlockStmt body = constructor.getBody();
|
||||
|
||||
SeparatedItemStringBuilder superCall = new SeparatedItemStringBuilder("super(", ", ", ");");
|
||||
superCall.append("tokenRange");
|
||||
for (PropertyMetaModel parameter : nodeMetaModel.getConstructorParameters()) {
|
||||
constructor.addParameter(parameter.getTypeNameForSetter(), parameter.getName());
|
||||
if (nodeMetaModel.getDeclaredPropertyMetaModels().contains(parameter)) {
|
||||
body.addStatement(f("%s(%s);", parameter.getSetterMethodName(), parameter.getName()));
|
||||
} else {
|
||||
superCall.append(parameter.getName());
|
||||
}
|
||||
}
|
||||
|
||||
body.getStatements().addFirst(parseExplicitConstructorInvocationStmt(superCall.toString()));
|
||||
|
||||
body.addStatement("customInitialization();");
|
||||
|
||||
addOrReplaceWhenSameSignature(nodeCoid, constructor);
|
||||
nodeCu.addImport(TokenRange.class);
|
||||
}
|
||||
}
|
||||
@@ -1,40 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2007-2010 Júlio Vilmar Gesser.
|
||||
* Copyright (C) 2011, 2013-2024 The JavaParser Team.
|
||||
*
|
||||
* This file is part of JavaParser.
|
||||
*
|
||||
* JavaParser can be used either under the terms of
|
||||
* a) the GNU Lesser General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
* b) the terms of the Apache License
|
||||
*
|
||||
* You should have received a copy of both licenses in LICENCE.LGPL and
|
||||
* LICENCE.APACHE. Please refer to those files for details.
|
||||
*
|
||||
* JavaParser is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Lesser General Public License for more details.
|
||||
*/
|
||||
|
||||
package com.github.javaparser.generator.core.node;
|
||||
|
||||
import com.github.javaparser.ast.CompilationUnit;
|
||||
import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration;
|
||||
import com.github.javaparser.generator.NodeGenerator;
|
||||
import com.github.javaparser.metamodel.BaseNodeMetaModel;
|
||||
import com.github.javaparser.utils.SourceRoot;
|
||||
|
||||
public class NodeModifierGenerator extends NodeGenerator {
|
||||
public NodeModifierGenerator(SourceRoot sourceRoot) {
|
||||
super(sourceRoot);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void generateNode(
|
||||
BaseNodeMetaModel nodeMetaModel, CompilationUnit nodeCu, ClassOrInterfaceDeclaration nodeCoid) {
|
||||
nodeCoid.setFinal(false).setPublic(true);
|
||||
}
|
||||
}
|
||||
@@ -1,192 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2007-2010 Júlio Vilmar Gesser.
|
||||
* Copyright (C) 2011, 2013-2024 The JavaParser Team.
|
||||
*
|
||||
* This file is part of JavaParser.
|
||||
*
|
||||
* JavaParser can be used either under the terms of
|
||||
* a) the GNU Lesser General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
* b) the terms of the Apache License
|
||||
*
|
||||
* You should have received a copy of both licenses in LICENCE.LGPL and
|
||||
* LICENCE.APACHE. Please refer to those files for details.
|
||||
*
|
||||
* JavaParser is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Lesser General Public License for more details.
|
||||
*/
|
||||
|
||||
package com.github.javaparser.generator.core.node;
|
||||
|
||||
import static com.github.javaparser.StaticJavaParser.parseType;
|
||||
import static com.github.javaparser.ast.Modifier.Keyword.FINAL;
|
||||
import static com.github.javaparser.ast.Modifier.Keyword.PUBLIC;
|
||||
import static com.github.javaparser.ast.Modifier.createModifierList;
|
||||
import static com.github.javaparser.utils.CodeGenerationUtils.f;
|
||||
import static com.github.javaparser.utils.Utils.camelCaseToScreaming;
|
||||
|
||||
import com.github.javaparser.ast.CompilationUnit;
|
||||
import com.github.javaparser.ast.Node;
|
||||
import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration;
|
||||
import com.github.javaparser.ast.body.EnumConstantDeclaration;
|
||||
import com.github.javaparser.ast.body.EnumDeclaration;
|
||||
import com.github.javaparser.ast.body.MethodDeclaration;
|
||||
import com.github.javaparser.ast.observer.ObservableProperty;
|
||||
import com.github.javaparser.ast.stmt.BlockStmt;
|
||||
import com.github.javaparser.generator.NodeGenerator;
|
||||
import com.github.javaparser.generator.core.utils.CodeUtils;
|
||||
import com.github.javaparser.metamodel.BaseNodeMetaModel;
|
||||
import com.github.javaparser.metamodel.JavaParserMetaModel;
|
||||
import com.github.javaparser.metamodel.PropertyMetaModel;
|
||||
import com.github.javaparser.utils.SourceRoot;
|
||||
import java.util.*;
|
||||
|
||||
public class PropertyGenerator extends NodeGenerator {
|
||||
|
||||
private final Map<String, PropertyMetaModel> declaredProperties = new HashMap<>();
|
||||
private final Map<String, PropertyMetaModel> derivedProperties = new HashMap<>();
|
||||
|
||||
public PropertyGenerator(SourceRoot sourceRoot) {
|
||||
super(sourceRoot);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void generateNode(
|
||||
BaseNodeMetaModel nodeMetaModel, CompilationUnit nodeCu, ClassOrInterfaceDeclaration nodeCoid) {
|
||||
for (PropertyMetaModel property : nodeMetaModel.getDeclaredPropertyMetaModels()) {
|
||||
generateGetter(nodeMetaModel, nodeCoid, property);
|
||||
generateSetter(nodeMetaModel, nodeCoid, property);
|
||||
}
|
||||
nodeMetaModel.getDerivedPropertyMetaModels().forEach(p -> derivedProperties.put(p.getName(), p));
|
||||
}
|
||||
|
||||
private void generateSetter(
|
||||
BaseNodeMetaModel nodeMetaModel, ClassOrInterfaceDeclaration nodeCoid, PropertyMetaModel property) {
|
||||
// Ensure the relevant imports have been added for the methods/annotations used
|
||||
nodeCoid.findCompilationUnit().get().addImport(ObservableProperty.class);
|
||||
|
||||
final String name = property.getName();
|
||||
// Fill body
|
||||
final String observableName = camelCaseToScreaming(name.startsWith("is") ? name.substring(2) : name);
|
||||
declaredProperties.put(observableName, property);
|
||||
|
||||
if (property == JavaParserMetaModel.nodeMetaModel.commentPropertyMetaModel) {
|
||||
// Node.comment has a very specific setter that we shouldn't overwrite.
|
||||
return;
|
||||
}
|
||||
|
||||
final MethodDeclaration setter = new MethodDeclaration(
|
||||
createModifierList(PUBLIC),
|
||||
parseType(property.getContainingNodeMetaModel().getTypeNameGenerified()),
|
||||
property.getSetterMethodName());
|
||||
annotateWhenOverridden(nodeMetaModel, setter);
|
||||
if (property.getContainingNodeMetaModel().hasWildcard()) {
|
||||
setter.setType(parseType("T"));
|
||||
}
|
||||
setter.addAndGetParameter(property.getTypeNameForSetter(), property.getName())
|
||||
.addModifier(FINAL);
|
||||
|
||||
final BlockStmt body = setter.getBody().get();
|
||||
body.getStatements().clear();
|
||||
|
||||
if (property.isRequired()) {
|
||||
Class<?> type = property.getType();
|
||||
if (property.isNonEmpty() && property.isSingular()) {
|
||||
nodeCoid.findCompilationUnit()
|
||||
.get()
|
||||
.addImport("com.github.javaparser.utils.Utils.assertNonEmpty", true, false);
|
||||
body.addStatement(f("assertNonEmpty(%s);", name));
|
||||
} else if (type != boolean.class && type != int.class) {
|
||||
nodeCoid.findCompilationUnit()
|
||||
.get()
|
||||
.addImport("com.github.javaparser.utils.Utils.assertNotNull", true, false);
|
||||
body.addStatement(f("assertNotNull(%s);", name));
|
||||
}
|
||||
}
|
||||
|
||||
// Check if the new value is the same as the old value
|
||||
String returnValue = CodeUtils.castValue("this", setter.getType(), nodeMetaModel.getTypeName());
|
||||
body.addStatement(f("if (%s == this.%s) { return %s; }", name, name, returnValue));
|
||||
|
||||
body.addStatement(f("notifyPropertyChange(ObservableProperty.%s, this.%s, %s);", observableName, name, name));
|
||||
if (property.isNode()) {
|
||||
body.addStatement(f("if (this.%s != null) this.%s.setParentNode(null);", name, name));
|
||||
}
|
||||
body.addStatement(f("this.%s = %s;", name, name));
|
||||
if (property.isNode()) {
|
||||
body.addStatement(f("setAsParentNodeOf(%s);", name));
|
||||
}
|
||||
if (property.getContainingNodeMetaModel().hasWildcard()) {
|
||||
body.addStatement(f("return (T) this;"));
|
||||
} else {
|
||||
body.addStatement(f("return this;"));
|
||||
}
|
||||
addOrReplaceWhenSameSignature(nodeCoid, setter);
|
||||
if (property.getContainingNodeMetaModel().hasWildcard()) {
|
||||
annotateSuppressWarnings(setter);
|
||||
}
|
||||
}
|
||||
|
||||
private void generateGetter(
|
||||
BaseNodeMetaModel nodeMetaModel, ClassOrInterfaceDeclaration nodeCoid, PropertyMetaModel property) {
|
||||
final MethodDeclaration getter = new MethodDeclaration(
|
||||
createModifierList(PUBLIC), parseType(property.getTypeNameForGetter()), property.getGetterMethodName());
|
||||
annotateWhenOverridden(nodeMetaModel, getter);
|
||||
final BlockStmt body = getter.getBody().get();
|
||||
body.getStatements().clear();
|
||||
if (property.isOptional()) {
|
||||
// Ensure imports have been included.
|
||||
nodeCoid.findCompilationUnit().get().addImport(Optional.class);
|
||||
body.addStatement(f("return Optional.ofNullable(%s);", property.getName()));
|
||||
} else {
|
||||
body.addStatement(f("return %s;", property.getName()));
|
||||
}
|
||||
addOrReplaceWhenSameSignature(nodeCoid, getter);
|
||||
}
|
||||
|
||||
private void generateObservableProperty(
|
||||
EnumDeclaration observablePropertyEnum, PropertyMetaModel property, boolean derived) {
|
||||
boolean isAttribute = !Node.class.isAssignableFrom(property.getType());
|
||||
String name = property.getName();
|
||||
String constantName = camelCaseToScreaming(name.startsWith("is") ? name.substring(2) : name);
|
||||
EnumConstantDeclaration enumConstantDeclaration = observablePropertyEnum.addEnumConstant(constantName);
|
||||
if (isAttribute) {
|
||||
enumConstantDeclaration.addArgument("Type.SINGLE_ATTRIBUTE");
|
||||
} else {
|
||||
if (property.isNodeList()) {
|
||||
enumConstantDeclaration.addArgument("Type.MULTIPLE_REFERENCE");
|
||||
} else {
|
||||
enumConstantDeclaration.addArgument("Type.SINGLE_REFERENCE");
|
||||
}
|
||||
}
|
||||
if (derived) {
|
||||
enumConstantDeclaration.addArgument("true");
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void after() throws Exception {
|
||||
CompilationUnit observablePropertyCu = sourceRoot
|
||||
.tryToParse("com.github.javaparser.ast.observer", "ObservableProperty.java")
|
||||
.getResult()
|
||||
.get();
|
||||
EnumDeclaration observablePropertyEnum =
|
||||
observablePropertyCu.getEnumByName("ObservableProperty").get();
|
||||
observablePropertyEnum.getEntries().clear();
|
||||
List<String> observablePropertyNames = new LinkedList<>(declaredProperties.keySet());
|
||||
observablePropertyNames.sort(String::compareTo);
|
||||
for (String propName : observablePropertyNames) {
|
||||
generateObservableProperty(observablePropertyEnum, declaredProperties.get(propName), false);
|
||||
}
|
||||
List<String> derivedPropertyNames = new LinkedList<>(derivedProperties.keySet());
|
||||
derivedPropertyNames.sort(String::compareTo);
|
||||
for (String propName : derivedPropertyNames) {
|
||||
generateObservableProperty(observablePropertyEnum, derivedProperties.get(propName), true);
|
||||
}
|
||||
observablePropertyEnum.addEnumConstant("RANGE");
|
||||
observablePropertyEnum.addEnumConstant("COMMENTED_NODE");
|
||||
}
|
||||
}
|
||||
@@ -1,116 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2007-2010 Júlio Vilmar Gesser.
|
||||
* Copyright (C) 2011, 2013-2024 The JavaParser Team.
|
||||
*
|
||||
* This file is part of JavaParser.
|
||||
*
|
||||
* JavaParser can be used either under the terms of
|
||||
* a) the GNU Lesser General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
* b) the terms of the Apache License
|
||||
*
|
||||
* You should have received a copy of both licenses in LICENCE.LGPL and
|
||||
* LICENCE.APACHE. Please refer to those files for details.
|
||||
*
|
||||
* JavaParser is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Lesser General Public License for more details.
|
||||
*/
|
||||
|
||||
package com.github.javaparser.generator.core.node;
|
||||
|
||||
import static com.github.javaparser.StaticJavaParser.parseBodyDeclaration;
|
||||
import static com.github.javaparser.utils.CodeGenerationUtils.f;
|
||||
import static com.github.javaparser.utils.Utils.capitalize;
|
||||
|
||||
import com.github.javaparser.ast.CompilationUnit;
|
||||
import com.github.javaparser.ast.Node;
|
||||
import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration;
|
||||
import com.github.javaparser.ast.body.MethodDeclaration;
|
||||
import com.github.javaparser.ast.stmt.BlockStmt;
|
||||
import com.github.javaparser.generator.NodeGenerator;
|
||||
import com.github.javaparser.metamodel.BaseNodeMetaModel;
|
||||
import com.github.javaparser.metamodel.PropertyMetaModel;
|
||||
import com.github.javaparser.utils.SourceRoot;
|
||||
|
||||
public class RemoveMethodGenerator extends NodeGenerator {
|
||||
public RemoveMethodGenerator(SourceRoot sourceRoot) {
|
||||
super(sourceRoot);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void generateNode(
|
||||
BaseNodeMetaModel nodeMetaModel, CompilationUnit nodeCu, ClassOrInterfaceDeclaration nodeCoid) {
|
||||
MethodDeclaration removeNodeMethod =
|
||||
(MethodDeclaration) parseBodyDeclaration("public boolean remove(Node node) {}");
|
||||
nodeCu.addImport(Node.class);
|
||||
annotateWhenOverridden(nodeMetaModel, removeNodeMethod);
|
||||
|
||||
final BlockStmt body = removeNodeMethod.getBody().get();
|
||||
|
||||
body.addStatement("if (node == null) { return false; }");
|
||||
int numberPropertiesDeclared = 0;
|
||||
for (PropertyMetaModel property : nodeMetaModel.getDeclaredPropertyMetaModels()) {
|
||||
if (!property.isNode()) {
|
||||
continue;
|
||||
}
|
||||
String check;
|
||||
if (property.isNodeList()) {
|
||||
check = nodeListCheck(property);
|
||||
} else {
|
||||
if (property.isRequired()) {
|
||||
continue;
|
||||
}
|
||||
String removeAttributeMethodName = generateRemoveMethodForAttribute(nodeCoid, nodeMetaModel, property);
|
||||
check = attributeCheck(property, removeAttributeMethodName);
|
||||
}
|
||||
if (property.isOptional()) {
|
||||
check = f("if (%s != null) { %s }", property.getName(), check);
|
||||
}
|
||||
body.addStatement(check);
|
||||
numberPropertiesDeclared++;
|
||||
}
|
||||
if (nodeMetaModel.getSuperNodeMetaModel().isPresent()) {
|
||||
body.addStatement("return super.remove(node);");
|
||||
} else {
|
||||
body.addStatement("return false;");
|
||||
}
|
||||
|
||||
if (!nodeMetaModel.isRootNode() && numberPropertiesDeclared == 0) {
|
||||
removeMethodWithSameSignature(nodeCoid, removeNodeMethod);
|
||||
} else {
|
||||
addOrReplaceWhenSameSignature(nodeCoid, removeNodeMethod);
|
||||
}
|
||||
}
|
||||
|
||||
private String attributeCheck(PropertyMetaModel property, String removeAttributeMethodName) {
|
||||
return f(
|
||||
"if (node == %s) {" + " %s();" + " return true;\n" + "}",
|
||||
property.getName(), removeAttributeMethodName);
|
||||
}
|
||||
|
||||
private String nodeListCheck(PropertyMetaModel property) {
|
||||
return f(
|
||||
"for (int i = 0; i < %s.size(); i++) {" + " if (%s.get(i) == node) {"
|
||||
+ " %s.remove(i);"
|
||||
+ " return true;"
|
||||
+ " }"
|
||||
+ "}",
|
||||
property.getName(), property.getName(), property.getName());
|
||||
}
|
||||
|
||||
private String generateRemoveMethodForAttribute(
|
||||
ClassOrInterfaceDeclaration nodeCoid, BaseNodeMetaModel nodeMetaModel, PropertyMetaModel property) {
|
||||
final String methodName = "remove" + capitalize(property.getName());
|
||||
final MethodDeclaration removeMethod = (MethodDeclaration)
|
||||
parseBodyDeclaration(f("public %s %s() {}", nodeMetaModel.getTypeName(), methodName));
|
||||
|
||||
final BlockStmt block = removeMethod.getBody().get();
|
||||
block.addStatement(f("return %s((%s) null);", property.getSetterMethodName(), property.getTypeNameForSetter()));
|
||||
|
||||
addOrReplaceWhenSameSignature(nodeCoid, removeMethod);
|
||||
return methodName;
|
||||
}
|
||||
}
|
||||
@@ -1,99 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2007-2010 Júlio Vilmar Gesser.
|
||||
* Copyright (C) 2011, 2013-2024 The JavaParser Team.
|
||||
*
|
||||
* This file is part of JavaParser.
|
||||
*
|
||||
* JavaParser can be used either under the terms of
|
||||
* a) the GNU Lesser General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
* b) the terms of the Apache License
|
||||
*
|
||||
* You should have received a copy of both licenses in LICENCE.LGPL and
|
||||
* LICENCE.APACHE. Please refer to those files for details.
|
||||
*
|
||||
* JavaParser is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Lesser General Public License for more details.
|
||||
*/
|
||||
|
||||
package com.github.javaparser.generator.core.node;
|
||||
|
||||
import static com.github.javaparser.StaticJavaParser.parseBodyDeclaration;
|
||||
import static com.github.javaparser.utils.CodeGenerationUtils.f;
|
||||
|
||||
import com.github.javaparser.ast.CompilationUnit;
|
||||
import com.github.javaparser.ast.Node;
|
||||
import com.github.javaparser.ast.body.ClassOrInterfaceDeclaration;
|
||||
import com.github.javaparser.ast.body.MethodDeclaration;
|
||||
import com.github.javaparser.ast.stmt.BlockStmt;
|
||||
import com.github.javaparser.generator.NodeGenerator;
|
||||
import com.github.javaparser.metamodel.BaseNodeMetaModel;
|
||||
import com.github.javaparser.metamodel.PropertyMetaModel;
|
||||
import com.github.javaparser.utils.SourceRoot;
|
||||
|
||||
public class ReplaceMethodGenerator extends NodeGenerator {
|
||||
public ReplaceMethodGenerator(SourceRoot sourceRoot) {
|
||||
super(sourceRoot);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void generateNode(
|
||||
BaseNodeMetaModel nodeMetaModel, CompilationUnit nodeCu, ClassOrInterfaceDeclaration nodeCoid) {
|
||||
MethodDeclaration replaceNodeMethod =
|
||||
(MethodDeclaration) parseBodyDeclaration("public boolean replace(Node node, Node replacementNode) {}");
|
||||
nodeCu.addImport(Node.class);
|
||||
annotateWhenOverridden(nodeMetaModel, replaceNodeMethod);
|
||||
|
||||
final BlockStmt body = replaceNodeMethod.getBody().get();
|
||||
|
||||
body.addStatement("if (node == null) { return false; }");
|
||||
|
||||
int numberPropertiesDeclared = 0;
|
||||
for (PropertyMetaModel property : nodeMetaModel.getDeclaredPropertyMetaModels()) {
|
||||
if (!property.isNode()) {
|
||||
continue;
|
||||
}
|
||||
String check;
|
||||
if (property.isNodeList()) {
|
||||
check = nodeListCheck(property);
|
||||
} else {
|
||||
check = attributeCheck(property, property.getSetterMethodName());
|
||||
}
|
||||
if (property.isOptional()) {
|
||||
check = f("if (%s != null) { %s }", property.getName(), check);
|
||||
}
|
||||
body.addStatement(check);
|
||||
numberPropertiesDeclared++;
|
||||
}
|
||||
if (nodeMetaModel.getSuperNodeMetaModel().isPresent()) {
|
||||
body.addStatement("return super.replace(node, replacementNode);");
|
||||
} else {
|
||||
body.addStatement("return false;");
|
||||
}
|
||||
|
||||
if (!nodeMetaModel.isRootNode() && numberPropertiesDeclared == 0) {
|
||||
removeMethodWithSameSignature(nodeCoid, replaceNodeMethod);
|
||||
} else {
|
||||
addOrReplaceWhenSameSignature(nodeCoid, replaceNodeMethod);
|
||||
}
|
||||
}
|
||||
|
||||
private String attributeCheck(PropertyMetaModel property, String attributeSetterName) {
|
||||
return f(
|
||||
"if (node == %s) {" + " %s((%s) replacementNode);" + " return true;\n" + "}",
|
||||
property.getName(), attributeSetterName, property.getTypeName());
|
||||
}
|
||||
|
||||
private String nodeListCheck(PropertyMetaModel property) {
|
||||
return f(
|
||||
"for (int i = 0; i < %s.size(); i++) {" + " if (%s.get(i) == node) {"
|
||||
+ " %s.set(i, (%s) replacementNode);"
|
||||
+ " return true;"
|
||||
+ " }"
|
||||
+ "}",
|
||||
property.getName(), property.getName(), property.getName(), property.getTypeName());
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user