Package wyvern.targets.Common.wyvernIL.IL.Stmt

Examples of wyvern.targets.Common.wyvernIL.IL.Stmt.Statement


   * @return
   *     the result of this single step
   */
  public BytecodeValue step() {
    finalValuesSet = false;
    Statement statement = statements.get(pc++);
    BytecodeStatementVisitor visitor;
    visitor = new BytecodeStatementVisitor(currentContext, this);
    currentContext = statement.accept(visitor);
    setFinalVals(emptyVal,"unit"); // if it wasn't set to something else
    return finalValue;
  }
View Full Code Here

TOP

Related Classes of wyvern.targets.Common.wyvernIL.IL.Stmt.Statement

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.