Package org.rascalmpl.parser.uptr.recovery

Examples of org.rascalmpl.parser.uptr.recovery.Recoverer


    initializeRecovery(robust, lookaheads, robustProds);
   
    __setInterrupt(false);
    IActionExecutor<IConstructor> exec = new RascalFunctionActionExecutor(this);
   
    return (IConstructor) parser.parse(name, location, input, exec, new DefaultNodeFlattener<IConstructor, IConstructor, ISourceLocation>(), new UPTRNodeFactory(), robustProds.length == 0 ? null : new Recoverer(robustProds, lookaheads));
  }
View Full Code Here


            continue;
          }
          //throw new ImplementationError("class for cached parser " + className + " could not be found");
        }
      
    return (IConstructor) parser.parse(name, location, input, exec, new DefaultNodeFlattener<IConstructor, IConstructor, ISourceLocation>(), new UPTRNodeFactory(), robustProds.length == 0 ? null : new Recoverer(robustProds, lookaheads));
  }
View Full Code Here

TOP

Related Classes of org.rascalmpl.parser.uptr.recovery.Recoverer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.