| 117 | hx::ScriptFunction Object::__script_construct; |
| 118 | |
| 119 | static void CPPIA_CALL __s_toString(hx::CppiaCtx *ctx) { |
| 120 | ctx->returnString((ctx->getThis())->toString()); |
| 121 | } |
| 122 | static hx::ScriptNamedFunction __scriptableFunctions[] = { |
| 123 | hx::ScriptNamedFunction("toString",__s_toString,"s"), |
| 124 | hx::ScriptNamedFunction(0,0,0) }; |
nothing calls this directly
no test coverage detected