Package net.sourceforge.javautil.bytecode.api.type.method

Examples of net.sourceforge.javautil.bytecode.api.type.method.IBytecodeMarker


*/
public abstract class LoopBase extends BytecodeBlock {
 
  @Override protected void writeInstructions(BytecodeContextMethod context) {
    this.writeInitializer(context);
    IBytecodeMarker loop = context.getWriter().mark(context);
    try {
      context.pushLoop(new BytecodeScope(context.getScope(0), loop, context.getScope(0).getEnd()));
      this.writeCondition(context);
      this.writeLoopLogic(context);
      context.getWriter().jump(context, loop);
View Full Code Here

TOP

Related Classes of net.sourceforge.javautil.bytecode.api.type.method.IBytecodeMarker

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.