KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > gnu > expr > Inlineable


1 package gnu.expr;
2
3 public interface Inlineable
4 {
5   public void compile (ApplyExp exp, Compilation comp, Target target);
6
7   public gnu.bytecode.Type getReturnType (Expression[] args);
8 }
9
10
Popular Tags