Type type = instruction.getType(cpg);
Object instructionValue = instruction.getValue(cpg);
if(Type.STRING == type) {
Expression resolved = new StringLiteral(context.getCurrentInstruction(), instructionValue.toString());
context.getExpressions().push(resolved);
return;
}
else {