| 734 | bool isThisCall; |
| 735 | |
| 736 | CallFunExpr(const CppiaExpr *inSrc, CppiaExpr *inThisExpr, ScriptCallable *inFunction, Expressions &ioArgs, bool inThisCall ) |
| 737 | : CppiaExpr(inSrc) |
| 738 | { |
| 739 | args.swap(ioArgs); |
| 740 | function = inFunction; |
| 741 | thisExpr = inThisExpr; |
| 742 | returnType = etVoid; |
| 743 | isBoolReturn = false; |
| 744 | isThisCall = inThisCall; |
| 745 | } |
| 746 | |
| 747 | CppiaExpr *link(CppiaModule &inModule) HXCPP_OVERRIDE |
| 748 | { |