*/
public Expression getResult() {
endVisitCode();
byte[] bytes = this.classWriter.toByteArray();
try {
return new ClassExpression(classLoader.defineClass(className, bytes));
}
catch (Exception e) {
throw new CompileExpressionErrorException("define class error", e);
}
}