| 362 | */ |
| 363 | |
| 364 | hx::Object *CppiaClassInfo::createInstance(CppiaCtx *ctx,Expressions &inArgs, bool inCallNew) |
| 365 | { |
| 366 | hx::Object *obj = haxeBase->factory(vtable,extraData); |
| 367 | |
| 368 | createDynamicFunctions(obj); |
| 369 | |
| 370 | if (newFunc && inCallNew) |
| 371 | runFunExpr(ctx, newFunc->funExpr, obj, inArgs ); |
| 372 | |
| 373 | return obj; |
| 374 | } |
| 375 | |
| 376 | hx::Object *CppiaClassInfo::createInstance(CppiaCtx *ctx,Array<Dynamic> &inArgs) |
| 377 | { |
no test coverage detected