/* Generated By:JavaCC: Do not edit this line. Parser.java */ package edu.neu.ccs.demeter.aplib.sg; 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 CollectVisitor _CollectVisitor() throws ParseException { CollectVisitor it = null; it=new CollectVisitor(); {if (true) return it;} throw new Error("Missing return statement in function"); } final public SelectorLanguage _SelectorLanguage() throws ParseException { SelectorLanguage it = null; StrategyLanguage _strategylanguage; NodeSubsetLanguage _nodesubsetlanguage; SelectorName _selectorname; ClassDict _classdict; it=new SelectorLanguage(); jj_consume_token(1); _strategylanguage = _StrategyLanguage(); it.set_strategylanguage(_strategylanguage); jj_consume_token(2); jj_consume_token(3); _nodesubsetlanguage = _NodeSubsetLanguage(); it.set_nodesubsetlanguage(_nodesubsetlanguage); jj_consume_token(4); _selectorname = _SelectorName(); it.set_selectorname(_selectorname); jj_consume_token(5); jj_consume_token(6); _classdict = _ClassDict(); it.set_classdict(_classdict); {if (true) return it;} throw new Error("Missing return statement in function"); } final public SelectorName _SelectorName() throws ParseException { SelectorName it = null; Ident _ident; it=new SelectorName(); _ident = _Ident(); it.set_ident(_ident); {if (true) return it;} throw new Error("Missing return statement in function"); } final public ClassDict _ClassDict() throws ParseException { ClassDict it = null; Text _text; it=new ClassDict(); _text = _Text(); it.set_text(_text); {if (true) return it;} throw new Error("Missing return statement in function"); } final public StrategyLanguage _StrategyLanguage() throws ParseException { StrategyLanguage it = null; StrategyDef_NPList _strategydef_nplist; it=new StrategyLanguage(); _strategydef_nplist = _StrategyDef_NPList(); it.set_strategydef_nplist(_strategydef_nplist); {if (true) return it;} throw new Error("Missing return statement in function"); } final public StrategyDef _StrategyDef() throws ParseException { StrategyDef it = null; StrategyName _strategyname; StrategyExpression _strategyexpression; it=new StrategyDef(); _strategyname = _StrategyName(); it.set_strategyname(_strategyname); jj_consume_token(7); _strategyexpression = _StrategyExpression(); it.set_strategyexpression(_strategyexpression); jj_consume_token(8); {if (true) return it;} throw new Error("Missing return statement in function"); } final public NodeSubsetLanguage _NodeSubsetLanguage() throws ParseException { NodeSubsetLanguage it = null; NodeSubsetSpec_PList _nodesubsetspec_plist; it=new NodeSubsetLanguage(); _nodesubsetspec_plist = _NodeSubsetSpec_PList(); it.set_nodesubsetspec_plist(_nodesubsetspec_plist); {if (true) return it;} throw new Error("Missing return statement in function"); } final public NodeSubsetSpec _NodeSubsetSpec() throws ParseException { NodeSubsetSpec it = null; NodeSubsetName _nodesubsetname; NodeSubsetExpression _nodesubsetexpression; it=new NodeSubsetSpec(); _nodesubsetname = _NodeSubsetName(); it.set_nodesubsetname(_nodesubsetname); jj_consume_token(7); _nodesubsetexpression = _NodeSubsetExpression(); it.set_nodesubsetexpression(_nodesubsetexpression); jj_consume_token(8); {if (true) return it;} throw new Error("Missing return statement in function"); } final public NodeSubsetExpression _NodeSubsetExpression() throws ParseException { NodeSubsetExpression it = null; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 14: case 15: case 18: case IDENTIFIER: it = _Simple(); break; case 9: it = _Compound(); break; default: jj_la1[0] = 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_NodeSubsetExpression(NodeSubsetExpression it) throws ParseException { } final public Simple _Simple() throws ParseException { Simple it = null; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case IDENTIFIER: it = _NodeSubsetName(); break; case 18: it = _ClassNameSet(); break; case 14: it = _GraphNodes(); break; case 15: it = _GraphNodeRegExp(); break; default: jj_la1[1] = 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_Simple(Simple it) throws ParseException { common_NodeSubsetExpression(it); } final public Compound _Compound() throws ParseException { Compound it = null; Operator _op; NodeSubsetExpression_List _args; it=new Compound(); jj_consume_token(9); _op = _Operator(); it.set_op(_op); _args = _NodeSubsetExpression_List(); it.set_args(_args); jj_consume_token(10); common_NodeSubsetExpression(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public Operator _Operator() throws ParseException { Operator it = null; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 11: it = _Union(); break; case 12: it = _Intersection(); break; case 13: it = _Complement(); break; default: jj_la1[2] = 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_Operator(Operator it) throws ParseException { } final public Union _Union() throws ParseException { Union it = null; it=new Union(); jj_consume_token(11); common_Operator(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public Intersection _Intersection() throws ParseException { Intersection it = null; it=new Intersection(); jj_consume_token(12); common_Operator(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public Complement _Complement() throws ParseException { Complement it = null; it=new Complement(); jj_consume_token(13); common_Operator(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public ClassNameSet _ClassNameSet() throws ParseException { ClassNameSet it = null; ClassName_BCList _classname_bclist; it=new ClassNameSet(); _classname_bclist = _ClassName_BCList(); it.set_classname_bclist(_classname_bclist); common_Simple(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public GraphNodes _GraphNodes() throws ParseException { GraphNodes it = null; StrategyName _strategyname; it=new GraphNodes(); jj_consume_token(14); _strategyname = _StrategyName(); it.set_strategyname(_strategyname); jj_consume_token(10); common_Simple(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public GraphNodeRegExp _GraphNodeRegExp() throws ParseException { GraphNodeRegExp it = null; ClassName _classname; WildCard _wildcard; it=new GraphNodeRegExp(); jj_consume_token(15); _classname = _ClassName(); it.set_classname(_classname); _wildcard = _WildCard(); it.set_wildcard(_wildcard); jj_consume_token(10); common_Simple(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public WildCard _WildCard() throws ParseException { WildCard it = null; it=new WildCard(); jj_consume_token(16); {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; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 18: case 23: it = _SimpleStrategy(); break; case 31: case 32: case 33: it = _StrategyCombination(); break; case IDENTIFIER: it = _StrategyReference(); 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_Strategy(Strategy it) throws ParseException { } final public SimpleStrategy _SimpleStrategy() throws ParseException { SimpleStrategy it = null; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 18: it = _StrategyGraph(); break; case 23: it = _PathDirective(); 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_SimpleStrategy(SimpleStrategy it) throws ParseException { NameMap _parsedNameMap; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 17: jj_consume_token(17); _parsedNameMap = _NameMap(); it.set_parsedNameMap(_parsedNameMap); break; default: jj_la1[5] = jj_gen; ; } common_Strategy(it); } final public StrategyGraph _StrategyGraph() throws ParseException { StrategyGraph it = null; SGEdge_SList _edges; it=new StrategyGraph(); jj_consume_token(18); _edges = _SGEdge_SList(); it.set_edges(_edges); jj_consume_token(19); 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 21: _sourcemarker = _SourceMarker(); it.set_sourcemarker(_sourcemarker); break; default: jj_la1[6] = jj_gen; ; } _source = _GlobSpec(); it.set_source(_source); jj_consume_token(20); switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 22: _targetmarker = _TargetMarker(); it.set_targetmarker(_targetmarker); break; default: jj_la1[7] = jj_gen; ; } _target = _GlobSpec(); it.set_target(_target); switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 26: case 27: _constraint = _NegativeConstraint(); it.set_constraint(_constraint); break; default: jj_la1[8] = 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(21); {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(22); {if (true) return it;} throw new Error("Missing return statement in function"); } final public PathDirective _PathDirective() throws ParseException { PathDirective it = null; SourceDirective _source; NegativeConstraint _constraint; PathSegment_List _segments; TargetDirective _target; it=new PathDirective(); _source = _SourceDirective(); it.set_source(_source); switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 26: case 27: _constraint = _NegativeConstraint(); it.set_constraint(_constraint); break; default: jj_la1[9] = jj_gen; ; } _segments = _PathSegment_List(); it.set_segments(_segments); _target = _TargetDirective(); it.set_target(_target); common_SimpleStrategy(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public SourceDirective _SourceDirective() throws ParseException { SourceDirective it = null; it = _From(); {if (true) return it;} throw new Error("Missing return statement in function"); } final public void common_SourceDirective(SourceDirective it) throws ParseException { ClassGlobSpec _sources; _sources = _ClassGlobSpec(); it.set_sources(_sources); } final public From _From() throws ParseException { From it = null; it=new From(); jj_consume_token(23); common_SourceDirective(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public PathSegment _PathSegment() throws ParseException { PathSegment it = null; PositiveConstraint _node; NegativeConstraint _constraint; it=new PathSegment(); _node = _PositiveConstraint(); it.set_node(_node); switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 26: case 27: _constraint = _NegativeConstraint(); it.set_constraint(_constraint); break; default: jj_la1[10] = jj_gen; ; } {if (true) return it;} throw new Error("Missing return statement in function"); } final public Constraint _Constraint() throws ParseException { Constraint it = null; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 24: case 25: it = _PositiveConstraint(); break; case 26: case 27: it = _NegativeConstraint(); break; default: jj_la1[11] = 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_Constraint(Constraint it) throws ParseException { GlobSpec _glob; _glob = _GlobSpec(); it.set_glob(_glob); } final public PositiveConstraint _PositiveConstraint() throws ParseException { PositiveConstraint it = null; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 24: it = _Through(); break; case 25: it = _Via(); break; default: jj_la1[12] = 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_PositiveConstraint(PositiveConstraint it) throws ParseException { common_Constraint(it); } final public Through _Through() throws ParseException { Through it = null; it=new Through(); jj_consume_token(24); common_PositiveConstraint(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public Via _Via() throws ParseException { Via it = null; it=new Via(); jj_consume_token(25); common_PositiveConstraint(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public NegativeConstraint _NegativeConstraint() throws ParseException { NegativeConstraint it = null; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 26: it = _Bypassing(); break; case 27: it = _OnlyThrough(); break; default: jj_la1[13] = 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(26); 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(27); common_NegativeConstraint(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public TargetDirective _TargetDirective() throws ParseException { TargetDirective it = null; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 28: it = _To(); break; case 29: it = _ToStop(); break; default: jj_la1[14] = 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_TargetDirective(TargetDirective it) throws ParseException { ClassGlobSpec _targets; _targets = _ClassGlobSpec(); it.set_targets(_targets); } final public To _To() throws ParseException { To it = null; it=new To(); jj_consume_token(28); common_TargetDirective(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public ToStop _ToStop() throws ParseException { ToStop it = null; it=new ToStop(); jj_consume_token(29); common_TargetDirective(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public StrategyCombination _StrategyCombination() throws ParseException { StrategyCombination it = null; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 31: it = _Join(); break; case 32: it = _Merge(); break; case 33: it = _Intersect(); break; default: jj_la1[15] = 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_StrategyCombination(StrategyCombination it) throws ParseException { Strategy _first; Strategy_Commalist _rest; jj_consume_token(9); _first = _Strategy(); it.set_first(_first); jj_consume_token(30); _rest = _Strategy_Commalist(); it.set_rest(_rest); jj_consume_token(10); common_Strategy(it); } final public Join _Join() throws ParseException { Join it = null; it=new Join(); jj_consume_token(31); common_StrategyCombination(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public Merge _Merge() throws ParseException { Merge it = null; it=new Merge(); jj_consume_token(32); common_StrategyCombination(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public Intersect _Intersect() throws ParseException { Intersect it = null; it=new Intersect(); jj_consume_token(33); common_StrategyCombination(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public StrategyReference _StrategyReference() throws ParseException { StrategyReference it = null; Ident _ident; it=new StrategyReference(); _ident = _Ident(); it.set_ident(_ident); common_Strategy(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public SymbolicNameMap _SymbolicNameMap() throws ParseException { SymbolicNameMap it = null; it = _NameMap(); {if (true) return it;} throw new Error("Missing return statement in function"); } final public void common_SymbolicNameMap(SymbolicNameMap it) throws ParseException { } final public NameMap _NameMap() throws ParseException { NameMap it = null; NameBinding_Commalist _bindings; it=new NameMap(); jj_consume_token(18); switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case IDENTIFIER: _bindings = _NameBinding_Commalist(); it.set_bindings(_bindings); break; default: jj_la1[16] = jj_gen; ; } jj_consume_token(19); common_SymbolicNameMap(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public NameBinding _NameBinding() throws ParseException { NameBinding it = null; Name _sgName; ClassGlobSpec _cgNames; it=new NameBinding(); _sgName = _Name(); it.set_sgName(_sgName); jj_consume_token(7); _cgNames = _ClassGlobSpec(); it.set_cgNames(_cgNames); {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 16: case 20: case 34: case 35: case IDENTIFIER: it = _OneGlob(); break; case 18: it = _GlobSet(); break; default: jj_la1[17] = 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(18); switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 16: case 20: case 34: case 35: case IDENTIFIER: _globs = _Glob_Commalist(); it.set_globs(_globs); break; default: jj_la1[18] = jj_gen; ; } jj_consume_token(19); 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 16: case IDENTIFIER: it = _ClassGlob(); break; case 20: case 34: case 35: it = _EdgeGlob(); break; default: jj_la1[19] = 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 20: it = _PartGlob(); break; case 34: it = _SubclassGlob(); break; case 35: it = _SuperclassGlob(); break; default: jj_la1[20] = 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(20); _source = _SourceGlob(); it.set_source(_source); jj_consume_token(30); _name = _PartNameGlob(); it.set_name(_name); jj_consume_token(30); _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(34); _source = _SourceGlob(); it.set_source(_source); jj_consume_token(30); _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(35); _source = _SourceGlob(); it.set_source(_source); jj_consume_token(30); _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 16: it = _AnyClass(); break; default: jj_la1[21] = 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 AnyClass _AnyClass() throws ParseException { AnyClass it = null; it=new AnyClass(); jj_consume_token(16); 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 16: it = _AnyPart(); break; default: jj_la1[22] = 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(16); 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 16: case IDENTIFIER: it = _OneClassGlob(); break; case 18: it = _ClassGlobSet(); break; default: jj_la1[23] = 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(18); _globs = _ClassGlob_Commalist(); it.set_globs(_globs); jj_consume_token(19); 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 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 StrategyName _StrategyName() throws ParseException { StrategyName it = null; Ident _name; it=new StrategyName(); _name = _Ident(); it.set_name(_name); {if (true) return it;} throw new Error("Missing return statement in function"); } final public NodeSubsetName _NodeSubsetName() throws ParseException { NodeSubsetName it = null; Ident _name; it=new NodeSubsetName(); _name = _Ident(); it.set_name(_name); common_Simple(it); {if (true) return it;} throw new Error("Missing return statement in function"); } final public StrategyDef_NPList _StrategyDef_NPList() throws ParseException { StrategyDef_NPList it = null; Nonempty_StrategyDef_NPList _first; it=new StrategyDef_NPList(); jj_consume_token(9); _first = _Nonempty_StrategyDef_NPList(); it.set_first(_first); jj_consume_token(10); {if (true) return it;} throw new Error("Missing return statement in function"); } final public NodeSubsetSpec_PList _NodeSubsetSpec_PList() throws ParseException { NodeSubsetSpec_PList it = null; Nonempty_NodeSubsetSpec_PList _first; it=new NodeSubsetSpec_PList(); jj_consume_token(9); switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case IDENTIFIER: _first = _Nonempty_NodeSubsetSpec_PList(); it.set_first(_first); break; default: jj_la1[24] = jj_gen; ; } jj_consume_token(10); {if (true) return it;} throw new Error("Missing return statement in function"); } final public NodeSubsetExpression_List _NodeSubsetExpression_List() throws ParseException { NodeSubsetExpression_List it = null; Nonempty_NodeSubsetExpression_List _first; it=new NodeSubsetExpression_List(); switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 9: case 14: case 15: case 18: case IDENTIFIER: _first = _Nonempty_NodeSubsetExpression_List(); it.set_first(_first); break; default: jj_la1[25] = jj_gen; ; } {if (true) return it;} throw new Error("Missing return statement in function"); } final public ClassName_BCList _ClassName_BCList() throws ParseException { ClassName_BCList it = null; Nonempty_ClassName_BCList _first; it=new ClassName_BCList(); jj_consume_token(18); _first = _Nonempty_ClassName_BCList(); it.set_first(_first); jj_consume_token(19); {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 PathSegment_List _PathSegment_List() throws ParseException { PathSegment_List it = null; Nonempty_PathSegment_List _first; it=new PathSegment_List(); switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 24: case 25: _first = _Nonempty_PathSegment_List(); it.set_first(_first); break; default: jj_la1[26] = jj_gen; ; } {if (true) return it;} throw new Error("Missing return statement in function"); } final public Strategy_Commalist _Strategy_Commalist() throws ParseException { Strategy_Commalist it = null; Nonempty_Strategy_Commalist _first; it=new Strategy_Commalist(); _first = _Nonempty_Strategy_Commalist(); it.set_first(_first); {if (true) return it;} throw new Error("Missing return statement in function"); } final public NameBinding_Commalist _NameBinding_Commalist() throws ParseException { NameBinding_Commalist it = null; Nonempty_NameBinding_Commalist _first; it=new NameBinding_Commalist(); _first = _Nonempty_NameBinding_Commalist(); 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 36: jj_consume_token(36); _next = _Nonempty_Name(); it.set_next(_next); break; default: jj_la1[27] = jj_gen; ; } {if (true) return it;} throw new Error("Missing return statement in function"); } final public Nonempty_StrategyDef_NPList _Nonempty_StrategyDef_NPList() throws ParseException { Nonempty_StrategyDef_NPList it = null; StrategyDef _it; Nonempty_StrategyDef_NPList _next; it=new Nonempty_StrategyDef_NPList(); _it = _StrategyDef(); it.set_it(_it); switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case IDENTIFIER: _next = _Nonempty_StrategyDef_NPList(); it.set_next(_next); break; default: jj_la1[28] = jj_gen; ; } {if (true) return it;} throw new Error("Missing return statement in function"); } final public Nonempty_NodeSubsetSpec_PList _Nonempty_NodeSubsetSpec_PList() throws ParseException { Nonempty_NodeSubsetSpec_PList it = null; NodeSubsetSpec _it; Nonempty_NodeSubsetSpec_PList _next; it=new Nonempty_NodeSubsetSpec_PList(); _it = _NodeSubsetSpec(); it.set_it(_it); switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case IDENTIFIER: _next = _Nonempty_NodeSubsetSpec_PList(); it.set_next(_next); break; default: jj_la1[29] = jj_gen; ; } {if (true) return it;} throw new Error("Missing return statement in function"); } final public Nonempty_NodeSubsetExpression_List _Nonempty_NodeSubsetExpression_List() throws ParseException { Nonempty_NodeSubsetExpression_List it = null; NodeSubsetExpression _it; Nonempty_NodeSubsetExpression_List _next; it=new Nonempty_NodeSubsetExpression_List(); _it = _NodeSubsetExpression(); it.set_it(_it); switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 9: case 14: case 15: case 18: case IDENTIFIER: _next = _Nonempty_NodeSubsetExpression_List(); it.set_next(_next); break; default: jj_la1[30] = jj_gen; ; } {if (true) return it;} throw new Error("Missing return statement in function"); } final public Nonempty_ClassName_BCList _Nonempty_ClassName_BCList() throws ParseException { Nonempty_ClassName_BCList it = null; ClassName _it; Nonempty_ClassName_BCList _next; it=new Nonempty_ClassName_BCList(); _it = _ClassName(); it.set_it(_it); switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 30: jj_consume_token(30); _next = _Nonempty_ClassName_BCList(); it.set_next(_next); break; default: jj_la1[31] = 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 16: case 18: case 20: case 21: case 34: case 35: case IDENTIFIER: _next = _Nonempty_SGEdge_SList(); it.set_next(_next); break; default: jj_la1[32] = jj_gen; ; } {if (true) return it;} throw new Error("Missing return statement in function"); } final public Nonempty_PathSegment_List _Nonempty_PathSegment_List() throws ParseException { Nonempty_PathSegment_List it = null; PathSegment _it; Nonempty_PathSegment_List _next; it=new Nonempty_PathSegment_List(); _it = _PathSegment(); it.set_it(_it); switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 24: case 25: _next = _Nonempty_PathSegment_List(); it.set_next(_next); break; default: jj_la1[33] = jj_gen; ; } {if (true) return it;} throw new Error("Missing return statement in function"); } final public Nonempty_Strategy_Commalist _Nonempty_Strategy_Commalist() throws ParseException { Nonempty_Strategy_Commalist it = null; Strategy _it; Nonempty_Strategy_Commalist _next; it=new Nonempty_Strategy_Commalist(); _it = _Strategy(); it.set_it(_it); switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 30: jj_consume_token(30); _next = _Nonempty_Strategy_Commalist(); it.set_next(_next); break; default: jj_la1[34] = jj_gen; ; } {if (true) return it;} throw new Error("Missing return statement in function"); } final public Nonempty_NameBinding_Commalist _Nonempty_NameBinding_Commalist() throws ParseException { Nonempty_NameBinding_Commalist it = null; NameBinding _it; Nonempty_NameBinding_Commalist _next; it=new Nonempty_NameBinding_Commalist(); _it = _NameBinding(); it.set_it(_it); switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case 30: jj_consume_token(30); _next = _Nonempty_NameBinding_Commalist(); it.set_next(_next); break; default: jj_la1[35] = 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 30: jj_consume_token(30); _next = _Nonempty_Glob_Commalist(); it.set_next(_next); break; default: jj_la1[36] = 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 30: jj_consume_token(30); _next = _Nonempty_ClassGlob_Commalist(); it.set_next(_next); break; default: jj_la1[37] = 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[38] = 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[39] = 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[40] = 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[41] = 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[42]; final private int[] jj_la1_0 = {0x4c200,0x4c000,0x3800,0x80840000,0x840000,0x20000,0x200000,0x400000,0xc000000,0xc000000,0xc000000,0xf000000,0x3000000,0xc000000,0x30000000,0x80000000,0x0,0x150000,0x110000,0x110000,0x100000,0x10000,0x10000,0x50000,0x0,0x4c200,0x3000000,0x0,0x0,0x0,0x4c200,0x40000000,0x350000,0x3000000,0x40000000,0x40000000,0x40000000,0x40000000,0x0,0x0,0x0,0x0,}; final private int[] jj_la1_1 = {0x200000,0x200000,0x0,0x200003,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x200000,0x20000c,0x20000c,0x20000c,0xc,0x200000,0x200000,0x200000,0x200000,0x200000,0x0,0x10,0x200000,0x200000,0x200000,0x0,0x20000c,0x0,0x0,0x0,0x0,0x0,0x180000,0x180000,0x3800,0x7800,}; 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 < 42; 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 < 42; 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 < 42; 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 < 42; 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 < 42; 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 < 42; 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[62]; for (int i = 0; i < 62; i++) { la1tokens[i] = false; } if (jj_kind >= 0) { la1tokens[jj_kind] = true; jj_kind = -1; } for (int i = 0; i < 42; i++) { if (jj_la1[i] == jj_gen) { for (int j = 0; j < 32; j++) { if ((jj_la1_0[i] & (1<