01: package gnu.expr; 02: 03: import gnu.bytecode.Type; 04: 05: public class IgnoreTarget extends Target { 06: public Type getType() { 07: return Type.void_type; 08: } 09: 10: public void compileFromStack(Compilation comp, Type stackType) { 11: if (!stackType.isVoid()) 12: comp.getCode().emitPop(1); 13: } 14: }