001    package railo.transformer.bytecode.visitor;
002    
003    import org.objectweb.asm.Label;
004    
005    import railo.transformer.bytecode.BytecodeContext;
006    
007    public interface LoopVisitor {
008            
009            public void visitContinue(BytecodeContext bc);
010                    
011            public void visitBreak(BytecodeContext bc);
012    
013            public Label getContinueLabel();
014    
015            public Label getBreakLabel();
016    }