| 936 | Expressions args; |
| 937 | |
| 938 | CallDynamicFunction(CppiaModule &inModule, const CppiaExpr *inSrc, |
| 939 | Dynamic inFunction, Expressions &ioArgs ) |
| 940 | : CppiaExprWithValue(inSrc) |
| 941 | { |
| 942 | args.swap(ioArgs); |
| 943 | value = inFunction; |
| 944 | inModule.markable.push_back(this); |
| 945 | } |
| 946 | |
| 947 | CppiaExpr *link(CppiaModule &inModule) HXCPP_OVERRIDE |
| 948 | { |