| 3106 | |
| 3107 | const char *getName() HXCPP_OVERRIDE { return "Call"; } |
| 3108 | CppiaExpr *link(CppiaModule &inModule) HXCPP_OVERRIDE |
| 3109 | { |
| 3110 | func = func->link(inModule); |
| 3111 | LinkExpressions(args,inModule); |
| 3112 | return this; |
| 3113 | } |
| 3114 | hx::Object *runObject(CppiaCtx *ctx) HXCPP_OVERRIDE |
| 3115 | { |
| 3116 | hx::Object *funcVal = func->runObject(ctx); |
nothing calls this directly
no test coverage detected