Package ast

Examples of ast.WhileStmt


  /** Generates code for a break statement. */
  @Override
  public Void visitBreakStmt(BreakStmt nd) {
    /* DONE: generate code for break statement (hint: use ASTNode.getEnclosingLoop and breakTargets;
     *       use units.add() to insert the statement into the surrounding method) */
    WhileStmt whileStmt = nd.getEnclosingLoop();
    Unit breakTargetUnit = this.breakTargets.get(whileStmt);
    this.units.add(j.newGotoStmt(breakTargetUnit));
    return null; // dummy
  }
View Full Code Here

TOP

Related Classes of ast.WhileStmt

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.