Package wyvern.tools.typedAST.interfaces

Examples of wyvern.tools.typedAST.interfaces.CoreAST


   * method copied exactly from wyvern.targets.Common.wyvernIL.IL.tests.TestIL
   */
  private List<Statement> getResult(TypedAST input) {
    if (!(input instanceof CoreAST))
      throw new RuntimeException();
    CoreAST cast = (CoreAST) input;
    TLFromAST.flushInts();
    New.resetGenNum();
    ExnFromAST visitor = new ExnFromAST();
    cast.accept(visitor);
    return visitor.getStatments();
  }
View Full Code Here

TOP

Related Classes of wyvern.tools.typedAST.interfaces.CoreAST

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.