/* Generated By:JJTree&JavaCC: Do not edit this line. PythonGrammar30.java */ package org.python.pydev.parser.grammar30; import java.util.ArrayList; import java.util.List; import org.python.pydev.parser.IGrammar; import org.python.pydev.parser.grammarcommon.AbstractJJTPythonGrammarState; import org.python.pydev.parser.grammarcommon.AbstractPythonGrammar; import org.python.pydev.parser.grammarcommon.AbstractTokenManager; import org.python.pydev.parser.grammarcommon.EmptySuiteException; import org.python.pydev.parser.grammarcommon.IJJTPythonGrammarState; import org.python.pydev.parser.grammarcommon.ITreeBuilder; import org.python.pydev.parser.grammarcommon.JJTPythonGrammarState; import org.python.pydev.parser.grammarcommon.JfpDef; import org.python.pydev.parser.grammarcommon.WithNameInvalidException; import org.python.pydev.parser.jython.FastCharStream; import org.python.pydev.parser.jython.ParseException; import org.python.pydev.parser.jython.SimpleNode; import org.python.pydev.parser.jython.Token; import org.python.pydev.parser.jython.TokenMgrError; import org.python.pydev.parser.jython.ast.Import; import org.python.pydev.parser.jython.ast.ImportFrom; import org.python.pydev.parser.jython.ast.Name; import org.python.pydev.parser.jython.ast.Num; import org.python.pydev.parser.jython.ast.Str; import org.python.pydev.parser.jython.ast.Suite; import org.python.pydev.parser.jython.ast.Yield; import org.python.pydev.parser.jython.ast.modType; import com.aptana.shared_core.string.FastStringBuffer; public final class PythonGrammar30 extends AbstractPythonGrammar implements /*@bgen(jjtree)*/IGrammar, PythonGrammar30Constants {/*@bgen(jjtree)*/ protected final AbstractJJTPythonGrammarState jjtree = createJJTPythonGrammarState(TreeBuilder30.class); private final FastStringBuffer dottedNameStringBuffer = new FastStringBuffer(); private final ITreeBuilder builder; /** * @return the current token found. */ protected final Token getCurrentToken() { return this.token; } /** * Sets the current token. */ protected final void setCurrentToken(Token t) { this.token = t; } /** * @return the jjtree from this grammar */ protected final AbstractJJTPythonGrammarState getJJTree() { return jjtree; } /** * @return the special tokens in the token source */ public final List<Object> getTokenSourceSpecialTokensList() { return token_source.specialTokens; } /** * @return the jj_lastpos */ protected final Token getJJLastPos() { return jj_lastpos; } private void handleFutureImports(String importName) { } protected final void addSpecialToArgDef(Object str) { Token token = (Token) str; SimpleNode peeked = jjtree.peekNode(); if (peeked instanceof JfpDef) { JfpDef jfpdef = (JfpDef) peeked; if (jfpdef.typeDef != null) { jfpdef.typeDef.getSpecialsAfter().add(token.asSpecialStr()); } else { jfpdef.nameNode.getSpecialsAfter().add(token.asSpecialStr()); } } else if (peeked != null) { peeked.getSpecialsAfter().add(token.asSpecialStr()); } } //file_input: (NEWLINE | stmt)* ENDMARKER final public modType file_input() throws ParseException { /*@bgen(jjtree) file_input */ SimpleNode jjtn000 = builder.openNode(JJTFILE_INPUT); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { label_1: while (true) { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case NEWLINE: case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case MULTIPLY: case NOT: case NOT_BOOL: case LAMBDA: case IF: case WHILE: case FOR: case TRY: case DEF: case CLASS: case PASS: case BREAK: case CONTINUE: case RETURN: case YIELD: case IMPORT: case FROM: case DEL: case RAISE: case GLOBAL: case NONLOCAL: case ASSERT: case WITH: case FALSE: case TRUE: case NONE: case AT: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: ; break; default: jj_la1[0] = jj_gen; break label_1; } switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case NEWLINE: try { jj_consume_token(NEWLINE); } catch (ParseException e) { handleNoNewline(e); } break; case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case MULTIPLY: case NOT: case NOT_BOOL: case LAMBDA: case IF: case WHILE: case FOR: case TRY: case DEF: case CLASS: case PASS: case BREAK: case CONTINUE: case RETURN: case YIELD: case IMPORT: case FROM: case DEL: case RAISE: case GLOBAL: case NONLOCAL: case ASSERT: case WITH: case FALSE: case TRUE: case NONE: case AT: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: stmt(); break; default: jj_la1[1] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } try { jj_consume_token(0); } catch (ParseException e) { handleNoEof(e); } jjtree.closeNodeScope(jjtn000, true); jjtc000 = false; jjtreeCloseNodeScope(jjtn000); { if (true) return (modType) jjtree.popNode(); } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } throw new Error("Missing return statement in function"); } //funcdef: 'def' NAME parameters ['->' test] ':' suite final public void funcdef() throws ParseException { /*@bgen(jjtree) funcdef */ SimpleNode jjtn000 = builder.openNode(JJTFUNCDEF); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { jj_consume_token(DEF); this.markLastAsSuiteStart(); Name(); parameters(); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case MINUS_GREATER: grammarActions.addSpecialToken("->", STRATEGY_BEFORE_NEXT); jj_consume_token(MINUS_GREATER); SimpleNode jjtn001 = builder.openNode(JJTFUNCDEF_RETURN_ANNOTTATION); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); jjtreeOpenNodeScope(jjtn001); try { test(); } catch (Throwable jjte001) { if (jjtc001) { jjtree.clearNodeScope(jjtn001); jjtc001 = false; } else { jjtree.popNode(); } if (jjte001 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte001; } } if (jjte001 instanceof ParseException) { { if (true) throw (ParseException) jjte001; } } { if (true) throw (Error) jjte001; } } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, true); jjtreeCloseNodeScope(jjtn001); } } break; default: jj_la1[2] = jj_gen; ; } grammarActions.findTokenAndAdd(":"); jj_consume_token(COLON); suite(); } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //decorators: decorator+ //decorator: '@' dotted_name [ '(' [arglist] ')' ] NEWLINE final public void decorators() throws ParseException { /*@bgen(jjtree) decorators */ SimpleNode jjtn000 = builder.openNode(JJTDECORATORS); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { label_2: while (true) { begin_decorator(); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LPAREN: grammarActions.markDecoratorWithCall(); jj_consume_token(LPAREN); grammarActions.addSpecialToken("(", STRATEGY_BEFORE_NEXT); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case MULTIPLY: case POWER: case NOT: case NOT_BOOL: case LAMBDA: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: arglist(); break; default: jj_la1[3] = jj_gen; ; } try { grammarActions.findTokenAndAdd(")"); jj_consume_token(RPAREN); } catch (ParseException e) { handleRParensNearButNotCurrent(e); } break; default: jj_la1[4] = jj_gen; ; } try { jj_consume_token(NEWLINE); } catch (ParseException e) { handleNoNewline(e); } switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case AT: ; break; default: jj_la1[5] = jj_gen; break label_2; } } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } final public void begin_decorator() throws ParseException { /*@bgen(jjtree) begin_decorator */ SimpleNode jjtn000 = builder.openNode(JJTBEGIN_DECORATOR); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { temporaryToken = jj_consume_token(AT); grammarActions.addSpecialToken(temporaryToken, STRATEGY_BEFORE_NEXT); dotted_name(); } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //parameters: '(' [typedargslist] ')' final public void parameters() throws ParseException { grammarActions.findTokenAndAdd("("); jj_consume_token(LPAREN); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case MULTIPLY: case POWER: case NAME: typedargslist(); break; default: jj_la1[6] = jj_gen; ; } try { grammarActions.findTokenAndAdd(")"); jj_consume_token(RPAREN); } catch (ParseException e) { handleRParensNearButNotCurrent(e); } } //typedargslist: ((tfpdef ['=' test] ',')* // ('*' [tfpdef] (',' tfpdef ['=' test])* [',' '**' tfpdef] | '**' tfpdef) // | tfpdef ['=' test] (',' tfpdef ['=' test])* [',']) final public void typedargslist() throws ParseException { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case NAME: defaultarg2(); label_3: while (true) { if (jj_2_1(2)) { ; } else { break label_3; } grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); defaultarg2(); } if (jj_2_3(2)) { grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case MULTIPLY: ExtraArgList2(); label_4: while (true) { if (jj_2_2(2)) { ; } else { break label_4; } grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); onlykeywordarg2(); } switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case COMMA: grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); ExtraKeywordList2(); break; default: jj_la1[7] = jj_gen; ; } break; case POWER: ExtraKeywordList2(); break; default: jj_la1[8] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } else { ; } switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case COMMA: grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); break; default: jj_la1[9] = jj_gen; ; } break; case MULTIPLY: ExtraArgList2(); label_5: while (true) { if (jj_2_4(2)) { ; } else { break label_5; } grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); onlykeywordarg2(); } if (jj_2_5(2)) { grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); ExtraKeywordList2(); } else { ; } switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case COMMA: grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); break; default: jj_la1[10] = jj_gen; ; } break; case POWER: ExtraKeywordList2(); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case COMMA: grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); break; default: jj_la1[11] = jj_gen; ; } break; default: jj_la1[12] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } final public void ExtraArgList2() throws ParseException { /*@bgen(jjtree) ExtraArgList2 */ SimpleNode jjtn000 = builder.openNode(JJTEXTRAARGLIST2); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { jj_consume_token(MULTIPLY); grammarActions.addSpecialToken("*", STRATEGY_BEFORE_NEXT); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case NAME: tfpdef(); break; default: jj_la1[13] = jj_gen; ; } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } final public void ExtraKeywordList2() throws ParseException { /*@bgen(jjtree) ExtraKeywordList2 */ SimpleNode jjtn000 = builder.openNode(JJTEXTRAKEYWORDLIST2); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { jj_consume_token(POWER); grammarActions.addSpecialToken("**", STRATEGY_BEFORE_NEXT); tfpdef(); } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } final public void defaultarg2() throws ParseException { /*@bgen(jjtree) defaultarg2 */ SimpleNode jjtn000 = builder.openNode(JJTDEFAULTARG2); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { tfpdef(); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case EQUAL: temporaryToken = jj_consume_token(EQUAL); this.addSpecialToArgDef(temporaryToken); test(); break; default: jj_la1[14] = jj_gen; ; } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } final public void onlykeywordarg2() throws ParseException { /*@bgen(jjtree) onlykeywordarg2 */ SimpleNode jjtn000 = builder.openNode(JJTONLYKEYWORDARG2); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { tfpdef(); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case EQUAL: temporaryToken = jj_consume_token(EQUAL); this.addSpecialToArgDef(temporaryToken); test(); break; default: jj_la1[15] = jj_gen; ; } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //tfpdef: NAME [':' test] final public void tfpdef() throws ParseException { /*@bgen(jjtree) tfpdef */ SimpleNode jjtn000 = builder.openNode(JJTTFPDEF); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { Name(); if (jj_2_6(2)) { jj_consume_token(COLON); grammarActions.addSpecialToken(":", STRATEGY_BEFORE_NEXT); test(); } else { ; } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //varargslist: ((vfpdef ['=' test] ',')* // ('*' [vfpdef] (',' vfpdef ['=' test])* [',' '**' vfpdef] | '**' vfpdef) // | vfpdef ['=' test] (',' vfpdef ['=' test])* [',']) final public void varargslist() throws ParseException { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LPAREN: case NAME: defaultarg(); label_6: while (true) { if (jj_2_7(2)) { ; } else { break label_6; } grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); defaultarg(); } if (jj_2_9(2)) { grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case MULTIPLY: ExtraArgList(); label_7: while (true) { if (jj_2_8(2)) { ; } else { break label_7; } grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); onlykeywordarg(); } switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case COMMA: grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); ExtraKeywordList(); break; default: jj_la1[16] = jj_gen; ; } break; case POWER: ExtraKeywordList(); break; default: jj_la1[17] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } else { ; } switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case COMMA: grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); break; default: jj_la1[18] = jj_gen; ; } break; case MULTIPLY: ExtraArgList(); label_8: while (true) { if (jj_2_10(2)) { ; } else { break label_8; } grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); onlykeywordarg(); } if (jj_2_11(2)) { grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); ExtraKeywordList(); } else { ; } switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case COMMA: grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); break; default: jj_la1[19] = jj_gen; ; } break; case POWER: ExtraKeywordList(); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case COMMA: grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); break; default: jj_la1[20] = jj_gen; ; } break; default: jj_la1[21] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } final public void ExtraArgList() throws ParseException { /*@bgen(jjtree) ExtraArgList */ SimpleNode jjtn000 = builder.openNode(JJTEXTRAARGLIST); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { jj_consume_token(MULTIPLY); grammarActions.addSpecialToken("*", STRATEGY_BEFORE_NEXT); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case NAME: Name(); break; default: jj_la1[22] = jj_gen; ; } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } final public void ExtraKeywordList() throws ParseException { /*@bgen(jjtree) ExtraKeywordList */ SimpleNode jjtn000 = builder.openNode(JJTEXTRAKEYWORDLIST); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case POWER: jj_consume_token(POWER); grammarActions.addSpecialToken("**", STRATEGY_BEFORE_NEXT); break; case MULTIPLY: jj_consume_token(MULTIPLY); grammarActions.addSpecialToken("*", STRATEGY_BEFORE_NEXT); grammarActions.addSpecialToken("*", STRATEGY_BEFORE_NEXT); jj_consume_token(MULTIPLY); break; default: jj_la1[23] = jj_gen; jj_consume_token(-1); throw new ParseException(); } Name(); } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } final public void onlykeywordarg() throws ParseException { /*@bgen(jjtree) onlykeywordarg */ SimpleNode jjtn000 = builder.openNode(JJTONLYKEYWORDARG); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { fpdef(); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case EQUAL: temporaryToken = jj_consume_token(EQUAL); this.addSpecialToArgDef(temporaryToken); test(); break; default: jj_la1[24] = jj_gen; ; } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } final public void defaultarg() throws ParseException { /*@bgen(jjtree) defaultarg */ SimpleNode jjtn000 = builder.openNode(JJTDEFAULTARG); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { fpdef(); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case EQUAL: temporaryToken = jj_consume_token(EQUAL); this.addSpecialToArgDef(temporaryToken); test(); break; default: jj_la1[25] = jj_gen; ; } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //fpdef: NAME | '(' fplist ')' final public void fpdef() throws ParseException { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case NAME: Name(); break; case LPAREN: temporaryToken = grammarActions.createSpecialStr("("); jj_consume_token(LPAREN); grammarActions.addSpecialToken(temporaryToken, STRATEGY_BEFORE_NEXT); fplist(); try { grammarActions.findTokenAndAdd(")"); jj_consume_token(RPAREN); } catch (ParseException e) { handleRParensNearButNotCurrent(e); } break; default: jj_la1[26] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } //fplist: fpdef (',' fpdef)* [','] final public void fplist() throws ParseException { /*@bgen(jjtree) tuple */ SimpleNode jjtn000 = builder.openNode(JJTTUPLE); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { fpdef(); label_9: while (true) { if (jj_2_12(2)) { ; } else { break label_9; } grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); fpdef(); } switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case COMMA: Comma(); break; default: jj_la1[27] = jj_gen; ; } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //stmt: simple_stmt | compound_stmt final public void stmt() throws ParseException { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case MULTIPLY: case NOT: case NOT_BOOL: case LAMBDA: case PASS: case BREAK: case CONTINUE: case RETURN: case YIELD: case IMPORT: case FROM: case DEL: case RAISE: case GLOBAL: case NONLOCAL: case ASSERT: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: simple_stmt(); break; case IF: case WHILE: case FOR: case TRY: case DEF: case CLASS: case WITH: case AT: try { compound_stmt(); } catch (ParseException e) { handleErrorInCompountStmt(e); } break; default: jj_la1[28] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } //simple_stmt: small_stmt (';' small_stmt)* [';'] NEWLINE final public void simple_stmt() throws ParseException { small_stmt(); label_10: while (true) { if (jj_2_13(2)) { ; } else { break label_10; } temporaryToken = jj_consume_token(SEMICOLON); grammarActions.addSpecialToken(temporaryToken); small_stmt(); } switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case SEMICOLON: temporaryToken = jj_consume_token(SEMICOLON); grammarActions.addSpecialToken(temporaryToken); break; default: jj_la1[29] = jj_gen; ; } try { jj_consume_token(NEWLINE); } catch (ParseException e) { handleNoNewline(e); } } //small_stmt: expr_stmt | del_stmt | pass_stmt | flow_stmt | import_stmt | global_stmt | nonlocal_stmt | assert_stmt final public void small_stmt() throws ParseException { SimpleNode simpleNode; Token spStr; switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case MULTIPLY: case NOT: case NOT_BOOL: case LAMBDA: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: expr_stmt(); break; case DEL: del_stmt(); break; case PASS: spStr = pass_stmt(); grammarActions.addToPeek(spStr, false); break; case BREAK: case CONTINUE: case RETURN: case YIELD: case RAISE: flow_stmt(); break; case IMPORT: case FROM: import_stmt(); break; case GLOBAL: global_stmt(); break; case NONLOCAL: nonlocal_stmt(); break; case ASSERT: temporaryToken = jj_consume_token(ASSERT); assert_stmt(); grammarActions.addToPeek(temporaryToken, false); break; default: jj_la1[30] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } //expr_stmt: testlist (augassign (yield_expr|testlist) | // ('=' (yield_expr|testlist))*) final public void expr_stmt() throws ParseException { testlist_star_expr(); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case PLUSEQ: jj_consume_token(PLUSEQ); SimpleNode jjtn001 = builder.openNode(JJTAUG_PLUS); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); jjtreeOpenNodeScope(jjtn001); try { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case YIELD: yield_expr(); break; case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case NOT: case NOT_BOOL: case LAMBDA: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: SmartTestList(); break; default: jj_la1[31] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } catch (Throwable jjte001) { if (jjtc001) { jjtree.clearNodeScope(jjtn001); jjtc001 = false; } else { jjtree.popNode(); } if (jjte001 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte001; } } if (jjte001 instanceof ParseException) { { if (true) throw (ParseException) jjte001; } } { if (true) throw (Error) jjte001; } } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, 2); jjtreeCloseNodeScope(jjtn001); } } break; case MINUSEQ: jj_consume_token(MINUSEQ); SimpleNode jjtn002 = builder.openNode(JJTAUG_MINUS); boolean jjtc002 = true; jjtree.openNodeScope(jjtn002); jjtreeOpenNodeScope(jjtn002); try { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case YIELD: yield_expr(); break; case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case NOT: case NOT_BOOL: case LAMBDA: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: SmartTestList(); break; default: jj_la1[32] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } catch (Throwable jjte002) { if (jjtc002) { jjtree.clearNodeScope(jjtn002); jjtc002 = false; } else { jjtree.popNode(); } if (jjte002 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte002; } } if (jjte002 instanceof ParseException) { { if (true) throw (ParseException) jjte002; } } { if (true) throw (Error) jjte002; } } finally { if (jjtc002) { jjtree.closeNodeScope(jjtn002, 2); jjtreeCloseNodeScope(jjtn002); } } break; case MULTIPLYEQ: jj_consume_token(MULTIPLYEQ); SimpleNode jjtn003 = builder.openNode(JJTAUG_MULTIPLY); boolean jjtc003 = true; jjtree.openNodeScope(jjtn003); jjtreeOpenNodeScope(jjtn003); try { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case YIELD: yield_expr(); break; case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case NOT: case NOT_BOOL: case LAMBDA: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: SmartTestList(); break; default: jj_la1[33] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } catch (Throwable jjte003) { if (jjtc003) { jjtree.clearNodeScope(jjtn003); jjtc003 = false; } else { jjtree.popNode(); } if (jjte003 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte003; } } if (jjte003 instanceof ParseException) { { if (true) throw (ParseException) jjte003; } } { if (true) throw (Error) jjte003; } } finally { if (jjtc003) { jjtree.closeNodeScope(jjtn003, 2); jjtreeCloseNodeScope(jjtn003); } } break; case DIVIDEEQ: jj_consume_token(DIVIDEEQ); SimpleNode jjtn004 = builder.openNode(JJTAUG_DIVIDE); boolean jjtc004 = true; jjtree.openNodeScope(jjtn004); jjtreeOpenNodeScope(jjtn004); try { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case YIELD: yield_expr(); break; case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case NOT: case NOT_BOOL: case LAMBDA: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: SmartTestList(); break; default: jj_la1[34] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } catch (Throwable jjte004) { if (jjtc004) { jjtree.clearNodeScope(jjtn004); jjtc004 = false; } else { jjtree.popNode(); } if (jjte004 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte004; } } if (jjte004 instanceof ParseException) { { if (true) throw (ParseException) jjte004; } } { if (true) throw (Error) jjte004; } } finally { if (jjtc004) { jjtree.closeNodeScope(jjtn004, 2); jjtreeCloseNodeScope(jjtn004); } } break; case FLOORDIVIDEEQ: jj_consume_token(FLOORDIVIDEEQ); SimpleNode jjtn005 = builder.openNode(JJTAUG_FLOORDIVIDE); boolean jjtc005 = true; jjtree.openNodeScope(jjtn005); jjtreeOpenNodeScope(jjtn005); try { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case YIELD: yield_expr(); break; case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case NOT: case NOT_BOOL: case LAMBDA: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: SmartTestList(); break; default: jj_la1[35] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } catch (Throwable jjte005) { if (jjtc005) { jjtree.clearNodeScope(jjtn005); jjtc005 = false; } else { jjtree.popNode(); } if (jjte005 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte005; } } if (jjte005 instanceof ParseException) { { if (true) throw (ParseException) jjte005; } } { if (true) throw (Error) jjte005; } } finally { if (jjtc005) { jjtree.closeNodeScope(jjtn005, 2); jjtreeCloseNodeScope(jjtn005); } } break; case MODULOEQ: jj_consume_token(MODULOEQ); SimpleNode jjtn006 = builder.openNode(JJTAUG_MODULO); boolean jjtc006 = true; jjtree.openNodeScope(jjtn006); jjtreeOpenNodeScope(jjtn006); try { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case YIELD: yield_expr(); break; case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case NOT: case NOT_BOOL: case LAMBDA: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: SmartTestList(); break; default: jj_la1[36] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } catch (Throwable jjte006) { if (jjtc006) { jjtree.clearNodeScope(jjtn006); jjtc006 = false; } else { jjtree.popNode(); } if (jjte006 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte006; } } if (jjte006 instanceof ParseException) { { if (true) throw (ParseException) jjte006; } } { if (true) throw (Error) jjte006; } } finally { if (jjtc006) { jjtree.closeNodeScope(jjtn006, 2); jjtreeCloseNodeScope(jjtn006); } } break; case ANDEQ: jj_consume_token(ANDEQ); SimpleNode jjtn007 = builder.openNode(JJTAUG_AND); boolean jjtc007 = true; jjtree.openNodeScope(jjtn007); jjtreeOpenNodeScope(jjtn007); try { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case YIELD: yield_expr(); break; case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case NOT: case NOT_BOOL: case LAMBDA: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: SmartTestList(); break; default: jj_la1[37] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } catch (Throwable jjte007) { if (jjtc007) { jjtree.clearNodeScope(jjtn007); jjtc007 = false; } else { jjtree.popNode(); } if (jjte007 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte007; } } if (jjte007 instanceof ParseException) { { if (true) throw (ParseException) jjte007; } } { if (true) throw (Error) jjte007; } } finally { if (jjtc007) { jjtree.closeNodeScope(jjtn007, 2); jjtreeCloseNodeScope(jjtn007); } } break; case OREQ: jj_consume_token(OREQ); SimpleNode jjtn008 = builder.openNode(JJTAUG_OR); boolean jjtc008 = true; jjtree.openNodeScope(jjtn008); jjtreeOpenNodeScope(jjtn008); try { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case YIELD: yield_expr(); break; case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case NOT: case NOT_BOOL: case LAMBDA: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: SmartTestList(); break; default: jj_la1[38] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } catch (Throwable jjte008) { if (jjtc008) { jjtree.clearNodeScope(jjtn008); jjtc008 = false; } else { jjtree.popNode(); } if (jjte008 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte008; } } if (jjte008 instanceof ParseException) { { if (true) throw (ParseException) jjte008; } } { if (true) throw (Error) jjte008; } } finally { if (jjtc008) { jjtree.closeNodeScope(jjtn008, 2); jjtreeCloseNodeScope(jjtn008); } } break; case XOREQ: jj_consume_token(XOREQ); SimpleNode jjtn009 = builder.openNode(JJTAUG_XOR); boolean jjtc009 = true; jjtree.openNodeScope(jjtn009); jjtreeOpenNodeScope(jjtn009); try { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case YIELD: yield_expr(); break; case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case NOT: case NOT_BOOL: case LAMBDA: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: SmartTestList(); break; default: jj_la1[39] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } catch (Throwable jjte009) { if (jjtc009) { jjtree.clearNodeScope(jjtn009); jjtc009 = false; } else { jjtree.popNode(); } if (jjte009 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte009; } } if (jjte009 instanceof ParseException) { { if (true) throw (ParseException) jjte009; } } { if (true) throw (Error) jjte009; } } finally { if (jjtc009) { jjtree.closeNodeScope(jjtn009, 2); jjtreeCloseNodeScope(jjtn009); } } break; case LSHIFTEQ: jj_consume_token(LSHIFTEQ); SimpleNode jjtn010 = builder.openNode(JJTAUG_LSHIFT); boolean jjtc010 = true; jjtree.openNodeScope(jjtn010); jjtreeOpenNodeScope(jjtn010); try { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case YIELD: yield_expr(); break; case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case NOT: case NOT_BOOL: case LAMBDA: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: SmartTestList(); break; default: jj_la1[40] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } catch (Throwable jjte010) { if (jjtc010) { jjtree.clearNodeScope(jjtn010); jjtc010 = false; } else { jjtree.popNode(); } if (jjte010 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte010; } } if (jjte010 instanceof ParseException) { { if (true) throw (ParseException) jjte010; } } { if (true) throw (Error) jjte010; } } finally { if (jjtc010) { jjtree.closeNodeScope(jjtn010, 2); jjtreeCloseNodeScope(jjtn010); } } break; case RSHIFTEQ: jj_consume_token(RSHIFTEQ); SimpleNode jjtn011 = builder.openNode(JJTAUG_RSHIFT); boolean jjtc011 = true; jjtree.openNodeScope(jjtn011); jjtreeOpenNodeScope(jjtn011); try { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case YIELD: yield_expr(); break; case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case NOT: case NOT_BOOL: case LAMBDA: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: SmartTestList(); break; default: jj_la1[41] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } catch (Throwable jjte011) { if (jjtc011) { jjtree.clearNodeScope(jjtn011); jjtc011 = false; } else { jjtree.popNode(); } if (jjte011 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte011; } } if (jjte011 instanceof ParseException) { { if (true) throw (ParseException) jjte011; } } { if (true) throw (Error) jjte011; } } finally { if (jjtc011) { jjtree.closeNodeScope(jjtn011, 2); jjtreeCloseNodeScope(jjtn011); } } break; case POWEREQ: jj_consume_token(POWEREQ); SimpleNode jjtn012 = builder.openNode(JJTAUG_POWER); boolean jjtc012 = true; jjtree.openNodeScope(jjtn012); jjtreeOpenNodeScope(jjtn012); try { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case YIELD: yield_expr(); break; case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case NOT: case NOT_BOOL: case LAMBDA: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: SmartTestList(); break; default: jj_la1[42] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } catch (Throwable jjte012) { if (jjtc012) { jjtree.clearNodeScope(jjtn012); jjtc012 = false; } else { jjtree.popNode(); } if (jjte012 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte012; } } if (jjte012 instanceof ParseException) { { if (true) throw (ParseException) jjte012; } } { if (true) throw (Error) jjte012; } } finally { if (jjtc012) { jjtree.closeNodeScope(jjtn012, 2); jjtreeCloseNodeScope(jjtn012); } } break; default: jj_la1[45] = jj_gen; SimpleNode jjtn013 = builder.openNode(JJTEXPR_STMT); boolean jjtc013 = true; jjtree.openNodeScope(jjtn013); jjtreeOpenNodeScope(jjtn013); try { label_11: while (true) { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case EQUAL: ; break; default: jj_la1[43] = jj_gen; break label_11; } jj_consume_token(EQUAL); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case YIELD: yield_expr(); break; case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case MULTIPLY: case NOT: case NOT_BOOL: case LAMBDA: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: testlist_star_expr(); break; default: jj_la1[44] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } } catch (Throwable jjte013) { if (jjtc013) { jjtree.clearNodeScope(jjtn013); jjtc013 = false; } else { jjtree.popNode(); } if (jjte013 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte013; } } if (jjte013 instanceof ParseException) { { if (true) throw (ParseException) jjte013; } } { if (true) throw (Error) jjte013; } } finally { if (jjtc013) { jjtree.closeNodeScope(jjtn013, jjtree.nodeArity() + 1); jjtreeCloseNodeScope(jjtn013); } } } } //del_stmt: 'del' exprlist final public void del_stmt() throws ParseException { /*@bgen(jjtree) del_stmt */ SimpleNode jjtn000 = builder.openNode(JJTDEL_STMT); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { begin_del_stmt(); exprlist(); } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } final public void begin_del_stmt() throws ParseException { /*@bgen(jjtree) begin_del_stmt */ SimpleNode jjtn000 = builder.openNode(JJTBEGIN_DEL_STMT); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { temporaryToken = jj_consume_token(DEL); jjtree.closeNodeScope(jjtn000, true); jjtc000 = false; jjtreeCloseNodeScope(jjtn000); this.grammarActions.addToPeek(temporaryToken, false); } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //pass_stmt: 'pass' final public Token pass_stmt() throws ParseException { /*@bgen(jjtree) pass_stmt */ SimpleNode jjtn000 = builder.openNode(JJTPASS_STMT); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); Token spStr; try { spStr = jj_consume_token(PASS); jjtree.closeNodeScope(jjtn000, true); jjtc000 = false; jjtreeCloseNodeScope(jjtn000); { if (true) return spStr; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } throw new Error("Missing return statement in function"); } //flow_stmt: break_stmt | continue_stmt | return_stmt | yield_stmt | raise_stmt final public void flow_stmt() throws ParseException { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case BREAK: jj_consume_token(BREAK); SimpleNode jjtn001 = builder.openNode(JJTBREAK_STMT); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); jjtreeOpenNodeScope(jjtn001); try { jjtree.closeNodeScope(jjtn001, 0); jjtc001 = false; jjtreeCloseNodeScope(jjtn001); grammarActions.addToPeek("break", true); } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, 0); jjtreeCloseNodeScope(jjtn001); } } break; case CONTINUE: jj_consume_token(CONTINUE); SimpleNode jjtn002 = builder.openNode(JJTCONTINUE_STMT); boolean jjtc002 = true; jjtree.openNodeScope(jjtn002); jjtreeOpenNodeScope(jjtn002); try { jjtree.closeNodeScope(jjtn002, 0); jjtc002 = false; jjtreeCloseNodeScope(jjtn002); grammarActions.addToPeek("continue", true); } finally { if (jjtc002) { jjtree.closeNodeScope(jjtn002, 0); jjtreeCloseNodeScope(jjtn002); } } break; case RETURN: return_stmt(); break; case YIELD: yield_stmt(); break; case RAISE: raise_stmt(); break; default: jj_la1[46] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } //return_stmt: 'return' [testlist] final public void return_stmt() throws ParseException { /*@bgen(jjtree) return_stmt */ SimpleNode jjtn000 = builder.openNode(JJTRETURN_STMT); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { begin_return_stmt(); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case NOT: case NOT_BOOL: case LAMBDA: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: SmartTestList(); break; default: jj_la1[47] = jj_gen; ; } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } final public void begin_return_stmt() throws ParseException { /*@bgen(jjtree) begin_return_stmt */ SimpleNode jjtn000 = builder.openNode(JJTBEGIN_RETURN_STMT); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { jj_consume_token(RETURN); jjtree.closeNodeScope(jjtn000, true); jjtc000 = false; jjtreeCloseNodeScope(jjtn000); this.grammarActions.addToPeek("return ", false); } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //yield_stmt: yield_expr final public void yield_stmt() throws ParseException { /*@bgen(jjtree) yield_stmt */ SimpleNode jjtn000 = builder.openNode(JJTYIELD_STMT); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { yield_expr(); } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //Change in Python 3.3: yield from 'xxx' //yield_expr: 'yield' [yield_arg] final public void yield_expr() throws ParseException { /*@bgen(jjtree) yield_expr */ SimpleNode jjtn000 = builder.openNode(JJTYIELD_EXPR); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); Token spStr; boolean isYieldFrom = false; try { spStr = jj_consume_token(YIELD); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case NOT: case NOT_BOOL: case LAMBDA: case FROM: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: isYieldFrom = yield_arg(); break; default: jj_la1[48] = jj_gen; ; } jjtree.closeNodeScope(jjtn000, true); jjtc000 = false; jjtreeCloseNodeScope(jjtn000); Yield yield = (Yield) this.grammarActions.addToPeek(spStr, false, Yield.class); if (yield != null) { yield.yield_from = isYieldFrom; } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //yield_arg: 'from' test | testlist final public boolean yield_arg() throws ParseException { boolean isYieldFrom; switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case FROM: jj_consume_token(FROM); grammarActions.addSpecialToken(" from "); isYieldFrom = true; test(); break; case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case NOT: case NOT_BOOL: case LAMBDA: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: SmartTestList(); isYieldFrom = false; break; default: jj_la1[49] = jj_gen; jj_consume_token(-1); throw new ParseException(); } { if (true) return isYieldFrom; } throw new Error("Missing return statement in function"); } //raise_stmt: 'raise' [test ['from' test]] final public void raise_stmt() throws ParseException { /*@bgen(jjtree) raise_stmt */ SimpleNode jjtn000 = builder.openNode(JJTRAISE_STMT); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { temporaryToken = grammarActions.createSpecialStr("raise"); jj_consume_token(RAISE); grammarActions.addSpecialToken(temporaryToken, STRATEGY_BEFORE_NEXT); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case NOT: case NOT_BOOL: case LAMBDA: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: test(); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case FROM: grammarActions.addSpecialToken(" from "); jj_consume_token(FROM); test(); break; default: jj_la1[50] = jj_gen; ; } break; default: jj_la1[51] = jj_gen; ; } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //import_stmt: 'import' dotted_name (',' dotted_name)* | 'from' dotted_name 'import' ('*' | NAME (',' NAME)*) final public void import_stmt() throws ParseException { Import imp; Object spStr; try { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case IMPORT: spStr = jj_consume_token(IMPORT); imp = Import(); if (imp != null) { imp.addSpecial(spStr, false); } break; case FROM: temporaryToken = grammarActions.createSpecialStr("from"); jj_consume_token(FROM); grammarActions.addSpecialToken(temporaryToken, STRATEGY_BEFORE_NEXT); ImportFrom(); break; default: jj_la1[52] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } catch (ParseException e) { handleErrorInImport(e); } } final public Import Import() throws ParseException { /*@bgen(jjtree) Import */ SimpleNode jjtn000 = builder.openNode(JJTIMPORT); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { dotted_as_name(); label_12: while (true) { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case COMMA: ; break; default: jj_la1[53] = jj_gen; break label_12; } grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); dotted_as_name(); } jjtree.closeNodeScope(jjtn000, true); jjtc000 = false; jjtreeCloseNodeScope(jjtn000); { if (true) return (Import) jjtree.peekNode(); } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } throw new Error("Missing return statement in function"); } //import_from: ('from' ('.'* dotted_name | '.'+) // 'import' ('*' | '(' import_as_names ')' | import_as_names)) final public void ImportFrom() throws ParseException { /*@bgen(jjtree) ImportFrom */ SimpleNode jjtn000 = builder.openNode(JJTIMPORTFROM); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); int level = 0; int state = 0; String fromName = null; String importName = null; try { label_13: while (true) { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case DOT: ; break; default: jj_la1[54] = jj_gen; break label_13; } jj_consume_token(DOT); level++; } switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case NAME: fromName = dotted_name(); break; default: jj_la1[55] = jj_gen; ; } if (fromName == null && level == 0) { { if (true) throw new ParseException("Expecting to find '.' or name in import."); } } grammarActions.findTokenAndAdd("import"); jj_consume_token(IMPORT); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case MULTIPLY: jj_consume_token(MULTIPLY); grammarActions.addSpecialToken("*", STRATEGY_ADD_AFTER_PREV); break; case NAME: importName = import_as_name(); if (fromName != null && fromName.equals("__future__")) handleFutureImports(importName); label_14: while (true) { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case COMMA: ; break; default: jj_la1[56] = jj_gen; break label_14; } grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); importName = import_as_name(); if (fromName != null && fromName.equals("__future__")) handleFutureImports(importName); } break; case LPAREN: temporaryToken = grammarActions.createSpecialStr("("); jj_consume_token(LPAREN); grammarActions.addSpecialToken(temporaryToken, STRATEGY_BEFORE_NEXT); importName = import_as_name(); if (fromName != null && fromName.equals("__future__")) handleFutureImports(importName); label_15: while (true) { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case COMMA: ; break; default: jj_la1[57] = jj_gen; break label_15; } if (state != 0) { { if (true) throw new ParseException("Invalid syntax: 2 commas cannot be grouped.", getToken(1)); } } state = 1; grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case NAME: state = 0; importName = import_as_name(); if (fromName != null && fromName.equals("__future__")) handleFutureImports(importName); break; default: jj_la1[58] = jj_gen; ; } } try { grammarActions.findTokenAndAdd(")"); jj_consume_token(RPAREN); } catch (ParseException e) { handleRParensNearButNotCurrent(e); } break; default: jj_la1[59] = jj_gen; jj_consume_token(-1); throw new ParseException(); } jjtree.closeNodeScope(jjtn000, true); jjtc000 = false; jjtreeCloseNodeScope(jjtn000); grammarActions.setImportFromLevel(level); } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //dotted_as_name: dotted_name [NAME NAME] final public void dotted_as_name() throws ParseException { /*@bgen(jjtree) dotted_as_name */ SimpleNode jjtn000 = builder.openNode(JJTDOTTED_AS_NAME); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { dotted_name(); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case AS: grammarActions.findTokenAndAdd("as"); jj_consume_token(AS); Name(); break; default: jj_la1[60] = jj_gen; ; } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //dotted_name: NAME ('.' NAME)* final public String dotted_name() throws ParseException { /*@bgen(jjtree) dotted_name */ SimpleNode jjtn000 = builder.openNode(JJTDOTTED_NAME); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); Token t; FastStringBuffer sb = dottedNameStringBuffer.clear(); try { t = Name(); sb.append(t.image); label_16: while (true) { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case DOT: ; break; default: jj_la1[61] = jj_gen; break label_16; } jj_consume_token(DOT); t = Name(); sb.append(".").append(t.image); } jjtree.closeNodeScope(jjtn000, true); jjtc000 = false; jjtreeCloseNodeScope(jjtn000); { if (true) return sb.toString(); } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } throw new Error("Missing return statement in function"); } //import_as_name: NAME [NAME NAME] final public String import_as_name() throws ParseException { /*@bgen(jjtree) import_as_name */ SimpleNode jjtn000 = builder.openNode(JJTIMPORT_AS_NAME); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); Token t; try { t = Name(); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case AS: grammarActions.findTokenAndAdd("as"); jj_consume_token(AS); Name(); break; default: jj_la1[62] = jj_gen; ; } jjtree.closeNodeScope(jjtn000, true); jjtc000 = false; jjtreeCloseNodeScope(jjtn000); { if (true) return t.image; } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } throw new Error("Missing return statement in function"); } //global_stmt: 'global' NAME (',' NAME)* final public void global_stmt() throws ParseException { /*@bgen(jjtree) global_stmt */ SimpleNode jjtn000 = builder.openNode(JJTGLOBAL_STMT); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { temporaryToken = jj_consume_token(GLOBAL); grammarActions.addSpecialToken(temporaryToken, STRATEGY_BEFORE_NEXT); Name(); label_17: while (true) { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case COMMA: ; break; default: jj_la1[63] = jj_gen; break label_17; } grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); Name(); } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //nonlocal_stmt: 'nonlocal' NAME (',' NAME)* [','] ['=' testlist] final public void nonlocal_stmt() throws ParseException { /*@bgen(jjtree) nonlocal_stmt */ SimpleNode jjtn000 = builder.openNode(JJTNONLOCAL_STMT); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { jj_consume_token(NONLOCAL); grammarActions.addSpecialToken("nonlocal ", STRATEGY_BEFORE_NEXT); Name(); label_18: while (true) { if (jj_2_14(2)) { ; } else { break label_18; } grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); Name(); } switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case COMMA: grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); break; default: jj_la1[64] = jj_gen; ; } switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case EQUAL: temporaryToken = grammarActions.createSpecialStr("="); jj_consume_token(EQUAL); grammarActions.addSpecialToken(temporaryToken, STRATEGY_BEFORE_NEXT); testlist(); break; default: jj_la1[65] = jj_gen; ; } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //assert_stmt: 'assert' test [',' test] final public void assert_stmt() throws ParseException { /*@bgen(jjtree) assert_stmt */ SimpleNode jjtn000 = builder.openNode(JJTASSERT_STMT); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { test(); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case COMMA: grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); test(); break; default: jj_la1[66] = jj_gen; ; } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //compound_stmt: if_stmt | while_stmt | for_stmt | try_stmt | with_stmt | funcdef | classdef final public void compound_stmt() throws ParseException { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case IF: if_stmt(); break; case WHILE: while_stmt(); break; case FOR: for_stmt(); break; case TRY: try_stmt(); break; case WITH: with_stmt(); break; case DEF: funcdef(); break; case CLASS: classdef(); break; case AT: decorated(); break; default: jj_la1[67] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } //if_stmt: 'if' test ':' suite ('elif' test ':' suite)* ['else' ':' suite] final public void if_stmt() throws ParseException { /*@bgen(jjtree) if_stmt */ SimpleNode jjtn000 = builder.openNode(JJTIF_STMT); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); Object[] elseToks; try { temporaryToken = jj_consume_token(IF); this.markLastAsSuiteStart(); grammarActions.addSpecialTokenToLastOpened(temporaryToken); test(); grammarActions.findTokenAndAdd(":"); jj_consume_token(COLON); suite(); label_19: while (true) { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case ELIF: ; break; default: jj_la1[68] = jj_gen; break label_19; } begin_elif_stmt(); test(); grammarActions.findTokenAndAdd(":"); jj_consume_token(COLON); suite(); } switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case ELSE: elseToks = begin_else_stmt(); suite(); grammarActions.addToPeek(elseToks[0], false, Suite.class); grammarActions.addToPeek(elseToks[1], false, Suite.class); break; default: jj_la1[69] = jj_gen; ; } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } final public void begin_elif_stmt() throws ParseException { /*@bgen(jjtree) begin_elif_stmt */ SimpleNode jjtn000 = builder.openNode(JJTBEGIN_ELIF_STMT); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { jj_consume_token(ELIF); jjtree.closeNodeScope(jjtn000, true); jjtc000 = false; jjtreeCloseNodeScope(jjtn000); this.grammarActions.addToPeek("elif", false); } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //while_stmt: 'while' test ':' suite ['else' ':' suite] final public void while_stmt() throws ParseException { /*@bgen(jjtree) while_stmt */ SimpleNode jjtn000 = builder.openNode(JJTWHILE_STMT); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); Object[] elseToks; try { begin_while_stmt(); test(); grammarActions.findTokenAndAdd(":"); jj_consume_token(COLON); suite(); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case ELSE: elseToks = begin_else_stmt(); suite(); grammarActions.addToPeek(elseToks[0], false, Suite.class); grammarActions.addToPeek(elseToks[1], false, Suite.class); break; default: jj_la1[70] = jj_gen; ; } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } final public void begin_while_stmt() throws ParseException { /*@bgen(jjtree) begin_while_stmt */ SimpleNode jjtn000 = builder.openNode(JJTBEGIN_WHILE_STMT); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { temporaryToken = jj_consume_token(WHILE); grammarActions.addSpecialToken(temporaryToken, STRATEGY_BEFORE_NEXT); jjtree.closeNodeScope(jjtn000, true); jjtc000 = false; jjtreeCloseNodeScope(jjtn000); this.markLastAsSuiteStart(); } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } final public Object[] begin_else_stmt() throws ParseException { /*@bgen(jjtree) begin_else_stmt */ SimpleNode jjtn000 = builder.openNode(JJTBEGIN_ELSE_STMT); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); Object o1, o2; try { o1 = jj_consume_token(ELSE); o2 = jj_consume_token(COLON); jjtree.closeNodeScope(jjtn000, true); jjtc000 = false; jjtreeCloseNodeScope(jjtn000); { if (true) return new Object[] { o1, o2 }; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } throw new Error("Missing return statement in function"); } //for_stmt: 'for' exprlist 'in' testlist ':' suite ['else' ':' suite] final public void for_stmt() throws ParseException { /*@bgen(jjtree) for_stmt */ SimpleNode jjtn000 = builder.openNode(JJTFOR_STMT); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { jj_consume_token(FOR); this.markLastAsSuiteStart(); grammarActions.addSpecialTokenToLastOpened("for "); exprlist(); grammarActions.findTokenAndAdd("in"); jj_consume_token(IN); SmartTestList(); grammarActions.findTokenAndAdd(":"); jj_consume_token(COLON); suite(); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case ELSE: begin_for_else_stmt(); suite(); break; default: jj_la1[71] = jj_gen; ; } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } final public void begin_for_else_stmt() throws ParseException { /*@bgen(jjtree) begin_for_else_stmt */ SimpleNode jjtn000 = builder.openNode(JJTBEGIN_FOR_ELSE_STMT); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { jj_consume_token(ELSE); grammarActions.addSpecialToken("else", STRATEGY_BEFORE_NEXT); grammarActions.addSpecialToken(":", STRATEGY_BEFORE_NEXT); jj_consume_token(COLON); } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //try_stmt: ('try' ':' suite (except_clause ':' suite)+ #diagram:break // ['else' ':' suite] | 'try' ':' suite 'finally' ':' suite) final public void try_stmt() throws ParseException { SimpleNode tryNode; int i = 0; begin_try_stmt(); tryNode = (SimpleNode) jjtree.peekNode(); suite(); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case EXCEPT: label_20: while (true) { except_clause(tryNode); i++; switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case EXCEPT: ; break; default: jj_la1[72] = jj_gen; break label_20; } } switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case ELSE: begin_try_else_stmt(); suite(); SimpleNode jjtn001 = builder.openNode(JJTTRYELSE_STMT); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); jjtreeOpenNodeScope(jjtn001); try { jjtree.closeNodeScope(jjtn001, 2); jjtc001 = false; jjtreeCloseNodeScope(jjtn001); i++; } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, 2); jjtreeCloseNodeScope(jjtn001); } } break; default: jj_la1[73] = jj_gen; ; } SimpleNode jjtn003 = builder.openNode(JJTTRY_STMT); boolean jjtc003 = true; jjtree.openNodeScope(jjtn003); jjtreeOpenNodeScope(jjtn003); try { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case FINALLY: begin_finally_stmt(); suite(); SimpleNode jjtn002 = builder.openNode(JJTTRYFINALLY_OUTER_STMT); boolean jjtc002 = true; jjtree.openNodeScope(jjtn002); jjtreeOpenNodeScope(jjtn002); try { jjtree.closeNodeScope(jjtn002, 2); jjtc002 = false; jjtreeCloseNodeScope(jjtn002); i++; } finally { if (jjtc002) { jjtree.closeNodeScope(jjtn002, 2); jjtreeCloseNodeScope(jjtn002); } } break; default: jj_la1[74] = jj_gen; ; } } catch (Throwable jjte003) { if (jjtc003) { jjtree.clearNodeScope(jjtn003); jjtc003 = false; } else { jjtree.popNode(); } if (jjte003 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte003; } } if (jjte003 instanceof ParseException) { { if (true) throw (ParseException) jjte003; } } { if (true) throw (Error) jjte003; } } finally { if (jjtc003) { jjtree.closeNodeScope(jjtn003, i); jjtreeCloseNodeScope(jjtn003); } } break; case FINALLY: begin_finally_stmt(); SimpleNode jjtn004 = builder.openNode(JJTTRYFINALLY_STMT); boolean jjtc004 = true; jjtree.openNodeScope(jjtn004); jjtreeOpenNodeScope(jjtn004); try { suite(); } catch (Throwable jjte004) { if (jjtc004) { jjtree.clearNodeScope(jjtn004); jjtc004 = false; } else { jjtree.popNode(); } if (jjte004 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte004; } } if (jjte004 instanceof ParseException) { { if (true) throw (ParseException) jjte004; } } { if (true) throw (Error) jjte004; } } finally { if (jjtc004) { jjtree.closeNodeScope(jjtn004, jjtree.nodeArity() + 1); jjtreeCloseNodeScope(jjtn004); } } break; default: jj_la1[75] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } //this is the 'try' ':' it is needed because we need that scope closing for getting the specials. final public void begin_try_stmt() throws ParseException { /*@bgen(jjtree) begin_try_stmt */ SimpleNode jjtn000 = builder.openNode(JJTBEGIN_TRY_STMT); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { jj_consume_token(TRY); this.markLastAsSuiteStart(); grammarActions.addSpecialToken("try", STRATEGY_BEFORE_NEXT); grammarActions.addSpecialToken(":", STRATEGY_BEFORE_NEXT); jj_consume_token(COLON); } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } final public void begin_try_else_stmt() throws ParseException { /*@bgen(jjtree) begin_try_else_stmt */ SimpleNode jjtn000 = builder.openNode(JJTBEGIN_TRY_ELSE_STMT); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { jj_consume_token(ELSE); grammarActions.addSpecialToken("else", STRATEGY_BEFORE_NEXT); grammarActions.addSpecialToken(":", STRATEGY_BEFORE_NEXT); jj_consume_token(COLON); } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } final public void begin_finally_stmt() throws ParseException { /*@bgen(jjtree) begin_finally_stmt */ SimpleNode jjtn000 = builder.openNode(JJTBEGIN_FINALLY_STMT); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { jj_consume_token(FINALLY); grammarActions.addSpecialToken("finally", STRATEGY_BEFORE_NEXT); grammarActions.addSpecialToken(":", STRATEGY_BEFORE_NEXT); jj_consume_token(COLON); } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //except_clause: 'except' [test [as test]] final public void except_clause(SimpleNode tryNode) throws ParseException { /*@bgen(jjtree) except_clause */ SimpleNode jjtn000 = builder.openNode(JJTEXCEPT_CLAUSE); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { begin_except_clause(); this.grammarActions.addToPeek("except", false); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case NOT: case NOT_BOOL: case LAMBDA: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: test(); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case AS: grammarActions.findTokenAndAdd("as"); jj_consume_token(AS); test(); break; default: jj_la1[76] = jj_gen; ; } break; default: jj_la1[77] = jj_gen; ; } grammarActions.findTokenAndAdd(":"); jj_consume_token(COLON); suite(); } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } final public void begin_except_clause() throws ParseException { /*@bgen(jjtree) begin_except_clause */ SimpleNode jjtn000 = builder.openNode(JJTBEGIN_EXCEPT_CLAUSE); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { jj_consume_token(EXCEPT); } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //with_stmt: 'with' with_item (',' with_item)* ':' suite final public void with_stmt() throws ParseException { /*@bgen(jjtree) with_stmt */ SimpleNode jjtn000 = builder.openNode(JJTWITH_STMT); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { jj_consume_token(WITH); grammarActions.addSpecialToken("with ", STRATEGY_BEFORE_NEXT); with_item(); label_21: while (true) { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case COMMA: ; break; default: jj_la1[78] = jj_gen; break label_21; } grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); with_item(); } grammarActions.findTokenAndAdd(":"); jj_consume_token(COLON); suite(); } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //with_item: test ['as' expr] final public void with_item() throws ParseException { /*@bgen(jjtree) with_item */ SimpleNode jjtn000 = builder.openNode(JJTWITH_ITEM); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { test(); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case AS: temporaryToken = grammarActions.createSpecialStr("as"); jj_consume_token(AS); grammarActions.addSpecialToken(temporaryToken, STRATEGY_BEFORE_NEXT); expr(); break; default: jj_la1[79] = jj_gen; ; } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //suite: simple_stmt | NEWLINE INDENT stmt+ DEDENT final public void suite() throws ParseException { /*@bgen(jjtree) suite */ SimpleNode jjtn000 = builder.openNode(JJTSUITE); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { try { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case MULTIPLY: case NOT: case NOT_BOOL: case LAMBDA: case PASS: case BREAK: case CONTINUE: case RETURN: case YIELD: case IMPORT: case FROM: case DEL: case RAISE: case GLOBAL: case NONLOCAL: case ASSERT: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: simple_stmt(); break; case NEWLINE: try { try { jj_consume_token(NEWLINE); } catch (ParseException e) { handleNoNewline(e); } jj_consume_token(INDENT); } catch (ParseException e) { handleErrorInIndent(e); } label_22: while (true) { try { stmt(); } catch (ParseException e) { handleErrorInStmt(e); } switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case MULTIPLY: case NOT: case NOT_BOOL: case LAMBDA: case IF: case WHILE: case FOR: case TRY: case DEF: case CLASS: case PASS: case BREAK: case CONTINUE: case RETURN: case YIELD: case IMPORT: case FROM: case DEL: case RAISE: case GLOBAL: case NONLOCAL: case ASSERT: case WITH: case FALSE: case TRUE: case NONE: case AT: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: ; break; default: jj_la1[80] = jj_gen; break label_22; } } try { jj_consume_token(DEDENT); } catch (ParseException e) { handleErrorInDedent(e); } break; case INDENT: jj_consume_token(INDENT); handleNoNewlineInSuiteFound(); label_23: while (true) { try { stmt(); } catch (ParseException e) { handleErrorInStmt(e); } switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case MULTIPLY: case NOT: case NOT_BOOL: case LAMBDA: case IF: case WHILE: case FOR: case TRY: case DEF: case CLASS: case PASS: case BREAK: case CONTINUE: case RETURN: case YIELD: case IMPORT: case FROM: case DEL: case RAISE: case GLOBAL: case NONLOCAL: case ASSERT: case WITH: case FALSE: case TRUE: case NONE: case AT: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: ; break; default: jj_la1[81] = jj_gen; break label_23; } } try { jj_consume_token(DEDENT); } catch (ParseException e) { handleErrorInDedent(e); } break; default: jj_la1[82] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } catch (ParseException e) { handleNoSuiteMatch(e); } catch (EmptySuiteException e) { } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //test: or_test ['if' or_test 'else' test] | lambdef final public void test() throws ParseException { /*@bgen(jjtree) test */ SimpleNode jjtn000 = builder.openNode(JJTTEST); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LAMBDA: lambdef(); break; case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case NOT: case NOT_BOOL: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: or_test(); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case IF: if_exp(); break; default: jj_la1[83] = jj_gen; ; } break; default: jj_la1[84] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //test_nocond: or_test | lambdef_nocond final public void test_nocond() throws ParseException { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case NOT: case NOT_BOOL: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: or_test(); break; case LAMBDA: lambdef_nocond(); break; default: jj_la1[85] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } final public void if_exp() throws ParseException { /*@bgen(jjtree) if_exp */ SimpleNode jjtn000 = builder.openNode(JJTIF_EXP); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { temporaryToken = grammarActions.createSpecialStr("if"); jj_consume_token(IF); grammarActions.addSpecialToken(temporaryToken, STRATEGY_ADD_AFTER_PREV); or_test(); grammarActions.findTokenAndAdd("else"); jj_consume_token(ELSE); test(); } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //or_test: and_test ('or' and_test)* final public void or_test() throws ParseException { /*@bgen(jjtree) #or_boolean(> 1) */ SimpleNode jjtn000 = builder.openNode(JJTOR_BOOLEAN); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { and_test(); label_24: while (true) { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case OR_BOOL: ; break; default: jj_la1[86] = jj_gen; break label_24; } jj_consume_token(OR_BOOL); and_test(); } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, jjtree.nodeArity() > 1); jjtreeCloseNodeScope(jjtn000); } } } //and_test: not_test ('and' not_test)* final public void and_test() throws ParseException { /*@bgen(jjtree) #and_boolean(> 1) */ SimpleNode jjtn000 = builder.openNode(JJTAND_BOOLEAN); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { not_test(); label_25: while (true) { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case AND_BOOL: ; break; default: jj_la1[87] = jj_gen; break label_25; } jj_consume_token(AND_BOOL); not_test(); } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, jjtree.nodeArity() > 1); jjtreeCloseNodeScope(jjtn000); } } } //not_test: 'not' not_test | comparison final public void not_test() throws ParseException { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case NOT_BOOL: jj_consume_token(NOT_BOOL); SimpleNode jjtn001 = builder.openNode(JJTNOT_1OP); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); jjtreeOpenNodeScope(jjtn001); try { not_test(); } catch (Throwable jjte001) { if (jjtc001) { jjtree.clearNodeScope(jjtn001); jjtc001 = false; } else { jjtree.popNode(); } if (jjte001 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte001; } } if (jjte001 instanceof ParseException) { { if (true) throw (ParseException) jjte001; } } { if (true) throw (Error) jjte001; } } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, 1); jjtreeCloseNodeScope(jjtn001); } } break; case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case NOT: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: comparison(); break; default: jj_la1[88] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } //comparison: expr (comp_op expr)* final public void comparison() throws ParseException { SimpleNode jjtn001 = builder.openNode(JJTCOMPARISION); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); jjtreeOpenNodeScope(jjtn001); try { expr(); label_26: while (true) { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case GREATER: case LESS: case EQEQUAL: case EQLESS: case EQGREATER: case NOTEQUAL: case NOT_BOOL: case IS: case IN: ; break; default: jj_la1[89] = jj_gen; break label_26; } comp_op(); expr(); } } catch (Throwable jjte001) { if (jjtc001) { jjtree.clearNodeScope(jjtn001); jjtc001 = false; } else { jjtree.popNode(); } if (jjte001 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte001; } } if (jjte001 instanceof ParseException) { { if (true) throw (ParseException) jjte001; } } { if (true) throw (Error) jjte001; } } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, jjtree.nodeArity() > 2); jjtreeCloseNodeScope(jjtn001); } } } //comp_op: '<'|'>'|'=='|'>='|'<='|'!='|'in'|'not' 'in'|'is'|'is' 'not' final public void comp_op() throws ParseException { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LESS: SimpleNode jjtn001 = builder.openNode(JJTLESS_CMP); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); jjtreeOpenNodeScope(jjtn001); try { jj_consume_token(LESS); } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, 0); jjtreeCloseNodeScope(jjtn001); } } break; case GREATER: SimpleNode jjtn002 = builder.openNode(JJTGREATER_CMP); boolean jjtc002 = true; jjtree.openNodeScope(jjtn002); jjtreeOpenNodeScope(jjtn002); try { jj_consume_token(GREATER); } finally { if (jjtc002) { jjtree.closeNodeScope(jjtn002, 0); jjtreeCloseNodeScope(jjtn002); } } break; case EQEQUAL: SimpleNode jjtn003 = builder.openNode(JJTEQUAL_CMP); boolean jjtc003 = true; jjtree.openNodeScope(jjtn003); jjtreeOpenNodeScope(jjtn003); try { jj_consume_token(EQEQUAL); } finally { if (jjtc003) { jjtree.closeNodeScope(jjtn003, 0); jjtreeCloseNodeScope(jjtn003); } } break; case EQGREATER: SimpleNode jjtn004 = builder.openNode(JJTGREATER_EQUAL_CMP); boolean jjtc004 = true; jjtree.openNodeScope(jjtn004); jjtreeOpenNodeScope(jjtn004); try { jj_consume_token(EQGREATER); } finally { if (jjtc004) { jjtree.closeNodeScope(jjtn004, 0); jjtreeCloseNodeScope(jjtn004); } } break; case EQLESS: SimpleNode jjtn005 = builder.openNode(JJTLESS_EQUAL_CMP); boolean jjtc005 = true; jjtree.openNodeScope(jjtn005); jjtreeOpenNodeScope(jjtn005); try { jj_consume_token(EQLESS); } finally { if (jjtc005) { jjtree.closeNodeScope(jjtn005, 0); jjtreeCloseNodeScope(jjtn005); } } break; case NOTEQUAL: SimpleNode jjtn006 = builder.openNode(JJTNOTEQUAL_CMP); boolean jjtc006 = true; jjtree.openNodeScope(jjtn006); jjtreeOpenNodeScope(jjtn006); try { jj_consume_token(NOTEQUAL); } finally { if (jjtc006) { jjtree.closeNodeScope(jjtn006, 0); jjtreeCloseNodeScope(jjtn006); } } break; case IN: SimpleNode jjtn007 = builder.openNode(JJTIN_CMP); boolean jjtc007 = true; jjtree.openNodeScope(jjtn007); jjtreeOpenNodeScope(jjtn007); try { jj_consume_token(IN); } finally { if (jjtc007) { jjtree.closeNodeScope(jjtn007, 0); jjtreeCloseNodeScope(jjtn007); } } break; case NOT_BOOL: jj_consume_token(NOT_BOOL); SimpleNode jjtn008 = builder.openNode(JJTNOT_IN_CMP); boolean jjtc008 = true; jjtree.openNodeScope(jjtn008); jjtreeOpenNodeScope(jjtn008); try { jj_consume_token(IN); } finally { if (jjtc008) { jjtree.closeNodeScope(jjtn008, 0); jjtreeCloseNodeScope(jjtn008); } } break; default: jj_la1[90] = jj_gen; if (jj_2_15(2)) { jj_consume_token(IS); SimpleNode jjtn009 = builder.openNode(JJTIS_NOT_CMP); boolean jjtc009 = true; jjtree.openNodeScope(jjtn009); jjtreeOpenNodeScope(jjtn009); try { jj_consume_token(NOT_BOOL); } finally { if (jjtc009) { jjtree.closeNodeScope(jjtn009, 0); jjtreeCloseNodeScope(jjtn009); } } } else { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case IS: SimpleNode jjtn010 = builder.openNode(JJTIS_CMP); boolean jjtc010 = true; jjtree.openNodeScope(jjtn010); jjtreeOpenNodeScope(jjtn010); try { jj_consume_token(IS); } finally { if (jjtc010) { jjtree.closeNodeScope(jjtn010, 0); jjtreeCloseNodeScope(jjtn010); } } break; default: jj_la1[91] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } } } //expr: xor_expr ('|' xor_expr)* final public void expr() throws ParseException { xor_expr(); label_27: while (true) { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case OR: ; break; default: jj_la1[92] = jj_gen; break label_27; } jj_consume_token(OR); SimpleNode jjtn001 = builder.openNode(JJTOR_2OP); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); jjtreeOpenNodeScope(jjtn001); try { xor_expr(); } catch (Throwable jjte001) { if (jjtc001) { jjtree.clearNodeScope(jjtn001); jjtc001 = false; } else { jjtree.popNode(); } if (jjte001 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte001; } } if (jjte001 instanceof ParseException) { { if (true) throw (ParseException) jjte001; } } { if (true) throw (Error) jjte001; } } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, 2); jjtreeCloseNodeScope(jjtn001); } } } } //xor_expr: and_expr ('^' and_expr)* final public void xor_expr() throws ParseException { and_expr(); label_28: while (true) { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case XOR: ; break; default: jj_la1[93] = jj_gen; break label_28; } jj_consume_token(XOR); SimpleNode jjtn001 = builder.openNode(JJTXOR_2OP); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); jjtreeOpenNodeScope(jjtn001); try { and_expr(); } catch (Throwable jjte001) { if (jjtc001) { jjtree.clearNodeScope(jjtn001); jjtc001 = false; } else { jjtree.popNode(); } if (jjte001 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte001; } } if (jjte001 instanceof ParseException) { { if (true) throw (ParseException) jjte001; } } { if (true) throw (Error) jjte001; } } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, 2); jjtreeCloseNodeScope(jjtn001); } } } } //and_expr: shift_expr ('&' shift_expr)* final public void and_expr() throws ParseException { shift_expr(); label_29: while (true) { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case AND: ; break; default: jj_la1[94] = jj_gen; break label_29; } jj_consume_token(AND); SimpleNode jjtn001 = builder.openNode(JJTAND_2OP); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); jjtreeOpenNodeScope(jjtn001); try { shift_expr(); } catch (Throwable jjte001) { if (jjtc001) { jjtree.clearNodeScope(jjtn001); jjtc001 = false; } else { jjtree.popNode(); } if (jjte001 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte001; } } if (jjte001 instanceof ParseException) { { if (true) throw (ParseException) jjte001; } } { if (true) throw (Error) jjte001; } } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, 2); jjtreeCloseNodeScope(jjtn001); } } } } //shift_expr: arith_expr (('<<'|'>>') arith_expr)* final public void shift_expr() throws ParseException { arith_expr(); label_30: while (true) { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LSHIFT: case RSHIFT: ; break; default: jj_la1[95] = jj_gen; break label_30; } switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LSHIFT: jj_consume_token(LSHIFT); SimpleNode jjtn001 = builder.openNode(JJTLSHIFT_2OP); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); jjtreeOpenNodeScope(jjtn001); try { arith_expr(); } catch (Throwable jjte001) { if (jjtc001) { jjtree.clearNodeScope(jjtn001); jjtc001 = false; } else { jjtree.popNode(); } if (jjte001 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte001; } } if (jjte001 instanceof ParseException) { { if (true) throw (ParseException) jjte001; } } { if (true) throw (Error) jjte001; } } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, 2); jjtreeCloseNodeScope(jjtn001); } } break; case RSHIFT: jj_consume_token(RSHIFT); SimpleNode jjtn002 = builder.openNode(JJTRSHIFT_2OP); boolean jjtc002 = true; jjtree.openNodeScope(jjtn002); jjtreeOpenNodeScope(jjtn002); try { arith_expr(); } catch (Throwable jjte002) { if (jjtc002) { jjtree.clearNodeScope(jjtn002); jjtc002 = false; } else { jjtree.popNode(); } if (jjte002 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte002; } } if (jjte002 instanceof ParseException) { { if (true) throw (ParseException) jjte002; } } { if (true) throw (Error) jjte002; } } finally { if (jjtc002) { jjtree.closeNodeScope(jjtn002, 2); jjtreeCloseNodeScope(jjtn002); } } break; default: jj_la1[96] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } } //arith_expr: term (('+'|'-') term)* final public void arith_expr() throws ParseException { term(); label_31: while (true) { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case PLUS: case MINUS: ; break; default: jj_la1[97] = jj_gen; break label_31; } switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case PLUS: jj_consume_token(PLUS); SimpleNode jjtn001 = builder.openNode(JJTADD_2OP); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); jjtreeOpenNodeScope(jjtn001); try { term(); } catch (Throwable jjte001) { if (jjtc001) { jjtree.clearNodeScope(jjtn001); jjtc001 = false; } else { jjtree.popNode(); } if (jjte001 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte001; } } if (jjte001 instanceof ParseException) { { if (true) throw (ParseException) jjte001; } } { if (true) throw (Error) jjte001; } } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, 2); jjtreeCloseNodeScope(jjtn001); } } break; case MINUS: jj_consume_token(MINUS); SimpleNode jjtn002 = builder.openNode(JJTSUB_2OP); boolean jjtc002 = true; jjtree.openNodeScope(jjtn002); jjtreeOpenNodeScope(jjtn002); try { term(); } catch (Throwable jjte002) { if (jjtc002) { jjtree.clearNodeScope(jjtn002); jjtc002 = false; } else { jjtree.popNode(); } if (jjte002 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte002; } } if (jjte002 instanceof ParseException) { { if (true) throw (ParseException) jjte002; } } { if (true) throw (Error) jjte002; } } finally { if (jjtc002) { jjtree.closeNodeScope(jjtn002, 2); jjtreeCloseNodeScope(jjtn002); } } break; default: jj_la1[98] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } } //term: factor (('*'|'/'|'%') factor)* final public void term() throws ParseException { factor(); label_32: while (true) { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case MULTIPLY: case DIVIDE: case FLOORDIVIDE: case MODULO: ; break; default: jj_la1[99] = jj_gen; break label_32; } switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case MULTIPLY: jj_consume_token(MULTIPLY); SimpleNode jjtn001 = builder.openNode(JJTMUL_2OP); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); jjtreeOpenNodeScope(jjtn001); try { factor(); } catch (Throwable jjte001) { if (jjtc001) { jjtree.clearNodeScope(jjtn001); jjtc001 = false; } else { jjtree.popNode(); } if (jjte001 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte001; } } if (jjte001 instanceof ParseException) { { if (true) throw (ParseException) jjte001; } } { if (true) throw (Error) jjte001; } } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, 2); jjtreeCloseNodeScope(jjtn001); } } break; case DIVIDE: jj_consume_token(DIVIDE); SimpleNode jjtn002 = builder.openNode(JJTDIV_2OP); boolean jjtc002 = true; jjtree.openNodeScope(jjtn002); jjtreeOpenNodeScope(jjtn002); try { factor(); } catch (Throwable jjte002) { if (jjtc002) { jjtree.clearNodeScope(jjtn002); jjtc002 = false; } else { jjtree.popNode(); } if (jjte002 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte002; } } if (jjte002 instanceof ParseException) { { if (true) throw (ParseException) jjte002; } } { if (true) throw (Error) jjte002; } } finally { if (jjtc002) { jjtree.closeNodeScope(jjtn002, 2); jjtreeCloseNodeScope(jjtn002); } } break; case FLOORDIVIDE: jj_consume_token(FLOORDIVIDE); SimpleNode jjtn003 = builder.openNode(JJTFLOORDIV_2OP); boolean jjtc003 = true; jjtree.openNodeScope(jjtn003); jjtreeOpenNodeScope(jjtn003); try { factor(); } catch (Throwable jjte003) { if (jjtc003) { jjtree.clearNodeScope(jjtn003); jjtc003 = false; } else { jjtree.popNode(); } if (jjte003 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte003; } } if (jjte003 instanceof ParseException) { { if (true) throw (ParseException) jjte003; } } { if (true) throw (Error) jjte003; } } finally { if (jjtc003) { jjtree.closeNodeScope(jjtn003, 2); jjtreeCloseNodeScope(jjtn003); } } break; case MODULO: jj_consume_token(MODULO); SimpleNode jjtn004 = builder.openNode(JJTMOD_2OP); boolean jjtc004 = true; jjtree.openNodeScope(jjtn004); jjtreeOpenNodeScope(jjtn004); try { factor(); } catch (Throwable jjte004) { if (jjtc004) { jjtree.clearNodeScope(jjtn004); jjtc004 = false; } else { jjtree.popNode(); } if (jjte004 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte004; } } if (jjte004 instanceof ParseException) { { if (true) throw (ParseException) jjte004; } } { if (true) throw (Error) jjte004; } } finally { if (jjtc004) { jjtree.closeNodeScope(jjtn004, 2); jjtreeCloseNodeScope(jjtn004); } } break; default: jj_la1[100] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } } //factor: ('+'|'-'|'~') factor | power final public void factor() throws ParseException { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case PLUS: jj_consume_token(PLUS); SimpleNode jjtn001 = builder.openNode(JJTPOS_1OP); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); jjtreeOpenNodeScope(jjtn001); try { factor(); } catch (Throwable jjte001) { if (jjtc001) { jjtree.clearNodeScope(jjtn001); jjtc001 = false; } else { jjtree.popNode(); } if (jjte001 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte001; } } if (jjte001 instanceof ParseException) { { if (true) throw (ParseException) jjte001; } } { if (true) throw (Error) jjte001; } } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, 1); jjtreeCloseNodeScope(jjtn001); } } break; case MINUS: jj_consume_token(MINUS); SimpleNode jjtn002 = builder.openNode(JJTNEG_1OP); boolean jjtc002 = true; jjtree.openNodeScope(jjtn002); jjtreeOpenNodeScope(jjtn002); try { factor(); } catch (Throwable jjte002) { if (jjtc002) { jjtree.clearNodeScope(jjtn002); jjtc002 = false; } else { jjtree.popNode(); } if (jjte002 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte002; } } if (jjte002 instanceof ParseException) { { if (true) throw (ParseException) jjte002; } } { if (true) throw (Error) jjte002; } } finally { if (jjtc002) { jjtree.closeNodeScope(jjtn002, 1); jjtreeCloseNodeScope(jjtn002); } } break; case NOT: jj_consume_token(NOT); SimpleNode jjtn003 = builder.openNode(JJTINVERT_1OP); boolean jjtc003 = true; jjtree.openNodeScope(jjtn003); jjtreeOpenNodeScope(jjtn003); try { factor(); } catch (Throwable jjte003) { if (jjtc003) { jjtree.clearNodeScope(jjtn003); jjtc003 = false; } else { jjtree.popNode(); } if (jjte003 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte003; } } if (jjte003 instanceof ParseException) { { if (true) throw (ParseException) jjte003; } } { if (true) throw (Error) jjte003; } } finally { if (jjtc003) { jjtree.closeNodeScope(jjtn003, 1); jjtreeCloseNodeScope(jjtn003); } } break; case LPAREN: case LBRACE: case LBRACKET: case DOT: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: power(); break; default: jj_la1[101] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } /*Modified, no recursion*/ //power: atom trailer* ('**' factor)* final public void power() throws ParseException { atom(); label_33: while (true) { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LPAREN: case LBRACKET: case DOT: ; break; default: jj_la1[102] = jj_gen; break label_33; } trailer(); } label_34: while (true) { if (jj_2_16(2)) { ; } else { break label_34; } jj_consume_token(POWER); SimpleNode jjtn001 = builder.openNode(JJTPOW_2OP); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); jjtreeOpenNodeScope(jjtn001); try { factor(); } catch (Throwable jjte001) { if (jjtc001) { jjtree.clearNodeScope(jjtn001); jjtc001 = false; } else { jjtree.popNode(); } if (jjte001 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte001; } } if (jjte001 instanceof ParseException) { { if (true) throw (ParseException) jjte001; } } { if (true) throw (Error) jjte001; } } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, 2); jjtreeCloseNodeScope(jjtn001); } } } } //trailer: '(' [arglist] ')' | '[' subscriptlist ']' | '.' NAME final public void trailer() throws ParseException { Object spStr; Object spStr2; switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LPAREN: SimpleNode jjtn001 = builder.openNode(JJTCALL_OP); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); jjtreeOpenNodeScope(jjtn001); try { spStr = grammarActions.createSpecialStr("(", false); jj_consume_token(LPAREN); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case MULTIPLY: case POWER: case NOT: case NOT_BOOL: case LAMBDA: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: arglist(); break; default: jj_la1[103] = jj_gen; ; } jj_consume_token(RPAREN); jjtree.closeNodeScope(jjtn001, jjtree.nodeArity() + 1); jjtc001 = false; jjtreeCloseNodeScope(jjtn001); spStr2 = grammarActions.createSpecialStr(")", false); } catch (Throwable jjte001) { if (jjtc001) { jjtree.clearNodeScope(jjtn001); jjtc001 = false; } else { jjtree.popNode(); } if (jjte001 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte001; } } if (jjte001 instanceof ParseException) { { if (true) throw (ParseException) jjte001; } } { if (true) throw (Error) jjte001; } } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, jjtree.nodeArity() + 1); jjtreeCloseNodeScope(jjtn001); } } grammarActions.addToPeekCallFunc(spStr, true); grammarActions.addToPeek(spStr2, true); break; case LBRACKET: SimpleNode jjtn002 = builder.openNode(JJTINDEX_OP); boolean jjtc002 = true; jjtree.openNodeScope(jjtn002); jjtreeOpenNodeScope(jjtn002); try { spStr = grammarActions.createSpecialStr("[", false); jj_consume_token(LBRACKET); subscriptlist(); jj_consume_token(RBRACKET); jjtree.closeNodeScope(jjtn002, 2); jjtc002 = false; jjtreeCloseNodeScope(jjtn002); spStr2 = grammarActions.createSpecialStr("]", false); } catch (Throwable jjte002) { if (jjtc002) { jjtree.clearNodeScope(jjtn002); jjtc002 = false; } else { jjtree.popNode(); } if (jjte002 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte002; } } if (jjte002 instanceof ParseException) { { if (true) throw (ParseException) jjte002; } } { if (true) throw (Error) jjte002; } } finally { if (jjtc002) { jjtree.closeNodeScope(jjtn002, 2); jjtreeCloseNodeScope(jjtn002); } } grammarActions.addToPeek(spStr, false); grammarActions.addToPeek(spStr2, true); break; case DOT: jj_consume_token(DOT); SimpleNode jjtn003 = builder.openNode(JJTDOT_OP); boolean jjtc003 = true; jjtree.openNodeScope(jjtn003); jjtreeOpenNodeScope(jjtn003); try { Name(); } catch (Throwable jjte003) { if (jjtc003) { jjtree.clearNodeScope(jjtn003); jjtc003 = false; } else { jjtree.popNode(); } if (jjte003 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte003; } } if (jjte003 instanceof ParseException) { { if (true) throw (ParseException) jjte003; } } { if (true) throw (Error) jjte003; } } finally { if (jjtc003) { jjtree.closeNodeScope(jjtn003, 2); jjtreeCloseNodeScope(jjtn003); } } break; default: jj_la1[104] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } //atom: ('(' [yield_expr|testlist_comp] ')' | // '[' [testlist_comp] ']' | // '{' [dictorsetmaker] '}' | // NAME | NUMBER | STRING+ | '...' | 'None' | 'True' | 'False') final public void atom() throws ParseException { Object spStr; Object spStr2; if (jj_2_17(2)) { SimpleNode jjtn001 = builder.openNode(JJTTUPLE); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); jjtreeOpenNodeScope(jjtn001); try { spStr = grammarActions.createSpecialStr("(", false); jj_consume_token(LPAREN); spStr2 = grammarActions.createSpecialStr(")", false); jj_consume_token(RPAREN); } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, true); jjtreeCloseNodeScope(jjtn001); } } grammarActions.addToPeek(spStr, false); grammarActions.addToPeek(spStr2, true); } else if (jj_2_18(2)) { SimpleNode jjtn002 = builder.openNode(JJTTUPLE); boolean jjtc002 = true; jjtree.openNodeScope(jjtn002); jjtreeOpenNodeScope(jjtn002); try { spStr = grammarActions.createSpecialStr("(", false); jj_consume_token(LPAREN); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case YIELD: yield_expr(); break; case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case NOT: case NOT_BOOL: case LAMBDA: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: testlist_comp(); break; default: jj_la1[105] = jj_gen; jj_consume_token(-1); throw new ParseException(); } spStr2 = grammarActions.createSpecialStr(")", false); jj_consume_token(RPAREN); } catch (Throwable jjte002) { if (jjtc002) { jjtree.clearNodeScope(jjtn002); jjtc002 = false; } else { jjtree.popNode(); } if (jjte002 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte002; } } if (jjte002 instanceof ParseException) { { if (true) throw (ParseException) jjte002; } } { if (true) throw (Error) jjte002; } } finally { if (jjtc002) { jjtree.closeNodeScope(jjtn002, true); jjtreeCloseNodeScope(jjtn002); } } grammarActions.addToPeek(spStr, false); grammarActions.addToPeek(spStr2, true); } else { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LBRACKET: SimpleNode jjtn003 = builder.openNode(JJTLIST); boolean jjtc003 = true; jjtree.openNodeScope(jjtn003); jjtreeOpenNodeScope(jjtn003); try { spStr = grammarActions.createSpecialStr("[", false); jj_consume_token(LBRACKET); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case NOT: case NOT_BOOL: case LAMBDA: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: testlist_comp(); break; default: jj_la1[106] = jj_gen; ; } spStr2 = grammarActions.createSpecialStr("]", false); jj_consume_token(RBRACKET); } catch (Throwable jjte003) { if (jjtc003) { jjtree.clearNodeScope(jjtn003); jjtc003 = false; } else { jjtree.popNode(); } if (jjte003 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte003; } } if (jjte003 instanceof ParseException) { { if (true) throw (ParseException) jjte003; } } { if (true) throw (Error) jjte003; } } finally { if (jjtc003) { jjtree.closeNodeScope(jjtn003, true); jjtreeCloseNodeScope(jjtn003); } } grammarActions.addToPeek(spStr, false); grammarActions.addToPeek(spStr2, true); break; case LBRACE: SimpleNode jjtn004 = builder.openNode(JJTDICTIONARY); boolean jjtc004 = true; jjtree.openNodeScope(jjtn004); jjtreeOpenNodeScope(jjtn004); try { spStr = grammarActions.createSpecialStr("{", false); jj_consume_token(LBRACE); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case NOT: case NOT_BOOL: case LAMBDA: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: dictorsetmaker(); break; default: jj_la1[107] = jj_gen; ; } spStr2 = grammarActions.createSpecialStr("}", false); jj_consume_token(RBRACE); } catch (Throwable jjte004) { if (jjtc004) { jjtree.clearNodeScope(jjtn004); jjtc004 = false; } else { jjtree.popNode(); } if (jjte004 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte004; } } if (jjte004 instanceof ParseException) { { if (true) throw (ParseException) jjte004; } } { if (true) throw (Error) jjte004; } } finally { if (jjtc004) { jjtree.closeNodeScope(jjtn004, true); jjtreeCloseNodeScope(jjtn004); } } grammarActions.addToPeek(spStr, false); grammarActions.addToPeek(spStr2, true); break; case FALSE: SimpleNode jjtn005 = builder.openNode(JJTFALSE); boolean jjtc005 = true; jjtree.openNodeScope(jjtn005); jjtreeOpenNodeScope(jjtn005); try { jj_consume_token(FALSE); } finally { if (jjtc005) { jjtree.closeNodeScope(jjtn005, true); jjtreeCloseNodeScope(jjtn005); } } break; case TRUE: SimpleNode jjtn006 = builder.openNode(JJTTRUE); boolean jjtc006 = true; jjtree.openNodeScope(jjtn006); jjtreeOpenNodeScope(jjtn006); try { jj_consume_token(TRUE); } finally { if (jjtc006) { jjtree.closeNodeScope(jjtn006, true); jjtreeCloseNodeScope(jjtn006); } } break; case NONE: SimpleNode jjtn007 = builder.openNode(JJTNONE); boolean jjtc007 = true; jjtree.openNodeScope(jjtn007); jjtreeOpenNodeScope(jjtn007); try { jj_consume_token(NONE); } finally { if (jjtc007) { jjtree.closeNodeScope(jjtn007, true); jjtreeCloseNodeScope(jjtn007); } } break; case DOT: SimpleNode jjtn008 = builder.openNode(JJTELLIPSIS_AS_NAME); boolean jjtc008 = true; jjtree.openNodeScope(jjtn008); jjtreeOpenNodeScope(jjtn008); try { jj_consume_token(DOT); jj_consume_token(DOT); jj_consume_token(DOT); } finally { if (jjtc008) { jjtree.closeNodeScope(jjtn008, true); jjtreeCloseNodeScope(jjtn008); } } break; case NAME: Name(); break; case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: Number(); break; case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: String(); label_35: while (true) { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: ; break; default: jj_la1[108] = jj_gen; break label_35; } SimpleNode jjtn009 = builder.openNode(JJTSTRJOIN); boolean jjtc009 = true; jjtree.openNodeScope(jjtn009); jjtreeOpenNodeScope(jjtn009); try { String(); } catch (Throwable jjte009) { if (jjtc009) { jjtree.clearNodeScope(jjtn009); jjtc009 = false; } else { jjtree.popNode(); } if (jjte009 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte009; } } if (jjte009 instanceof ParseException) { { if (true) throw (ParseException) jjte009; } } { if (true) throw (Error) jjte009; } } finally { if (jjtc009) { jjtree.closeNodeScope(jjtn009, 2); jjtreeCloseNodeScope(jjtn009); } } } break; default: jj_la1[109] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } } //lambdef: 'lambda' [varargslist] ':' test //we add the colon to the args if there is some argument... otherwise, we add it to the first token that appears on the test final public void lambdef() throws ParseException { /*@bgen(jjtree) lambdef */ SimpleNode jjtn000 = builder.openNode(JJTLAMBDEF); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); boolean hasArgs = false; try { jj_consume_token(LAMBDA); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LPAREN: case MULTIPLY: case POWER: case NAME: varargslist(); hasArgs = true; break; default: jj_la1[110] = jj_gen; ; } temporaryToken = grammarActions.createSpecialStr(":"); jj_consume_token(COLON); if (hasArgs) grammarActions.addSpecialToken(temporaryToken); else grammarActions.addSpecialToken(temporaryToken, STRATEGY_BEFORE_NEXT); test(); } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //lambdef_nocond: 'lambda' [varargslist] ':' test_nocond final public void lambdef_nocond() throws ParseException { /*@bgen(jjtree) lambdef_nocond */ SimpleNode jjtn000 = builder.openNode(JJTLAMBDEF_NOCOND); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); boolean hasArgs = false; try { jj_consume_token(LAMBDA); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LPAREN: case MULTIPLY: case POWER: case NAME: varargslist(); hasArgs = true; break; default: jj_la1[111] = jj_gen; ; } temporaryToken = grammarActions.createSpecialStr(":"); jj_consume_token(COLON); if (hasArgs) grammarActions.addSpecialToken(temporaryToken); else grammarActions.addSpecialToken(temporaryToken, STRATEGY_BEFORE_NEXT); test_nocond(); } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //subscriptlist: subscript (',' subscript)* [','] final public void subscriptlist() throws ParseException { SimpleNode jjtn001 = builder.openNode(JJTSUBSCRIPTLIST); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); jjtreeOpenNodeScope(jjtn001); try { subscript(); label_36: while (true) { if (jj_2_19(2)) { ; } else { break label_36; } grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); subscript(); } switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case COMMA: Comma(); break; default: jj_la1[112] = jj_gen; ; } } catch (Throwable jjte001) { if (jjtc001) { jjtree.clearNodeScope(jjtn001); jjtc001 = false; } else { jjtree.popNode(); } if (jjte001 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte001; } } if (jjte001 instanceof ParseException) { { if (true) throw (ParseException) jjte001; } } { if (true) throw (Error) jjte001; } } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, jjtree.nodeArity() > 1); jjtreeCloseNodeScope(jjtn001); } } } //subscript: '.' '.' '.' | test | [test] ':' [test] [sliceop] final public void subscript() throws ParseException { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case DOT: jj_consume_token(DOT); jj_consume_token(DOT); SimpleNode jjtn001 = builder.openNode(JJTELLIPSIS); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); jjtreeOpenNodeScope(jjtn001); try { jj_consume_token(DOT); } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, true); jjtreeCloseNodeScope(jjtn001); } } break; case LPAREN: case LBRACE: case LBRACKET: case PLUS: case MINUS: case NOT: case NOT_BOOL: case LAMBDA: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: SimpleNode jjtn002 = builder.openNode(JJTSLICE); boolean jjtc002 = true; jjtree.openNodeScope(jjtn002); jjtreeOpenNodeScope(jjtn002); try { test(); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case COLON: slice(); break; default: jj_la1[113] = jj_gen; ; } } catch (Throwable jjte002) { if (jjtc002) { jjtree.clearNodeScope(jjtn002); jjtc002 = false; } else { jjtree.popNode(); } if (jjte002 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte002; } } if (jjte002 instanceof ParseException) { { if (true) throw (ParseException) jjte002; } } { if (true) throw (Error) jjte002; } } finally { if (jjtc002) { jjtree.closeNodeScope(jjtn002, true); jjtreeCloseNodeScope(jjtn002); } } break; case COLON: SimpleNode jjtn003 = builder.openNode(JJTSLICE); boolean jjtc003 = true; jjtree.openNodeScope(jjtn003); jjtreeOpenNodeScope(jjtn003); try { slice(); } catch (Throwable jjte003) { if (jjtc003) { jjtree.clearNodeScope(jjtn003); jjtc003 = false; } else { jjtree.popNode(); } if (jjte003 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte003; } } if (jjte003 instanceof ParseException) { { if (true) throw (ParseException) jjte003; } } { if (true) throw (Error) jjte003; } } finally { if (jjtc003) { jjtree.closeNodeScope(jjtn003, jjtree.nodeArity() > 0); jjtreeCloseNodeScope(jjtn003); } } break; default: jj_la1[114] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } //sliceop: ':' [test] final public void slice() throws ParseException { Colon(); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case NOT: case NOT_BOOL: case LAMBDA: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: test(); break; default: jj_la1[115] = jj_gen; ; } switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case COLON: Colon(); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case NOT: case NOT_BOOL: case LAMBDA: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: test(); break; default: jj_la1[116] = jj_gen; ; } break; default: jj_la1[117] = jj_gen; ; } } final public void Colon() throws ParseException { /*@bgen(jjtree) Colon */ SimpleNode jjtn000 = builder.openNode(JJTCOLON); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { grammarActions.addSpecialToken(grammarActions.createSpecialStr(":", false), STRATEGY_BEFORE_NEXT); jj_consume_token(COLON); } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } final public void Comma() throws ParseException { /*@bgen(jjtree) Comma */ SimpleNode jjtn000 = builder.openNode(JJTCOMMA); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { jj_consume_token(COMMA); } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //exprlist: expr (',' expr)* [','] final public void exprlist() throws ParseException { SimpleNode jjtn001 = builder.openNode(JJTTUPLE); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); jjtreeOpenNodeScope(jjtn001); try { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case NOT: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: expr(); break; case MULTIPLY: star_expr(); break; default: jj_la1[118] = jj_gen; jj_consume_token(-1); throw new ParseException(); } label_37: while (true) { if (jj_2_20(2)) { ; } else { break label_37; } grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case NOT: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: expr(); break; case MULTIPLY: star_expr(); break; default: jj_la1[119] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case COMMA: Comma(); break; default: jj_la1[120] = jj_gen; ; } } catch (Throwable jjte001) { if (jjtc001) { jjtree.clearNodeScope(jjtn001); jjtc001 = false; } else { jjtree.popNode(); } if (jjte001 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte001; } } if (jjte001 instanceof ParseException) { { if (true) throw (ParseException) jjte001; } } { if (true) throw (Error) jjte001; } } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, jjtree.nodeArity() > 1); jjtreeCloseNodeScope(jjtn001); } } } //testlist: test (',' test)* [','] final public void SmartTestList() throws ParseException { SimpleNode jjtn001 = builder.openNode(JJTTUPLE); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); jjtreeOpenNodeScope(jjtn001); try { test(); label_38: while (true) { if (jj_2_21(2)) { ; } else { break label_38; } grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); test(); } switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case COMMA: Comma(); break; default: jj_la1[121] = jj_gen; ; } } catch (Throwable jjte001) { if (jjtc001) { jjtree.clearNodeScope(jjtn001); jjtc001 = false; } else { jjtree.popNode(); } if (jjte001 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte001; } } if (jjte001 instanceof ParseException) { { if (true) throw (ParseException) jjte001; } } { if (true) throw (Error) jjte001; } } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, jjtree.nodeArity() > 1); jjtreeCloseNodeScope(jjtn001); } } } //testlist: test (',' test)* [','] final public void testlist() throws ParseException { test(); label_39: while (true) { if (jj_2_22(2)) { ; } else { break label_39; } grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); test(); } switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case COMMA: grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); break; default: jj_la1[122] = jj_gen; ; } } //testlist_star_expr: test (',' test)* [','] final public void testlist_star_expr() throws ParseException { SimpleNode jjtn001 = builder.openNode(JJTTUPLE); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); jjtreeOpenNodeScope(jjtn001); try { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case NOT: case NOT_BOOL: case LAMBDA: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: test(); break; case MULTIPLY: star_expr(); break; default: jj_la1[123] = jj_gen; jj_consume_token(-1); throw new ParseException(); } label_40: while (true) { if (jj_2_23(2)) { ; } else { break label_40; } grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case NOT: case NOT_BOOL: case LAMBDA: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: test(); break; case MULTIPLY: star_expr(); break; default: jj_la1[124] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case COMMA: Comma(); break; default: jj_la1[125] = jj_gen; ; } } catch (Throwable jjte001) { if (jjtc001) { jjtree.clearNodeScope(jjtn001); jjtc001 = false; } else { jjtree.popNode(); } if (jjte001 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte001; } } if (jjte001 instanceof ParseException) { { if (true) throw (ParseException) jjte001; } } { if (true) throw (Error) jjte001; } } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, jjtree.nodeArity() > 1); jjtreeCloseNodeScope(jjtn001); } } } final public void star_expr() throws ParseException { /*@bgen(jjtree) star_expr */ SimpleNode jjtn000 = builder.openNode(JJTSTAR_EXPR); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { jj_consume_token(MULTIPLY); grammarActions.addSpecialToken("*", STRATEGY_BEFORE_NEXT); expr(); } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //dictorsetmaker: ( // (test ':' test (comp_for | (',' test ':' test)* [','])) // |(test (comp_for | (',' test)* [','])) // ) final public void dictorsetmaker() throws ParseException { test(); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case COLON: grammarActions.findTokenAndAdd(":"); jj_consume_token(COLON); try { test(); } catch (ParseException e) { handleNoValInDict(e); } switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case FOR: comp_for(); break; default: jj_la1[127] = jj_gen; label_41: while (true) { if (jj_2_24(2)) { ; } else { break label_41; } grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); test(); grammarActions.findTokenAndAdd(":"); jj_consume_token(COLON); test(); } switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case COMMA: grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); break; default: jj_la1[126] = jj_gen; ; } } break; default: jj_la1[130] = jj_gen; if (jj_2_25(2)) { comp_for(); } else { SimpleNode jjtn001 = builder.openNode(JJTSET); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); jjtreeOpenNodeScope(jjtn001); try { label_42: while (true) { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case COMMA: ; break; default: jj_la1[128] = jj_gen; break label_42; } grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case NOT: case NOT_BOOL: case LAMBDA: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: test(); break; default: jj_la1[129] = jj_gen; ; } } } catch (Throwable jjte001) { if (jjtc001) { jjtree.clearNodeScope(jjtn001); jjtc001 = false; } else { jjtree.popNode(); } if (jjte001 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte001; } } if (jjte001 instanceof ParseException) { { if (true) throw (ParseException) jjte001; } } { if (true) throw (Error) jjte001; } } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, true); jjtreeCloseNodeScope(jjtn001); } } } } } //testlist_comp: test ( comp_for | (',' test)* [','] ) final public void testlist_comp() throws ParseException { test(); if (jj_2_27(2)) { label_43: while (true) { comp_for(); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case FOR: ; break; default: jj_la1[131] = jj_gen; break label_43; } } } else { label_44: while (true) { if (jj_2_26(2)) { ; } else { break label_44; } grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); test(); } SimpleNode jjtn001 = builder.openNode(JJTTUPLE); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); jjtreeOpenNodeScope(jjtn001); try { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case COMMA: Comma(); break; default: jj_la1[132] = jj_gen; ; } } catch (Throwable jjte001) { if (jjtc001) { jjtree.clearNodeScope(jjtn001); jjtc001 = false; } else { jjtree.popNode(); } if (jjte001 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte001; } } if (jjte001 instanceof ParseException) { { if (true) throw (ParseException) jjte001; } } { if (true) throw (Error) jjte001; } } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, jjtree.nodeArity() > 1); jjtreeCloseNodeScope(jjtn001); } } } } //comp_iter: [comp_for | comp_if] final public void comp_iter() throws ParseException { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case FOR: comp_for(); break; case IF: comp_if(); break; default: jj_la1[133] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } //comp_for: 'for' exprlist 'in' or_test [comp_iter] final public void comp_for() throws ParseException { /*@bgen(jjtree) comp_for */ SimpleNode jjtn000 = builder.openNode(JJTCOMP_FOR); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { grammarActions.findTokenAndAdd("for"); jj_consume_token(FOR); exprlist(); grammarActions.findTokenAndAdd("in"); jj_consume_token(IN); or_test(); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case IF: case FOR: comp_iter(); break; default: jj_la1[134] = jj_gen; ; } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //comp_if: 'if' test_nocond [comp_iter] final public void comp_if() throws ParseException { grammarActions.findTokenAndAdd("if"); jj_consume_token(IF); test_nocond(); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case IF: case FOR: comp_iter(); break; default: jj_la1[135] = jj_gen; ; } } //decorated: decorators (classdef | funcdef) final public void decorated() throws ParseException { /*@bgen(jjtree) decorated */ SimpleNode jjtn000 = builder.openNode(JJTDECORATED); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { decorators(); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case CLASS: classdef(); break; case DEF: funcdef(); break; default: jj_la1[136] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //classdef: 'class' NAME ['(' [arglist] ')'] ':' suite final public void classdef() throws ParseException { /*@bgen(jjtree) classdef */ SimpleNode jjtn000 = builder.openNode(JJTCLASSDEF); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); Token spStr; Token spStr2; try { jj_consume_token(CLASS); this.markLastAsSuiteStart(); Name(); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LPAREN: temporaryToken = grammarActions.createSpecialStr("("); jj_consume_token(LPAREN); grammarActions.addSpecialToken(temporaryToken, STRATEGY_ADD_AFTER_PREV); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case MULTIPLY: case POWER: case NOT: case NOT_BOOL: case LAMBDA: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: arglist(); break; default: jj_la1[137] = jj_gen; ; } try { grammarActions.findTokenAndAdd(")"); jj_consume_token(RPAREN); } catch (ParseException e) { handleRParensNearButNotCurrent(e); } break; default: jj_la1[138] = jj_gen; ; } grammarActions.findTokenAndAdd(":"); jj_consume_token(COLON); suite(); } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //arglist: (argument ',')* (argument [','] // |'*' test (',' argument)* [',' '**' test] // |'**' test) final public void arglist() throws ParseException { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case LPAREN: case LBRACE: case LBRACKET: case DOT: case PLUS: case MINUS: case NOT: case NOT_BOOL: case LAMBDA: case FALSE: case TRUE: case NONE: case NAME: case DECNUMBER: case HEXNUMBER: case OCTNUMBER: case BINNUMBER: case FLOAT: case COMPLEX: case SINGLE_STRING: case SINGLE_STRING2: case TRIPLE_STRING: case TRIPLE_STRING2: case SINGLE_BSTRING: case SINGLE_BSTRING2: case TRIPLE_BSTRING: case TRIPLE_BSTRING2: argument(); label_45: while (true) { if (jj_2_28(2)) { ; } else { break label_45; } grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); argument(); } if (jj_2_30(2)) { grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case MULTIPLY: ExtraArgValueList(); label_46: while (true) { if (jj_2_29(2)) { ; } else { break label_46; } grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); argument(); } switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case COMMA: grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); ExtraKeywordValueList(); break; default: jj_la1[139] = jj_gen; ; } break; case POWER: ExtraKeywordValueList(); break; default: jj_la1[140] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } else { ; } switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case COMMA: grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); break; default: jj_la1[141] = jj_gen; ; } break; case MULTIPLY: ExtraArgValueList(); label_47: while (true) { if (jj_2_31(2)) { ; } else { break label_47; } grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); argument(); } if (jj_2_32(2)) { grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); ExtraKeywordValueList(); } else { ; } switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case COMMA: grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); break; default: jj_la1[142] = jj_gen; ; } break; case POWER: ExtraKeywordValueList(); switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case COMMA: grammarActions.findTokenAndAdd(","); jj_consume_token(COMMA); break; default: jj_la1[143] = jj_gen; ; } break; default: jj_la1[144] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } final public void ExtraArgValueList() throws ParseException { /*@bgen(jjtree) ExtraArgValueList */ SimpleNode jjtn000 = builder.openNode(JJTEXTRAARGVALUELIST); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { grammarActions.addSpecialToken(grammarActions.createSpecialStr("*", false)); jj_consume_token(MULTIPLY); test(); } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } final public void ExtraKeywordValueList() throws ParseException { /*@bgen(jjtree) ExtraKeywordValueList */ SimpleNode jjtn000 = builder.openNode(JJTEXTRAKEYWORDVALUELIST); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { grammarActions.addSpecialToken(grammarActions.createSpecialStr("**", false)); jj_consume_token(POWER); test(); } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } //argument: test [comp_for] | test '=' test # Really [keyword '='] test final public void argument() throws ParseException { /*@bgen(jjtree) argument */ SimpleNode jjtn000 = builder.openNode(JJTARGUMENT); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { test(); if (jj_2_33(2)) { Keyword(); } else { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case FOR: comp_for(); break; default: jj_la1[145] = jj_gen; ; } } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } final public void Keyword() throws ParseException { /*@bgen(jjtree) Keyword */ SimpleNode jjtn000 = builder.openNode(JJTKEYWORD); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { grammarActions.findTokenAndAdd("="); jj_consume_token(EQUAL); test(); } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } final public void Number() throws ParseException { /*@bgen(jjtree) Num */ SimpleNode jjtn000 = builder.openNode(JJTNUM); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); Token t; try { switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case HEXNUMBER: t = jj_consume_token(HEXNUMBER); grammarActions.makeIntSub2(t, 16, t, (Num) jjtn000); jjtree.closeNodeScope(jjtn000, true); jjtc000 = false; jjtreeCloseNodeScope(jjtn000); break; case BINNUMBER: t = jj_consume_token(BINNUMBER); grammarActions.makeIntSub2(t, 2, t, (Num) jjtn000); jjtree.closeNodeScope(jjtn000, true); jjtc000 = false; jjtreeCloseNodeScope(jjtn000); break; case OCTNUMBER: t = jj_consume_token(OCTNUMBER); grammarActions.makeIntSub2(t, 8, t, (Num) jjtn000); jjtree.closeNodeScope(jjtn000, true); jjtc000 = false; jjtreeCloseNodeScope(jjtn000); break; case DECNUMBER: t = jj_consume_token(DECNUMBER); grammarActions.makeInt(t, 10, t, (Num) jjtn000); jjtree.closeNodeScope(jjtn000, true); jjtc000 = false; jjtreeCloseNodeScope(jjtn000); break; case FLOAT: t = jj_consume_token(FLOAT); grammarActions.makeFloat(t, (Num) jjtn000); jjtree.closeNodeScope(jjtn000, true); jjtc000 = false; jjtreeCloseNodeScope(jjtn000); break; case COMPLEX: t = jj_consume_token(COMPLEX); grammarActions.makeComplex(t, (Num) jjtn000); jjtree.closeNodeScope(jjtn000, true); jjtc000 = false; jjtreeCloseNodeScope(jjtn000); break; default: jj_la1[146] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } final public void Complex() throws ParseException { /*@bgen(jjtree) Complex */ SimpleNode jjtn000 = builder.openNode(JJTCOMPLEX); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); try { jj_consume_token(FLOAT); } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } } final public Token Name() throws ParseException { /*@bgen(jjtree) Name */ SimpleNode jjtn000 = builder.openNode(JJTNAME); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); jjtreeOpenNodeScope(jjtn000); Token t; try { try { t = jj_consume_token(NAME); } catch (ParseException e) { t = handleErrorInName(e); } ((Name) jjtn000).id = t.image; { if (true) return t; } jjtree.closeNodeScope(jjtn000, true); jjtc000 = false; jjtreeCloseNodeScope(jjtn000); } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); jjtreeCloseNodeScope(jjtn000); } } throw new Error("Missing return statement in function"); } final public void String() throws ParseException { Token t; switch ((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case SINGLE_STRING: SimpleNode jjtn001 = builder.openNode(JJTSTRING); boolean jjtc001 = true; jjtree.openNodeScope(jjtn001); jjtreeOpenNodeScope(jjtn001); try { t = jj_consume_token(SINGLE_STRING); grammarActions.makeString(t, 1, (Str) jjtn001); jjtree.closeNodeScope(jjtn001, true); jjtc001 = false; jjtreeCloseNodeScope(jjtn001); } finally { if (jjtc001) { jjtree.closeNodeScope(jjtn001, true); jjtreeCloseNodeScope(jjtn001); } } break; case SINGLE_STRING2: SimpleNode jjtn002 = builder.openNode(JJTSTRING); boolean jjtc002 = true; jjtree.openNodeScope(jjtn002); jjtreeOpenNodeScope(jjtn002); try { t = jj_consume_token(SINGLE_STRING2); grammarActions.makeString(t, 1, (Str) jjtn002); jjtree.closeNodeScope(jjtn002, true); jjtc002 = false; jjtreeCloseNodeScope(jjtn002); } finally { if (jjtc002) { jjtree.closeNodeScope(jjtn002, true); jjtreeCloseNodeScope(jjtn002); } } break; case TRIPLE_STRING: SimpleNode jjtn003 = builder.openNode(JJTSTRING); boolean jjtc003 = true; jjtree.openNodeScope(jjtn003); jjtreeOpenNodeScope(jjtn003); try { t = jj_consume_token(TRIPLE_STRING); grammarActions.makeString(t, 3, (Str) jjtn003); jjtree.closeNodeScope(jjtn003, true); jjtc003 = false; jjtreeCloseNodeScope(jjtn003); } finally { if (jjtc003) { jjtree.closeNodeScope(jjtn003, true); jjtreeCloseNodeScope(jjtn003); } } break; case TRIPLE_STRING2: SimpleNode jjtn004 = builder.openNode(JJTSTRING); boolean jjtc004 = true; jjtree.openNodeScope(jjtn004); jjtreeOpenNodeScope(jjtn004); try { t = jj_consume_token(TRIPLE_STRING2); grammarActions.makeString(t, 3, (Str) jjtn004); jjtree.closeNodeScope(jjtn004, true); jjtc004 = false; jjtreeCloseNodeScope(jjtn004); } finally { if (jjtc004) { jjtree.closeNodeScope(jjtn004, true); jjtreeCloseNodeScope(jjtn004); } } break; case SINGLE_BSTRING: SimpleNode jjtn005 = builder.openNode(JJTBINARY); boolean jjtc005 = true; jjtree.openNodeScope(jjtn005); jjtreeOpenNodeScope(jjtn005); try { t = jj_consume_token(SINGLE_BSTRING); grammarActions.makeString(t, 1, (Str) jjtn005); jjtree.closeNodeScope(jjtn005, true); jjtc005 = false; jjtreeCloseNodeScope(jjtn005); } finally { if (jjtc005) { jjtree.closeNodeScope(jjtn005, true); jjtreeCloseNodeScope(jjtn005); } } break; case SINGLE_BSTRING2: SimpleNode jjtn006 = builder.openNode(JJTBINARY); boolean jjtc006 = true; jjtree.openNodeScope(jjtn006); jjtreeOpenNodeScope(jjtn006); try { t = jj_consume_token(SINGLE_BSTRING2); grammarActions.makeString(t, 1, (Str) jjtn006); jjtree.closeNodeScope(jjtn006, true); jjtc006 = false; jjtreeCloseNodeScope(jjtn006); } finally { if (jjtc006) { jjtree.closeNodeScope(jjtn006, true); jjtreeCloseNodeScope(jjtn006); } } break; case TRIPLE_BSTRING: SimpleNode jjtn007 = builder.openNode(JJTBINARY); boolean jjtc007 = true; jjtree.openNodeScope(jjtn007); jjtreeOpenNodeScope(jjtn007); try { t = jj_consume_token(TRIPLE_BSTRING); grammarActions.makeString(t, 3, (Str) jjtn007); jjtree.closeNodeScope(jjtn007, true); jjtc007 = false; jjtreeCloseNodeScope(jjtn007); } finally { if (jjtc007) { jjtree.closeNodeScope(jjtn007, true); jjtreeCloseNodeScope(jjtn007); } } break; case TRIPLE_BSTRING2: SimpleNode jjtn008 = builder.openNode(JJTBINARY); boolean jjtc008 = true; jjtree.openNodeScope(jjtn008); jjtreeOpenNodeScope(jjtn008); try { t = jj_consume_token(TRIPLE_BSTRING2); grammarActions.makeString(t, 3, (Str) jjtn008); jjtree.closeNodeScope(jjtn008, true); jjtc008 = false; jjtreeCloseNodeScope(jjtn008); } finally { if (jjtc008) { jjtree.closeNodeScope(jjtn008, true); jjtreeCloseNodeScope(jjtn008); } } break; default: jj_la1[147] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } private boolean jj_2_1(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_1(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(0, xla); } } private boolean jj_2_2(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_2(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(1, xla); } } private boolean jj_2_3(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_3(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(2, xla); } } private boolean jj_2_4(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_4(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(3, xla); } } private boolean jj_2_5(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_5(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(4, xla); } } private boolean jj_2_6(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_6(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(5, xla); } } private boolean jj_2_7(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_7(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(6, xla); } } private boolean jj_2_8(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_8(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(7, xla); } } private boolean jj_2_9(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_9(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(8, xla); } } private boolean jj_2_10(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_10(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(9, xla); } } private boolean jj_2_11(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_11(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(10, xla); } } private boolean jj_2_12(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_12(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(11, xla); } } private boolean jj_2_13(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_13(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(12, xla); } } private boolean jj_2_14(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_14(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(13, xla); } } private boolean jj_2_15(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_15(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(14, xla); } } private boolean jj_2_16(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_16(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(15, xla); } } private boolean jj_2_17(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_17(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(16, xla); } } private boolean jj_2_18(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_18(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(17, xla); } } private boolean jj_2_19(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_19(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(18, xla); } } private boolean jj_2_20(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_20(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(19, xla); } } private boolean jj_2_21(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_21(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(20, xla); } } private boolean jj_2_22(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_22(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(21, xla); } } private boolean jj_2_23(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_23(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(22, xla); } } private boolean jj_2_24(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_24(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(23, xla); } } private boolean jj_2_25(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_25(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(24, xla); } } private boolean jj_2_26(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_26(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(25, xla); } } private boolean jj_2_27(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_27(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(26, xla); } } private boolean jj_2_28(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_28(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(27, xla); } } private boolean jj_2_29(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_29(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(28, xla); } } private boolean jj_2_30(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_30(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(29, xla); } } private boolean jj_2_31(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_31(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(30, xla); } } private boolean jj_2_32(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_32(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(31, xla); } } private boolean jj_2_33(int xla) { jj_la = xla; jj_lastpos = jj_scanpos = token; try { return !jj_3_33(); } catch (LookaheadSuccess ls) { return true; } finally { jj_save(32, xla); } } private boolean jj_3R_148() { if (jj_3R_154()) return true; return false; } private boolean jj_3R_147() { if (jj_3R_153()) return true; return false; } private boolean jj_3R_145() { if (jj_scan_token(DOT)) return true; return false; } private boolean jj_3R_146() { if (jj_3R_61()) return true; return false; } private boolean jj_3R_144() { if (jj_scan_token(NONE)) return true; return false; } private boolean jj_3R_139() { if (jj_scan_token(RAISE)) return true; return false; } private boolean jj_3R_64() { if (jj_3R_99()) return true; return false; } private boolean jj_3R_143() { if (jj_scan_token(TRUE)) return true; return false; } private boolean jj_3R_56() { if (jj_3R_81()) return true; return false; } private boolean jj_3R_142() { if (jj_scan_token(FALSE)) return true; return false; } private boolean jj_3R_141() { if (jj_scan_token(LBRACE)) return true; return false; } private boolean jj_3R_140() { if (jj_scan_token(LBRACKET)) return true; return false; } private boolean jj_3R_63() { if (jj_3R_98()) return true; return false; } private boolean jj_3_2() { if (jj_scan_token(COMMA)) return true; if (jj_3R_49()) return true; return false; } private boolean jj_3_18() { if (jj_scan_token(LPAREN)) return true; Token xsp; xsp = jj_scanpos; if (jj_3R_63()) { jj_scanpos = xsp; if (jj_3R_64()) return true; } return false; } private boolean jj_3R_98() { if (jj_scan_token(YIELD)) return true; return false; } private boolean jj_3_17() { if (jj_scan_token(LPAREN)) return true; if (jj_scan_token(RPAREN)) return true; return false; } private boolean jj_3R_131() { Token xsp; xsp = jj_scanpos; if (jj_3_17()) { jj_scanpos = xsp; if (jj_3_18()) { jj_scanpos = xsp; if (jj_3R_140()) { jj_scanpos = xsp; if (jj_3R_141()) { jj_scanpos = xsp; if (jj_3R_142()) { jj_scanpos = xsp; if (jj_3R_143()) { jj_scanpos = xsp; if (jj_3R_144()) { jj_scanpos = xsp; if (jj_3R_145()) { jj_scanpos = xsp; if (jj_3R_146()) { jj_scanpos = xsp; if (jj_3R_147()) { jj_scanpos = xsp; if (jj_3R_148()) return true; } } } } } } } } } } return false; } private boolean jj_3R_138() { if (jj_3R_98()) return true; return false; } private boolean jj_3R_50() { if (jj_3R_78()) return true; return false; } private boolean jj_3_16() { if (jj_scan_token(POWER)) return true; if (jj_3R_62()) return true; return false; } private boolean jj_3R_152() { if (jj_scan_token(RETURN)) return true; return false; } private boolean jj_3R_137() { if (jj_3R_152()) return true; return false; } private boolean jj_3R_128() { if (jj_3R_139()) return true; return false; } private boolean jj_3R_127() { if (jj_3R_138()) return true; return false; } private boolean jj_3R_126() { if (jj_3R_137()) return true; return false; } private boolean jj_3R_125() { if (jj_scan_token(CONTINUE)) return true; return false; } private boolean jj_3R_112() { Token xsp; xsp = jj_scanpos; if (jj_3R_124()) { jj_scanpos = xsp; if (jj_3R_125()) { jj_scanpos = xsp; if (jj_3R_126()) { jj_scanpos = xsp; if (jj_3R_127()) { jj_scanpos = xsp; if (jj_3R_128()) return true; } } } } return false; } private boolean jj_3R_124() { if (jj_scan_token(BREAK)) return true; return false; } private boolean jj_3_11() { if (jj_scan_token(COMMA)) return true; if (jj_3R_58()) return true; return false; } private boolean jj_3R_111() { if (jj_scan_token(PASS)) return true; return false; } private boolean jj_3R_116() { if (jj_3R_131()) return true; return false; } private boolean jj_3R_97() { if (jj_3R_116()) return true; return false; } private boolean jj_3R_96() { if (jj_scan_token(NOT)) return true; return false; } private boolean jj_3_9() { if (jj_scan_token(COMMA)) return true; Token xsp; xsp = jj_scanpos; if (jj_3R_56()) { jj_scanpos = xsp; if (jj_3R_57()) return true; } return false; } private boolean jj_3R_95() { if (jj_scan_token(MINUS)) return true; return false; } private boolean jj_3R_62() { Token xsp; xsp = jj_scanpos; if (jj_3R_94()) { jj_scanpos = xsp; if (jj_3R_95()) { jj_scanpos = xsp; if (jj_3R_96()) { jj_scanpos = xsp; if (jj_3R_97()) return true; } } } return false; } private boolean jj_3R_94() { if (jj_scan_token(PLUS)) return true; return false; } private boolean jj_3R_123() { if (jj_scan_token(DEL)) return true; return false; } private boolean jj_3R_110() { if (jj_3R_123()) return true; return false; } private boolean jj_3R_171() { if (jj_3R_62()) return true; return false; } private boolean jj_3_29() { if (jj_scan_token(COMMA)) return true; if (jj_3R_72()) return true; return false; } private boolean jj_3R_83() { if (jj_scan_token(MULTIPLY)) return true; return false; } private boolean jj_3R_155() { if (jj_3R_171()) return true; return false; } private boolean jj_3R_109() { if (jj_3R_122()) return true; return false; } private boolean jj_3R_149() { if (jj_3R_155()) return true; return false; } private boolean jj_3R_151() { if (jj_3R_156()) return true; return false; } private boolean jj_3_5() { if (jj_scan_token(COMMA)) return true; if (jj_3R_52()) return true; return false; } private boolean jj_3R_133() { if (jj_3R_149()) return true; return false; } private boolean jj_3R_93() { if (jj_scan_token(ASSERT)) return true; return false; } private boolean jj_3_3() { if (jj_scan_token(COMMA)) return true; Token xsp; xsp = jj_scanpos; if (jj_3R_50()) { jj_scanpos = xsp; if (jj_3R_51()) return true; } return false; } private boolean jj_3R_92() { if (jj_3R_115()) return true; return false; } private boolean jj_3R_91() { if (jj_3R_114()) return true; return false; } private boolean jj_3_13() { if (jj_scan_token(SEMICOLON)) return true; if (jj_3R_60()) return true; return false; } private boolean jj_3R_90() { if (jj_3R_113()) return true; return false; } private boolean jj_3R_118() { if (jj_3R_133()) return true; return false; } private boolean jj_3R_89() { if (jj_3R_112()) return true; return false; } private boolean jj_3R_73() { if (jj_3R_106()) return true; return false; } private boolean jj_3R_88() { if (jj_3R_111()) return true; return false; } private boolean jj_3R_87() { if (jj_3R_110()) return true; return false; } private boolean jj_3R_60() { Token xsp; xsp = jj_scanpos; if (jj_3R_86()) { jj_scanpos = xsp; if (jj_3R_87()) { jj_scanpos = xsp; if (jj_3R_88()) { jj_scanpos = xsp; if (jj_3R_89()) { jj_scanpos = xsp; if (jj_3R_90()) { jj_scanpos = xsp; if (jj_3R_91()) { jj_scanpos = xsp; if (jj_3R_92()) { jj_scanpos = xsp; if (jj_3R_93()) return true; } } } } } } } return false; } private boolean jj_3R_86() { if (jj_3R_109()) return true; return false; } private boolean jj_3R_103() { if (jj_3R_118()) return true; return false; } private boolean jj_3_15() { if (jj_scan_token(IS)) return true; if (jj_scan_token(NOT_BOOL)) return true; return false; } private boolean jj_3R_156() { if (jj_3R_103()) return true; return false; } private boolean jj_3R_134() { Token xsp; xsp = jj_scanpos; if (jj_3R_150()) { jj_scanpos = xsp; if (jj_3R_151()) return true; } return false; } private boolean jj_3R_150() { if (jj_scan_token(NOT_BOOL)) return true; return false; } private boolean jj_3_12() { if (jj_scan_token(COMMA)) return true; if (jj_3R_59()) return true; return false; } private boolean jj_3R_121() { if (jj_3R_134()) return true; return false; } private boolean jj_3R_85() { if (jj_scan_token(LPAREN)) return true; return false; } private boolean jj_3R_80() { if (jj_3R_108()) return true; return false; } private boolean jj_3R_108() { if (jj_3R_121()) return true; return false; } private boolean jj_3_10() { if (jj_scan_token(COMMA)) return true; if (jj_3R_55()) return true; return false; } private boolean jj_3_7() { if (jj_scan_token(COMMA)) return true; if (jj_3R_54()) return true; return false; } private boolean jj_3R_84() { if (jj_3R_61()) return true; return false; } private boolean jj_3R_59() { Token xsp; xsp = jj_scanpos; if (jj_3R_84()) { jj_scanpos = xsp; if (jj_3R_85()) return true; } return false; } private boolean jj_3R_54() { if (jj_3R_59()) return true; return false; } private boolean jj_3R_53() { Token xsp; xsp = jj_scanpos; if (jj_3R_79()) { jj_scanpos = xsp; if (jj_3R_80()) return true; } return false; } private boolean jj_3R_55() { if (jj_3R_59()) return true; return false; } private boolean jj_3R_79() { if (jj_3R_107()) return true; return false; } private boolean jj_3R_82() { if (jj_scan_token(POWER)) return true; return false; } private boolean jj_3R_58() { Token xsp; xsp = jj_scanpos; if (jj_3R_82()) { jj_scanpos = xsp; if (jj_3R_83()) return true; } return false; } private boolean jj_3_32() { if (jj_scan_token(COMMA)) return true; if (jj_3R_75()) return true; return false; } private boolean jj_3R_81() { if (jj_scan_token(MULTIPLY)) return true; return false; } private boolean jj_3_6() { if (jj_scan_token(COLON)) return true; if (jj_3R_53()) return true; return false; } private boolean jj_3R_170() { if (jj_scan_token(TRIPLE_BSTRING2)) return true; return false; } private boolean jj_3R_169() { if (jj_scan_token(TRIPLE_BSTRING)) return true; return false; } private boolean jj_3R_168() { if (jj_scan_token(SINGLE_BSTRING2)) return true; return false; } private boolean jj_3_30() { if (jj_scan_token(COMMA)) return true; Token xsp; xsp = jj_scanpos; if (jj_3R_73()) { jj_scanpos = xsp; if (jj_3R_74()) return true; } return false; } private boolean jj_3R_167() { if (jj_scan_token(SINGLE_BSTRING)) return true; return false; } private boolean jj_3R_166() { if (jj_scan_token(TRIPLE_STRING2)) return true; return false; } private boolean jj_3R_165() { if (jj_scan_token(TRIPLE_STRING)) return true; return false; } private boolean jj_3R_164() { if (jj_scan_token(SINGLE_STRING2)) return true; return false; } private boolean jj_3R_77() { if (jj_3R_61()) return true; return false; } private boolean jj_3R_163() { if (jj_scan_token(SINGLE_STRING)) return true; return false; } private boolean jj_3R_154() { Token xsp; xsp = jj_scanpos; if (jj_3R_163()) { jj_scanpos = xsp; if (jj_3R_164()) { jj_scanpos = xsp; if (jj_3R_165()) { jj_scanpos = xsp; if (jj_3R_166()) { jj_scanpos = xsp; if (jj_3R_167()) { jj_scanpos = xsp; if (jj_3R_168()) { jj_scanpos = xsp; if (jj_3R_169()) { jj_scanpos = xsp; if (jj_3R_170()) return true; } } } } } } } return false; } private boolean jj_3_4() { if (jj_scan_token(COMMA)) return true; if (jj_3R_49()) return true; return false; } private boolean jj_3_1() { if (jj_scan_token(COMMA)) return true; if (jj_3R_48()) return true; return false; } private boolean jj_3R_49() { if (jj_3R_77()) return true; return false; } private boolean jj_3R_52() { if (jj_scan_token(POWER)) return true; return false; } private boolean jj_3R_48() { if (jj_3R_77()) return true; return false; } private boolean jj_3R_78() { if (jj_scan_token(MULTIPLY)) return true; return false; } private boolean jj_3R_61() { if (jj_scan_token(NAME)) return true; return false; } private boolean jj_3R_162() { if (jj_scan_token(COMPLEX)) return true; return false; } private boolean jj_3R_161() { if (jj_scan_token(FLOAT)) return true; return false; } private boolean jj_3R_160() { if (jj_scan_token(DECNUMBER)) return true; return false; } private boolean jj_3R_159() { if (jj_scan_token(OCTNUMBER)) return true; return false; } private boolean jj_3R_158() { if (jj_scan_token(BINNUMBER)) return true; return false; } private boolean jj_3_33() { if (jj_3R_76()) return true; return false; } private boolean jj_3_14() { if (jj_scan_token(COMMA)) return true; if (jj_3R_61()) return true; return false; } private boolean jj_3R_153() { Token xsp; xsp = jj_scanpos; if (jj_3R_157()) { jj_scanpos = xsp; if (jj_3R_158()) { jj_scanpos = xsp; if (jj_3R_159()) { jj_scanpos = xsp; if (jj_3R_160()) { jj_scanpos = xsp; if (jj_3R_161()) { jj_scanpos = xsp; if (jj_3R_162()) return true; } } } } } return false; } private boolean jj_3R_157() { if (jj_scan_token(HEXNUMBER)) return true; return false; } private boolean jj_3_31() { if (jj_scan_token(COMMA)) return true; if (jj_3R_72()) return true; return false; } private boolean jj_3R_57() { if (jj_3R_58()) return true; return false; } private boolean jj_3R_76() { if (jj_scan_token(EQUAL)) return true; if (jj_3R_53()) return true; return false; } private boolean jj_3R_72() { if (jj_3R_53()) return true; return false; } private boolean jj_3_28() { if (jj_scan_token(COMMA)) return true; if (jj_3R_72()) return true; return false; } private boolean jj_3R_69() { if (jj_3R_104()) return true; return false; } private boolean jj_3R_75() { if (jj_scan_token(POWER)) return true; return false; } private boolean jj_3R_68() { if (jj_3R_53()) return true; return false; } private boolean jj_3R_106() { if (jj_scan_token(MULTIPLY)) return true; return false; } private boolean jj_3_26() { if (jj_scan_token(COMMA)) return true; if (jj_3R_53()) return true; return false; } private boolean jj_3R_67() { if (jj_3R_104()) return true; return false; } private boolean jj_3R_51() { if (jj_3R_52()) return true; return false; } private boolean jj_3R_66() { if (jj_3R_103()) return true; return false; } private boolean jj_3R_71() { if (jj_3R_70()) return true; return false; } private boolean jj_3R_70() { if (jj_scan_token(FOR)) return true; if (jj_3R_105()) return true; return false; } private boolean jj_3_27() { Token xsp; if (jj_3R_71()) return true; while (true) { xsp = jj_scanpos; if (jj_3R_71()) { jj_scanpos = xsp; break; } } return false; } private boolean jj_3_24() { if (jj_scan_token(COMMA)) return true; if (jj_3R_53()) return true; return false; } private boolean jj_3R_99() { if (jj_3R_53()) return true; return false; } private boolean jj_3_25() { if (jj_3R_70()) return true; return false; } private boolean jj_3_23() { if (jj_scan_token(COMMA)) return true; Token xsp; xsp = jj_scanpos; if (jj_3R_68()) { jj_scanpos = xsp; if (jj_3R_69()) return true; } return false; } private boolean jj_3R_115() { if (jj_scan_token(NONLOCAL)) return true; return false; } private boolean jj_3R_114() { if (jj_scan_token(GLOBAL)) return true; return false; } private boolean jj_3_20() { if (jj_scan_token(COMMA)) return true; Token xsp; xsp = jj_scanpos; if (jj_3R_66()) { jj_scanpos = xsp; if (jj_3R_67()) return true; } return false; } private boolean jj_3R_74() { if (jj_3R_75()) return true; return false; } private boolean jj_3R_136() { if (jj_3R_104()) return true; return false; } private boolean jj_3_22() { if (jj_scan_token(COMMA)) return true; if (jj_3R_53()) return true; return false; } private boolean jj_3R_104() { if (jj_scan_token(MULTIPLY)) return true; return false; } private boolean jj_3R_135() { if (jj_3R_53()) return true; return false; } private boolean jj_3_21() { if (jj_scan_token(COMMA)) return true; if (jj_3R_53()) return true; return false; } private boolean jj_3R_122() { Token xsp; xsp = jj_scanpos; if (jj_3R_135()) { jj_scanpos = xsp; if (jj_3R_136()) return true; } return false; } private boolean jj_3R_132() { if (jj_scan_token(COLON)) return true; return false; } private boolean jj_3R_120() { if (jj_3R_104()) return true; return false; } private boolean jj_3R_119() { if (jj_3R_103()) return true; return false; } private boolean jj_3R_105() { Token xsp; xsp = jj_scanpos; if (jj_3R_119()) { jj_scanpos = xsp; if (jj_3R_120()) return true; } return false; } private boolean jj_3_19() { if (jj_scan_token(COMMA)) return true; if (jj_3R_65()) return true; return false; } private boolean jj_3R_117() { if (jj_3R_132()) return true; return false; } private boolean jj_3R_102() { if (jj_3R_117()) return true; return false; } private boolean jj_3R_101() { if (jj_3R_53()) return true; return false; } private boolean jj_3R_65() { Token xsp; xsp = jj_scanpos; if (jj_3R_100()) { jj_scanpos = xsp; if (jj_3R_101()) { jj_scanpos = xsp; if (jj_3R_102()) return true; } } return false; } private boolean jj_3R_100() { if (jj_scan_token(DOT)) return true; return false; } private boolean jj_3_8() { if (jj_scan_token(COMMA)) return true; if (jj_3R_55()) return true; return false; } private boolean jj_3R_130() { if (jj_scan_token(FROM)) return true; return false; } private boolean jj_3R_129() { if (jj_scan_token(IMPORT)) return true; return false; } private boolean jj_3R_107() { if (jj_scan_token(LAMBDA)) return true; return false; } private boolean jj_3R_113() { Token xsp; xsp = jj_scanpos; if (jj_3R_129()) { jj_scanpos = xsp; if (jj_3R_130()) return true; } return false; } /** Generated Token Manager. */ public PythonGrammar30TokenManager token_source; /** Current token. */ public Token token; /** Next token. */ public Token jj_nt; private int jj_ntk; private Token jj_scanpos, jj_lastpos; private int jj_la; private int jj_gen; final private int[] jj_la1 = new int[148]; static private int[] jj_la1_0; static private int[] jj_la1_1; static private int[] jj_la1_2; static private int[] jj_la1_3; static private int[] jj_la1_4; static { jj_la1_init_0(); jj_la1_init_1(); jj_la1_init_2(); jj_la1_init_3(); jj_la1_init_4(); } private static void jj_la1_init_0() { jj_la1_0 = new int[] { 0x5a2a0040, 0x5a2a0040, 0x20000000, 0x5a2a0000, 0x20000, 0x0, 0x40000000, 0x1000000, 0x40000000, 0x1000000, 0x1000000, 0x1000000, 0x40000000, 0x0, 0x0, 0x0, 0x1000000, 0x40000000, 0x1000000, 0x1000000, 0x1000000, 0x40020000, 0x0, 0x40000000, 0x0, 0x0, 0x20000, 0x1000000, 0x5a2a0000, 0x800000, 0x5a2a0000, 0x1a2a0000, 0x1a2a0000, 0x1a2a0000, 0x1a2a0000, 0x1a2a0000, 0x1a2a0000, 0x1a2a0000, 0x1a2a0000, 0x1a2a0000, 0x1a2a0000, 0x1a2a0000, 0x1a2a0000, 0x0, 0x5a2a0000, 0x0, 0x0, 0x1a2a0000, 0x1a2a0000, 0x1a2a0000, 0x0, 0x1a2a0000, 0x0, 0x1000000, 0x2000000, 0x0, 0x1000000, 0x1000000, 0x0, 0x40020000, 0x0, 0x2000000, 0x0, 0x1000000, 0x1000000, 0x0, 0x1000000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1a2a0000, 0x1000000, 0x0, 0x5a2a0000, 0x5a2a0000, 0x5a2a4040, 0x0, 0x1a2a0000, 0x1a2a0000, 0x0, 0x0, 0x1a2a0000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x18000000, 0x18000000, 0xc0000000, 0xc0000000, 0x1a2a0000, 0x2220000, 0x5a2a0000, 0x2220000, 0x1a2a0000, 0x1a2a0000, 0x1a2a0000, 0x0, 0x2280000, 0x40020000, 0x40020000, 0x1000000, 0x4000000, 0x1e2a0000, 0x1a2a0000, 0x1a2a0000, 0x4000000, 0x5a2a0000, 0x5a2a0000, 0x1000000, 0x1000000, 0x1000000, 0x5a2a0000, 0x5a2a0000, 0x1000000, 0x1000000, 0x0, 0x1000000, 0x1a2a0000, 0x4000000, 0x0, 0x1000000, 0x0, 0x0, 0x0, 0x0, 0x5a2a0000, 0x20000, 0x1000000, 0x40000000, 0x1000000, 0x1000000, 0x1000000, 0x5a2a0000, 0x0, 0x0, 0x0, }; } private static void jj_la1_init_1() { jj_la1_1 = new int[] { 0x40000020, 0x40000020, 0x0, 0x40000022, 0x0, 0x0, 0x2, 0x0, 0x2, 0x0, 0x0, 0x0, 0x2, 0x0, 0x200, 0x200, 0x0, 0x2, 0x0, 0x0, 0x0, 0x2, 0x0, 0x2, 0x200, 0x200, 0x0, 0x0, 0x40000020, 0x0, 0x40000020, 0x40000020, 0x40000020, 0x40000020, 0x40000020, 0x40000020, 0x40000020, 0x40000020, 0x40000020, 0x40000020, 0x40000020, 0x40000020, 0x40000020, 0x200, 0x40000020, 0xfff0000, 0x0, 0x40000020, 0x40000020, 0x40000020, 0x0, 0x40000020, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x200, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x40000020, 0x0, 0x0, 0x40000020, 0x40000020, 0x40000020, 0x0, 0x40000020, 0x40000020, 0x10000000, 0x20000000, 0x40000020, 0xc000fc00, 0x4000fc00, 0x80000000, 0x80, 0x40, 0x100, 0xc, 0xc, 0x0, 0x0, 0x11, 0x11, 0x20, 0x0, 0x40000022, 0x0, 0x40000020, 0x40000020, 0x40000020, 0x0, 0x0, 0x2, 0x2, 0x0, 0x0, 0x40000020, 0x40000020, 0x40000020, 0x0, 0x20, 0x20, 0x0, 0x0, 0x0, 0x40000020, 0x40000020, 0x0, 0x0, 0x0, 0x0, 0x40000020, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x40000022, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x40000022, 0x0, 0x0, 0x0, }; } private static void jj_la1_init_2() { jj_la1_2 = new int[] { 0x7efff6e6, 0x7efff6e6, 0x0, 0x5c000002, 0x0, 0x20000000, 0x40000000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x40000000, 0x40000000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x40000000, 0x40000000, 0x0, 0x0, 0x0, 0x40000000, 0x0, 0x7efff6e6, 0x0, 0x5cfff002, 0x5c010002, 0x5c010002, 0x5c010002, 0x5c010002, 0x5c010002, 0x5c010002, 0x5c010002, 0x5c010002, 0x5c010002, 0x5c010002, 0x5c010002, 0x5c010002, 0x0, 0x5c010002, 0x0, 0x11e000, 0x5c000002, 0x5c040002, 0x5c040002, 0x40000, 0x5c000002, 0x60000, 0x0, 0x0, 0x40000000, 0x0, 0x0, 0x40000000, 0x40000000, 0x1000000, 0x0, 0x1000000, 0x0, 0x0, 0x0, 0x0, 0x220006e4, 0x10, 0x8, 0x8, 0x8, 0x100, 0x8, 0x800, 0x900, 0x1000000, 0x5c000002, 0x0, 0x1000000, 0x7efff6e6, 0x7efff6e6, 0x5cfff002, 0x4, 0x5c000002, 0x5c000002, 0x0, 0x0, 0x5c000000, 0x1, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5c000000, 0x0, 0x5c000002, 0x0, 0x5c010002, 0x5c000002, 0x5c000002, 0x0, 0x5c000000, 0x40000000, 0x40000000, 0x0, 0x0, 0x5c000002, 0x5c000002, 0x5c000002, 0x0, 0x5c000000, 0x5c000000, 0x0, 0x0, 0x0, 0x5c000002, 0x5c000002, 0x0, 0x0, 0x40, 0x0, 0x5c000002, 0x0, 0x40, 0x0, 0x44, 0x44, 0x44, 0x600, 0x5c000002, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5c000002, 0x40, 0x0, 0x0, }; } private static void jj_la1_init_3() { jj_la1_3 = new int[] { 0xff003f, 0xff003f, 0x0, 0xff003f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff003f, 0x0, 0xff003f, 0xff003f, 0xff003f, 0xff003f, 0xff003f, 0xff003f, 0xff003f, 0xff003f, 0xff003f, 0xff003f, 0xff003f, 0xff003f, 0xff003f, 0x0, 0xff003f, 0x0, 0x0, 0xff003f, 0xff003f, 0xff003f, 0x0, 0xff003f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff003f, 0x0, 0x0, 0xff003f, 0xff003f, 0xff003f, 0x0, 0xff003f, 0xff003f, 0x0, 0x0, 0xff003f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff003f, 0x0, 0xff003f, 0x0, 0xff003f, 0xff003f, 0xff003f, 0xff0000, 0xff003f, 0x0, 0x0, 0x0, 0x0, 0xff003f, 0xff003f, 0xff003f, 0x0, 0xff003f, 0xff003f, 0x0, 0x0, 0x0, 0xff003f, 0xff003f, 0x0, 0x0, 0x0, 0x0, 0xff003f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff003f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff003f, 0x0, 0x3f, 0xff0000, }; } private static void jj_la1_init_4() { jj_la1_4 = new int[] { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, }; } final private JJCalls[] jj_2_rtns = new JJCalls[33]; private boolean jj_rescan = false; private int jj_gc = 0; /** Constructor with user supplied FastCharStream. */ public PythonGrammar30(boolean generateTree, FastCharStream stream) { super(generateTree); builder = jjtree.builder; token_source = new PythonGrammar30TokenManager(stream); token = new Token(); jj_ntk = -1; jj_gen = 0; for (int i = 0; i < 148; i++) jj_la1[i] = -1; for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls(); } /** Reinitialise. */ //Removed Reinit} /** Constructor with generated Token Manager. */ public PythonGrammar30(boolean generateTree, PythonGrammar30TokenManager tm) { super(generateTree); builder = jjtree.builder; token_source = tm; token = new Token(); jj_ntk = -1; jj_gen = 0; for (int i = 0; i < 148; i++) jj_la1[i] = -1; for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls(); } /** Reinitialise. */ //Removed Reinit} private Token jj_consume_token(int kind) throws ParseException { Token oldToken; if ((oldToken = token).next != null) token = token.next; else token = token.next = token_source.getNextToken(); jj_ntk = -1; if (token.kind == kind) { jj_gen++; if (++jj_gc > 100) { jj_gc = 0; for (int i = 0; i < jj_2_rtns.length; i++) { JJCalls c = jj_2_rtns[i]; while (c != null) { if (c.gen < jj_gen) c.first = null; c = c.next; } } } return token; } token = oldToken; jj_kind = kind; throw generateParseException(); } static private final class LookaheadSuccess extends java.lang.Error { } final private LookaheadSuccess jj_ls = new LookaheadSuccess(); private boolean jj_scan_token(int kind) { if (jj_scanpos == jj_lastpos) { jj_la--; if (jj_scanpos.next == null) { jj_lastpos = jj_scanpos = jj_scanpos.next = token_source.getNextToken(); } else { jj_lastpos = jj_scanpos = jj_scanpos.next; } } else { jj_scanpos = jj_scanpos.next; } if (jj_rescan) { int i = 0; Token tok = token; while (tok != null && tok != jj_scanpos) { i++; tok = tok.next; } if (tok != null) jj_add_error_token(kind, i); } if (jj_scanpos.kind != kind) return true; if (jj_la == 0 && jj_scanpos == jj_lastpos) throw jj_ls; return false; } /** Get the next Token. */ final public Token getNextToken() { if (token.next != null) token = token.next; else token = token.next = token_source.getNextToken(); jj_ntk = -1; jj_gen++; return token; } /** Get the specific Token. */ final public Token getToken(int index) { Token t = token; for (int i = 0; i < index; i++) { if (t.next != null) t = t.next; else t = t.next = token_source.getNextToken(); } return t; } private int jj_ntk() { if ((jj_nt = token.next) == null) return (jj_ntk = (token.next = token_source.getNextToken()).kind); else return (jj_ntk = jj_nt.kind); } private java.util.List<int[]> jj_expentries = new java.util.ArrayList<int[]>(); private int[] jj_expentry; private int jj_kind = -1; private int[] jj_lasttokens = new int[100]; private int jj_endpos; private void jj_add_error_token(int kind, int pos) { if (pos >= 100) return; if (pos == jj_endpos + 1) { jj_lasttokens[jj_endpos++] = kind; } else if (jj_endpos != 0) { jj_expentry = new int[jj_endpos]; for (int i = 0; i < jj_endpos; i++) { jj_expentry[i] = jj_lasttokens[i]; } jj_entries_loop: for (java.util.Iterator<?> it = jj_expentries.iterator(); it.hasNext();) { int[] oldentry = (int[]) (it.next()); if (oldentry.length == jj_expentry.length) { for (int i = 0; i < jj_expentry.length; i++) { if (oldentry[i] != jj_expentry[i]) { continue jj_entries_loop; } } jj_expentries.add(jj_expentry); break jj_entries_loop; } } if (pos != 0) jj_lasttokens[(jj_endpos = pos) - 1] = kind; } } /** Generate ParseException. */ public ParseException generateParseException() { jj_expentries.clear(); boolean[] la1tokens = new boolean[139]; if (jj_kind >= 0) { la1tokens[jj_kind] = true; jj_kind = -1; } for (int i = 0; i < 148; i++) { if (jj_la1[i] == jj_gen) { for (int j = 0; j < 32; j++) { if ((jj_la1_0[i] & (1 << j)) != 0) { la1tokens[j] = true; } if ((jj_la1_1[i] & (1 << j)) != 0) { la1tokens[32 + j] = true; } if ((jj_la1_2[i] & (1 << j)) != 0) { la1tokens[64 + j] = true; } if ((jj_la1_3[i] & (1 << j)) != 0) { la1tokens[96 + j] = true; } if ((jj_la1_4[i] & (1 << j)) != 0) { la1tokens[128 + j] = true; } } } } for (int i = 0; i < 139; i++) { if (la1tokens[i]) { jj_expentry = new int[1]; jj_expentry[0] = i; jj_expentries.add(jj_expentry); } } jj_endpos = 0; jj_rescan_token(); jj_add_error_token(0, 0); int[][] exptokseq = new int[jj_expentries.size()][]; for (int i = 0; i < jj_expentries.size(); i++) { exptokseq[i] = jj_expentries.get(i); } return new ParseException(token, exptokseq, tokenImage); } /** Enable tracing. */ final public void enable_tracing() { } /** Disable tracing. */ final public void disable_tracing() { } private void jj_rescan_token() { jj_rescan = true; for (int i = 0; i < 33; i++) { try { JJCalls p = jj_2_rtns[i]; do { if (p.gen > jj_gen) { jj_la = p.arg; jj_lastpos = jj_scanpos = p.first; switch (i) { case 0: jj_3_1(); break; case 1: jj_3_2(); break; case 2: jj_3_3(); break; case 3: jj_3_4(); break; case 4: jj_3_5(); break; case 5: jj_3_6(); break; case 6: jj_3_7(); break; case 7: jj_3_8(); break; case 8: jj_3_9(); break; case 9: jj_3_10(); break; case 10: jj_3_11(); break; case 11: jj_3_12(); break; case 12: jj_3_13(); break; case 13: jj_3_14(); break; case 14: jj_3_15(); break; case 15: jj_3_16(); break; case 16: jj_3_17(); break; case 17: jj_3_18(); break; case 18: jj_3_19(); break; case 19: jj_3_20(); break; case 20: jj_3_21(); break; case 21: jj_3_22(); break; case 22: jj_3_23(); break; case 23: jj_3_24(); break; case 24: jj_3_25(); break; case 25: jj_3_26(); break; case 26: jj_3_27(); break; case 27: jj_3_28(); break; case 28: jj_3_29(); break; case 29: jj_3_30(); break; case 30: jj_3_31(); break; case 31: jj_3_32(); break; case 32: jj_3_33(); break; } } p = p.next; } while (p != null); } catch (LookaheadSuccess ls) { } } jj_rescan = false; } private void jj_save(int index, int xla) { JJCalls p = jj_2_rtns[index]; while (p.gen > jj_gen) { if (p.next == null) { p = p.next = new JJCalls(); break; } p = p.next; } p.gen = jj_gen + xla - jj_la; p.first = token; p.arg = xla; } static final class JJCalls { int gen; Token first; int arg; JJCalls next; } }