Package org.sugarj.driver.declprovider

Examples of org.sugarj.driver.declprovider.SourceToplevelDeclarationProvider


    return run(source, sourceFile, env, monitor, baseLang, new LinkedList<Driver>());
  }
 
  public static Result run(String source, RelativePath sourceFile, Environment env, IProgressMonitor monitor, AbstractBaseLanguage baseLang, List<Driver> currentlyProcessing) throws IOException, TokenExpectedException, ParseException, InvalidParseTableException, SGLRException, InterruptedException {
    Driver driver = new Driver(env, baseLang, currentlyProcessing);
    return run(driver, new SourceToplevelDeclarationProvider(driver, source), sourceFile, monitor);
  }
View Full Code Here

TOP

Related Classes of org.sugarj.driver.declprovider.SourceToplevelDeclarationProvider

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.