Resolved cons = new Resolved(context.getCurrentInstruction(), Type.DOUBLE, instruction.getValue().toString());
context.getExpressions().push(cons);
}
public void visitBIPUSH(BIPUSH instruction) {
ByteLiteral resolved = new ByteLiteral(context.getCurrentInstruction(), instruction.getValue());
context.getExpressions().push(resolved);
LOG.debug("Pushing: "+resolved);
}