| 5867 | } |
| 5868 | |
| 5869 | DEFINE_ACTION_FUNCTION_NATIVE(DObject, BuiltinNew, BuiltinNew) |
| 5870 | { |
| 5871 | PARAM_PROLOGUE; |
| 5872 | PARAM_CLASS(cls, DObject); |
| 5873 | PARAM_INT(outerside); |
| 5874 | PARAM_INT(compatible); |
| 5875 | ACTION_RETURN_OBJECT(BuiltinNew(cls, outerside, compatible)); |
| 5876 | } |
| 5877 | |
| 5878 | ExpEmit FxNew::Emit(VMFunctionBuilder *build) |
| 5879 | { |
nothing calls this directly
no test coverage detected