1 /*2 * ClosureCallback.java3 *4 * Created on January 4, 2007, 12:32 AM5 *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 ClosureCallback {17 public void compile(Compiler context);18 }19