{
CompilableFunction function = (CompilableFunction)_type;
if (function.isInnerFunction()) {
throw context.CallError("Cannot call inner function: " + _type.toString());
}
return function.execute(context, parameters);
}
case Type.INTERFACE_METHOD:
{
throw context.CallError("Cannot call interface method: " + _type.toString());