/* Generated By:JavaCC: Do not edit this line. Parser.java */ import java.util.*; import java.io.*; import edu.neu.ccs.demeter.aplib.*; import edu.neu.ccs.demeter.*; public class Parser implements ParserConstants { // oit is uugly. Why isn't there a Character.valueOf(String)? static char unescapifyChar(String s) { char c = s.charAt(0); if (c == '\\') { switch (s.charAt(1)) { case 'n': c = '\n'; break; case 't': c = '\t'; break; case 'b': c = '\b'; break; case 'r': c = '\r'; break; case 'f': c = '\f'; break; case '\\': c = '\\'; break; case '\'': c = '\''; break; case '\"': c = '\"'; break; default: c = (char) Integer.parseInt(s.substring(1, s.length()), 8); break; } } return c; } // Even uglier... static String unescapify(String s) { char str[] = new char[s.length()]; int i = 0, o = 0; while (i < s.length()) { char c = s.charAt(i++); if (c == '\\') { int j = i + 1; while (j < s.length() && Character.digit(s.charAt(j), 8) != -1) { j++; } c = unescapifyChar(s.substring(i-1, j)); i = j; } str[o++] = c; } return String.valueOf(str, 0, o); } final public Main _Main() throws ParseException { Main it = null; it=new Main(); {if (true) return it;} throw new Error("Missing return statement in function"); } final public StratSeq _StratSeq() throws ParseException { StratSeq it = null; Decls _decls; StrategyExpression_Sequence _strategyexpression_sequence; it=new StratSeq(); _decls = _Decls(); it.set_decls(_decls); _strategyexpression_sequence = _StrategyExpression_Sequence(); it.set_strategyexpression_sequence(_strategyexpression_sequence); {if (true) return it;} throw new Error("Missing return statement in function"); } final public Decls _Decls() throws ParseException { Decls it = null; Decl_SList _decl_slist; it=new Decls(); jj_consume_token(1); _decl_slist = _Decl_SList(); it.set_decl_slist(_decl_slist); {if (true) return it;} throw new Error("Missing return statement in function"); } final public Decl _Decl() throws ParseException { Decl it = null; ClassName _classname; VariableName _variablename; it=new Decl(); _classname = _ClassName(); it.set_classname(_classname); _variablename = _VariableName(); it.set_variablename(_variablename); jj_consume_token(2); {if (true) return it;} throw new Error("Missing return statement in function"); } final public StrategyExpression _StrategyExpression() throws ParseException { StrategyExpression it = null; Strategy _strategy; it=new StrategyExpression(); _strategy = _Strategy(); it.set_strategy(_strategy); {if (true) return it;} throw new Error("Missing return statement in function"); } final public Strategy _Strategy() throws ParseException { Strategy it = null; it = _SimpleStrategy(); {if (true) return it;} throw new Error("Missing return statement in function"); } final public void common_Strategy(Strategy it) throws ParseException { } final public SimpleStrategy _SimpleStrategy() throws ParseException { SimpleStrategy it = null; it = _StrategyGraph(); {if (true) return it;} throw new Error("Missing return statement in function"); } final public void common_SimpleStrategy(SimpleStrategy it) throws ParseException { common_Strategy(it); } final public StrategyGraph _StrategyGraph() throws ParseException { StrategyGraph it = null; SGEdge_SList _edges; it=new StrategyGraph(); jj_consume_token(3); _edges = _SGEdge_SList(); it.set_edges(_edges); jj_consume_token(4); common_SimpleStrategy(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public SGEdge _SGEdge() throws ParseException { SGEdge it = null; SourceMarker _sourcemarker; GlobSpec _source; TargetMarker _targetmarker; GlobSpec _target; NegativeConstraint _constraint; it=new SGEdge(); switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 6: _sourcemarker = _SourceMarker(); it.set_sourcemarker(_sourcemarker); break; default: jj_la1[0] = jj_gen; ; } _source = _GlobSpec(); it.set_source(_source); jj_consume_token(5); switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 7: _targetmarker = _TargetMarker(); it.set_targetmarker(_targetmarker); break; default: jj_la1[1] = jj_gen; ; } _target = _GlobSpec(); it.set_target(_target); switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 8: case 9: _constraint = _NegativeConstraint(); it.set_constraint(_constraint); break; default: jj_la1[2] = jj_gen; ; } {if (true) return it;} throw new Error("Missing return statement in function"); } final public SourceMarker _SourceMarker() throws ParseException { SourceMarker it = null; it=new SourceMarker(); jj_consume_token(6); {if (true) return it;} throw new Error("Missing return statement in function"); } final public TargetMarker _TargetMarker() throws ParseException { TargetMarker it = null; it=new TargetMarker(); jj_consume_token(7); {if (true) return it;} throw new Error("Missing return statement in function"); } final public Constraint _Constraint() throws ParseException { Constraint it = null; it = _NegativeConstraint(); {if (true) return it;} throw new Error("Missing return statement in function"); } final public void common_Constraint(Constraint it) throws ParseException { GlobSpec _glob; _glob = _GlobSpec(); it.set_glob(_glob); } final public NegativeConstraint _NegativeConstraint() throws ParseException { NegativeConstraint it = null; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 8: it = _Bypassing(); break; case 9: it = _OnlyThrough(); break; default: jj_la1[3] = jj_gen; jj_consume_token(-1); throw new ParseException(); } {if (true) return it;} throw new Error("Missing return statement in function"); } final public void common_NegativeConstraint(NegativeConstraint it) throws ParseException { common_Constraint(it); } final public Bypassing _Bypassing() throws ParseException { Bypassing it = null; it=new Bypassing(); jj_consume_token(8); common_NegativeConstraint(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public OnlyThrough _OnlyThrough() throws ParseException { OnlyThrough it = null; it=new OnlyThrough(); jj_consume_token(9); common_NegativeConstraint(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public GlobSpec _GlobSpec() throws ParseException { GlobSpec it = null; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 5: case 11: case 12: case 13: case 14: case IDENTIFIER: it = _OneGlob(); break; case 3: it = _GlobSet(); break; default: jj_la1[4] = jj_gen; jj_consume_token(-1); throw new ParseException(); } {if (true) return it;} throw new Error("Missing return statement in function"); } final public void common_GlobSpec(GlobSpec it) throws ParseException { } final public OneGlob _OneGlob() throws ParseException { OneGlob it = null; Glob _glob; it=new OneGlob(); _glob = _Glob(); it.set_glob(_glob); common_GlobSpec(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public GlobSet _GlobSet() throws ParseException { GlobSet it = null; Glob_Commalist _globs; it=new GlobSet(); jj_consume_token(3); switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 5: case 11: case 12: case 13: case 14: case IDENTIFIER: _globs = _Glob_Commalist(); it.set_globs(_globs); break; default: jj_la1[5] = jj_gen; ; } jj_consume_token(4); common_GlobSpec(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public Glob _Glob() throws ParseException { Glob it = null; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 13: case 14: case IDENTIFIER: it = _ClassGlob(); break; case 5: case 11: case 12: it = _EdgeGlob(); break; default: jj_la1[6] = jj_gen; jj_consume_token(-1); throw new ParseException(); } {if (true) return it;} throw new Error("Missing return statement in function"); } final public void common_Glob(Glob it) throws ParseException { } final public EdgeGlob _EdgeGlob() throws ParseException { EdgeGlob it = null; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 5: it = _PartGlob(); break; case 11: it = _SubclassGlob(); break; case 12: it = _SuperclassGlob(); break; default: jj_la1[7] = jj_gen; jj_consume_token(-1); throw new ParseException(); } {if (true) return it;} throw new Error("Missing return statement in function"); } final public void common_EdgeGlob(EdgeGlob it) throws ParseException { common_Glob(it); } final public ClassGlob _ClassGlob() throws ParseException { ClassGlob it = null; ClassNameGlob _name; it=new ClassGlob(); _name = _ClassNameGlob(); it.set_name(_name); common_Glob(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public PartGlob _PartGlob() throws ParseException { PartGlob it = null; SourceGlob _source; PartNameGlob _name; TargetGlob _target; it=new PartGlob(); jj_consume_token(5); _source = _SourceGlob(); it.set_source(_source); jj_consume_token(10); _name = _PartNameGlob(); it.set_name(_name); jj_consume_token(10); _target = _TargetGlob(); it.set_target(_target); common_EdgeGlob(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public SubclassGlob _SubclassGlob() throws ParseException { SubclassGlob it = null; SourceGlob _source; TargetGlob _target; it=new SubclassGlob(); jj_consume_token(11); _source = _SourceGlob(); it.set_source(_source); jj_consume_token(10); _target = _TargetGlob(); it.set_target(_target); common_EdgeGlob(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public SuperclassGlob _SuperclassGlob() throws ParseException { SuperclassGlob it = null; SourceGlob _source; TargetGlob _target; it=new SuperclassGlob(); jj_consume_token(12); _source = _SourceGlob(); it.set_source(_source); jj_consume_token(10); _target = _TargetGlob(); it.set_target(_target); common_EdgeGlob(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public SourceGlob _SourceGlob() throws ParseException { SourceGlob it = null; ClassNameGlob _name; it=new SourceGlob(); _name = _ClassNameGlob(); it.set_name(_name); {if (true) return it;} throw new Error("Missing return statement in function"); } final public TargetGlob _TargetGlob() throws ParseException { TargetGlob it = null; ClassNameGlob _name; it=new TargetGlob(); _name = _ClassNameGlob(); it.set_name(_name); {if (true) return it;} throw new Error("Missing return statement in function"); } final public ClassNameGlob _ClassNameGlob() throws ParseException { ClassNameGlob it = null; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case IDENTIFIER: it = _ClassNameExact(); break; case 14: it = _AnyClass(); break; case 13: it = _ClassNameVar(); break; default: jj_la1[8] = jj_gen; jj_consume_token(-1); throw new ParseException(); } {if (true) return it;} throw new Error("Missing return statement in function"); } final public void common_ClassNameGlob(ClassNameGlob it) throws ParseException { } final public ClassNameExact _ClassNameExact() throws ParseException { ClassNameExact it = null; ClassName _classname; it=new ClassNameExact(); _classname = _ClassName(); it.set_classname(_classname); common_ClassNameGlob(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public ClassNameVar _ClassNameVar() throws ParseException { ClassNameVar it = null; Ident _ident; it=new ClassNameVar(); jj_consume_token(13); _ident = _Ident(); it.set_ident(_ident); common_ClassNameGlob(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public AnyClass _AnyClass() throws ParseException { AnyClass it = null; it=new AnyClass(); jj_consume_token(14); common_ClassNameGlob(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public PartNameGlob _PartNameGlob() throws ParseException { PartNameGlob it = null; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case IDENTIFIER: it = _PartNameExact(); break; case 14: it = _AnyPart(); break; default: jj_la1[9] = jj_gen; jj_consume_token(-1); throw new ParseException(); } {if (true) return it;} throw new Error("Missing return statement in function"); } final public void common_PartNameGlob(PartNameGlob it) throws ParseException { } final public PartNameExact _PartNameExact() throws ParseException { PartNameExact it = null; PartName _partname; it=new PartNameExact(); _partname = _PartName(); it.set_partname(_partname); common_PartNameGlob(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public AnyPart _AnyPart() throws ParseException { AnyPart it = null; it=new AnyPart(); jj_consume_token(14); common_PartNameGlob(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public ClassGlobSpec _ClassGlobSpec() throws ParseException { ClassGlobSpec it = null; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 13: case 14: case IDENTIFIER: it = _OneClassGlob(); break; case 3: it = _ClassGlobSet(); break; default: jj_la1[10] = jj_gen; jj_consume_token(-1); throw new ParseException(); } {if (true) return it;} throw new Error("Missing return statement in function"); } final public void common_ClassGlobSpec(ClassGlobSpec it) throws ParseException { } final public OneClassGlob _OneClassGlob() throws ParseException { OneClassGlob it = null; ClassGlob _classglob; it=new OneClassGlob(); _classglob = _ClassGlob(); it.set_classglob(_classglob); common_ClassGlobSpec(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public ClassGlobSet _ClassGlobSet() throws ParseException { ClassGlobSet it = null; ClassGlob_Commalist _globs; it=new ClassGlobSet(); jj_consume_token(3); _globs = _ClassGlob_Commalist(); it.set_globs(_globs); jj_consume_token(4); common_ClassGlobSpec(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public ClassName _ClassName() throws ParseException { ClassName it = null; Name _name; it=new ClassName(); _name = _Name(); it.set_name(_name); {if (true) return it;} throw new Error("Missing return statement in function"); } final public VariableName _VariableName() throws ParseException { VariableName it = null; Ident _ident; it=new VariableName(); jj_consume_token(13); _ident = _Ident(); it.set_ident(_ident); {if (true) return it;} throw new Error("Missing return statement in function"); } final public PartName _PartName() throws ParseException { PartName it = null; Ident _name; it=new PartName(); _name = _Ident(); it.set_name(_name); {if (true) return it;} throw new Error("Missing return statement in function"); } final public Name _Name() throws ParseException { Name it = null; Nonempty_Name _first; it=new Name(); _first = _Nonempty_Name(); it.set_first(_first); {if (true) return it;} throw new Error("Missing return statement in function"); } final public StrategyExpression_Sequence _StrategyExpression_Sequence() throws ParseException { StrategyExpression_Sequence it = null; Nonempty_StrategyExpression_Sequence _first; it=new StrategyExpression_Sequence(); jj_consume_token(3); switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 3: _first = _Nonempty_StrategyExpression_Sequence(); it.set_first(_first); break; default: jj_la1[11] = jj_gen; ; } jj_consume_token(4); {if (true) return it;} throw new Error("Missing return statement in function"); } final public Decl_SList _Decl_SList() throws ParseException { Decl_SList it = null; Nonempty_Decl_SList _first; it=new Decl_SList(); _first = _Nonempty_Decl_SList(); it.set_first(_first); {if (true) return it;} throw new Error("Missing return statement in function"); } final public SGEdge_SList _SGEdge_SList() throws ParseException { SGEdge_SList it = null; Nonempty_SGEdge_SList _first; it=new SGEdge_SList(); _first = _Nonempty_SGEdge_SList(); it.set_first(_first); {if (true) return it;} throw new Error("Missing return statement in function"); } final public Glob_Commalist _Glob_Commalist() throws ParseException { Glob_Commalist it = null; Nonempty_Glob_Commalist _first; it=new Glob_Commalist(); _first = _Nonempty_Glob_Commalist(); it.set_first(_first); {if (true) return it;} throw new Error("Missing return statement in function"); } final public ClassGlob_Commalist _ClassGlob_Commalist() throws ParseException { ClassGlob_Commalist it = null; Nonempty_ClassGlob_Commalist _first; it=new ClassGlob_Commalist(); _first = _Nonempty_ClassGlob_Commalist(); it.set_first(_first); {if (true) return it;} throw new Error("Missing return statement in function"); } final public Nonempty_Name _Nonempty_Name() throws ParseException { Nonempty_Name it = null; Ident _it; Nonempty_Name _next; it=new Nonempty_Name(); _it = _Ident(); it.set_it(_it); switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 15: jj_consume_token(15); _next = _Nonempty_Name(); it.set_next(_next); break; default: jj_la1[12] = jj_gen; ; } {if (true) return it;} throw new Error("Missing return statement in function"); } final public Nonempty_StrategyExpression_Sequence _Nonempty_StrategyExpression_Sequence() throws ParseException { Nonempty_StrategyExpression_Sequence it = null; StrategyExpression _it; Nonempty_StrategyExpression_Sequence _next; it=new Nonempty_StrategyExpression_Sequence(); _it = _StrategyExpression(); it.set_it(_it); switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 3: _next = _Nonempty_StrategyExpression_Sequence(); it.set_next(_next); break; default: jj_la1[13] = jj_gen; ; } {if (true) return it;} throw new Error("Missing return statement in function"); } final public Nonempty_Decl_SList _Nonempty_Decl_SList() throws ParseException { Nonempty_Decl_SList it = null; Decl _it; Nonempty_Decl_SList _next; it=new Nonempty_Decl_SList(); _it = _Decl(); it.set_it(_it); switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case IDENTIFIER: _next = _Nonempty_Decl_SList(); it.set_next(_next); break; default: jj_la1[14] = jj_gen; ; } {if (true) return it;} throw new Error("Missing return statement in function"); } final public Nonempty_SGEdge_SList _Nonempty_SGEdge_SList() throws ParseException { Nonempty_SGEdge_SList it = null; SGEdge _it; Nonempty_SGEdge_SList _next; it=new Nonempty_SGEdge_SList(); _it = _SGEdge(); it.set_it(_it); switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 3: case 5: case 6: case 11: case 12: case 13: case 14: case IDENTIFIER: _next = _Nonempty_SGEdge_SList(); it.set_next(_next); break; default: jj_la1[15] = jj_gen; ; } {if (true) return it;} throw new Error("Missing return statement in function"); } final public Nonempty_Glob_Commalist _Nonempty_Glob_Commalist() throws ParseException { Nonempty_Glob_Commalist it = null; Glob _it; Nonempty_Glob_Commalist _next; it=new Nonempty_Glob_Commalist(); _it = _Glob(); it.set_it(_it); switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 10: jj_consume_token(10); _next = _Nonempty_Glob_Commalist(); it.set_next(_next); break; default: jj_la1[16] = jj_gen; ; } {if (true) return it;} throw new Error("Missing return statement in function"); } final public Nonempty_ClassGlob_Commalist _Nonempty_ClassGlob_Commalist() throws ParseException { Nonempty_ClassGlob_Commalist it = null; ClassGlob _it; Nonempty_ClassGlob_Commalist _next; it=new Nonempty_ClassGlob_Commalist(); _it = _ClassGlob(); it.set_it(_it); switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 10: jj_consume_token(10); _next = _Nonempty_ClassGlob_Commalist(); it.set_next(_next); break; default: jj_la1[17] = jj_gen; ; } {if (true) return it;} throw new Error("Missing return statement in function"); } final public boolean _boolean() throws ParseException { Token t; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case TRUE: t = jj_consume_token(TRUE); {if (true) return true;} break; case FALSE: t = jj_consume_token(FALSE); {if (true) return false;} break; default: jj_la1[18] = jj_gen; jj_consume_token(-1); throw new ParseException(); } throw new Error("Missing return statement in function"); } final public char _char() throws ParseException { Token t; t = jj_consume_token(CHARACTER_LITERAL); String s = t.image; {if (true) return unescapifyChar(s.substring(1, s.length()-1));} throw new Error("Missing return statement in function"); } final public byte _byte() throws ParseException { int i; i = _int(); {if (true) return (byte) i;} throw new Error("Missing return statement in function"); } final public short _short() throws ParseException { int i; i = _int(); {if (true) return (short) i;} throw new Error("Missing return statement in function"); } final public int _int() throws ParseException { Number num; num = _Number(); {if (true) return num.intValue();} throw new Error("Missing return statement in function"); } final public long _long() throws ParseException { Number num; num = _Number(); {if (true) return num.longValue();} throw new Error("Missing return statement in function"); } final public float _float() throws ParseException { Number num; num = _Number(); {if (true) return num.floatValue();} throw new Error("Missing return statement in function"); } final public double _double() throws ParseException { Number num; num = _Number(); {if (true) return num.doubleValue();} throw new Error("Missing return statement in function"); } final public Boolean _Boolean() throws ParseException { Token t; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case TRUE: t = jj_consume_token(TRUE); {if (true) return Boolean.TRUE;} break; case FALSE: t = jj_consume_token(FALSE); {if (true) return Boolean.FALSE;} break; default: jj_la1[19] = jj_gen; jj_consume_token(-1); throw new ParseException(); } throw new Error("Missing return statement in function"); } final public Character _Character() throws ParseException { char c; c = _char(); {if (true) return new Character(c);} throw new Error("Missing return statement in function"); } final public Integer _Integer() throws ParseException { int i; i = _int(); {if (true) return new Integer(i);} throw new Error("Missing return statement in function"); } final public Long _Long() throws ParseException { long l; l = _long(); {if (true) return new Long(l);} throw new Error("Missing return statement in function"); } final public Float _Float() throws ParseException { float f; f = _float(); {if (true) return new Float(f);} throw new Error("Missing return statement in function"); } final public Double _Double() throws ParseException { double d; d = _double(); {if (true) return new Double(d);} throw new Error("Missing return statement in function"); } final public Number _Number() throws ParseException { Token t; String s = null; int radix = 0; Number num = null; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case DECIMAL_LITERAL: case HEX_LITERAL: case OCTAL_LITERAL: switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case DECIMAL_LITERAL: t = jj_consume_token(DECIMAL_LITERAL); s = t.image; radix = 10; break; case HEX_LITERAL: t = jj_consume_token(HEX_LITERAL); // Strip off the "0x". s = t.image.substring(2, t.image.length()); radix = 16; break; case OCTAL_LITERAL: t = jj_consume_token(OCTAL_LITERAL); s = t.image; radix = 8; break; default: jj_la1[20] = jj_gen; jj_consume_token(-1); throw new ParseException(); } switch (s.charAt(s.length()-1)) { case 'l': case 'L': s = s.substring(0, s.length()-1); num = new Long(new java.math.BigInteger(s, radix).longValue()); break; default: num = new Integer(new java.math.BigInteger(s, radix).intValue()); break; } break; case FLOATING_POINT_LITERAL: t = jj_consume_token(FLOATING_POINT_LITERAL); s = t.image; switch (s.charAt(s.length()-1)) { case 'd': case 'D': num = Double.valueOf(s.substring(0, s.length()-1)); break; case 'f': case 'F': num = Float.valueOf(s.substring(0, s.length()-1)); break; default: num = Float.valueOf(s); break; } break; default: jj_la1[21] = jj_gen; jj_consume_token(-1); throw new ParseException(); } {if (true) return num;} throw new Error("Missing return statement in function"); } final public String _String() throws ParseException { Token t; t = jj_consume_token(STRING_LITERAL); String s = t.image; {if (true) return unescapify(s.substring(1, s.length()-1));} throw new Error("Missing return statement in function"); } final public StringBuffer _StringBuffer() throws ParseException { String s; s = _String(); {if (true) return new StringBuffer(s);} throw new Error("Missing return statement in function"); } final public Ident _Ident() throws ParseException { Token t; t = jj_consume_token(IDENTIFIER); {if (true) return new Ident(t.image);} throw new Error("Missing return statement in function"); } final public Text _Text() throws ParseException { Token t; t = jj_consume_token(TEXT_LITERAL); String s = t.image; {if (true) return new Text(s.substring(2, s.length()-2));} throw new Error("Missing return statement in function"); } final public Line _Line() throws ParseException { Token t; token_source.SwitchTo(1); t = jj_consume_token(LINE); {if (true) return new Line(t.image);} throw new Error("Missing return statement in function"); } final public Word _Word() throws ParseException { Token t; token_source.SwitchTo(2); t = jj_consume_token(WORD); {if (true) return new Word(t.image);} throw new Error("Missing return statement in function"); } public ParserTokenManager token_source; ASCII_UCodeESC_CharStream jj_input_stream; public Token token, jj_nt; private int jj_ntk; private int jj_gen; final private int[] jj_la1 = new int[22]; final private int[] jj_la1_0 = {0x40,0x80,0x300,0x300,0x7828,0x7820,0x7820,0x1820,0x6000,0x4000,0x6008,0x8,0x8000,0x8,0x0,0x7868,0x400,0x400,0xc0000000,0xc0000000,0x1c00000,0x3c00000,}; final private int[] jj_la1_1 = {0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,}; public Parser(java.io.InputStream stream) { jj_input_stream = new ASCII_UCodeESC_CharStream(stream, 1, 1); token_source = new ParserTokenManager(jj_input_stream); token = new Token(); jj_ntk = -1; jj_gen = 0; for (int i = 0; i < 22; i++) jj_la1[i] = -1; } public void ReInit(java.io.InputStream stream) { jj_input_stream.ReInit(stream, 1, 1); token_source.ReInit(jj_input_stream); token = new Token(); jj_ntk = -1; jj_gen = 0; for (int i = 0; i < 22; i++) jj_la1[i] = -1; } public Parser(java.io.Reader stream) { jj_input_stream = new ASCII_UCodeESC_CharStream(stream, 1, 1); token_source = new ParserTokenManager(jj_input_stream); token = new Token(); jj_ntk = -1; jj_gen = 0; for (int i = 0; i < 22; i++) jj_la1[i] = -1; } public void ReInit(java.io.Reader stream) { jj_input_stream.ReInit(stream, 1, 1); token_source.ReInit(jj_input_stream); token = new Token(); jj_ntk = -1; jj_gen = 0; for (int i = 0; i < 22; i++) jj_la1[i] = -1; } public Parser(ParserTokenManager tm) { token_source = tm; token = new Token(); jj_ntk = -1; jj_gen = 0; for (int i = 0; i < 22; i++) jj_la1[i] = -1; } public void ReInit(ParserTokenManager tm) { token_source = tm; token = new Token(); jj_ntk = -1; jj_gen = 0; for (int i = 0; i < 22; i++) jj_la1[i] = -1; } final 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++; return token; } token = oldToken; jj_kind = kind; throw generateParseException(); } 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; } 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; } final 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.Vector jj_expentries = new java.util.Vector(); private int[] jj_expentry; private int jj_kind = -1; final public ParseException generateParseException() { jj_expentries.removeAllElements(); boolean[] la1tokens = new boolean[41]; for (int i = 0; i < 41; i++) { la1tokens[i] = false; } if (jj_kind >= 0) { la1tokens[jj_kind] = true; jj_kind = -1; } for (int i = 0; i < 22; i++) { if (jj_la1[i] == jj_gen) { for (int j = 0; j < 32; j++) { if ((jj_la1_0[i] & (1<