Package anvil.script.statements

Examples of anvil.script.statements.DoStatement


      flowPop();
  }

  final public void DoStatement(String label) throws ParseException {
  Token t;
  DoStatement stmt;
    t = jj_consume_token(DO);
      stmt = new DoStatement(flowPeek(), toLocation(t), label);
      flowPushChild(stmt);
    Statement();
    jj_consume_token(WHILE);
    jj_consume_token(OPEN);
    Expression();
    jj_consume_token(CLOSE);
    jj_consume_token(SEMICOLON);
      stmt.onWhile((Expression)pop());
    flowPop();
  }
View Full Code Here

TOP

Related Classes of anvil.script.statements.DoStatement

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.