1 /*2 * BranchCallback.java3 *4 * Created on January 3, 2007, 4:51 PM5 *6 * To change this template, choose Tools | Template Manager7 * and open the template in the editor.8 */9 10 package org.jruby.compiler;11 12 /**13 *14 * @author headius15 */16 public interface BranchCallback {17 public void branch(Compiler context);18 }19