* @return
*/
@Override
public final Return runReturn() {
if (!method.getMethodEntity().getReturnType().equals(Type.VOID_TYPE)) {
throw new VerifyErrorException("Do not specify a return type! ");
}
return OperatorFactory.newOperator(Return.class,
new Class<?>[]{ProgramBlock.class, Parameterized.class}, getExecuteBlock(), null);
}