public void compile(ByteCompiler context, int operation)
{
super.compile(context, GET);
Code code = context.getCode();
if (operation == GET_BOOLEAN) {
code.invokestatic(code.getPool().addMethodRef(context.TYPE_ANY_OP,
"gt", "(Lanvil/core/Any;Lanvil/core/Any;)Z"));
} else {
code.invokestatic(code.getPool().addMethodRef(context.TYPE_ANY_OP,
"gtA", "(Lanvil/core/Any;Lanvil/core/Any;)Lanvil/core/Any;"));
}