| 3240 | bool callSuperField; |
| 3241 | |
| 3242 | CallMember(CppiaStream &stream,MemberCallType inCall) |
| 3243 | { |
| 3244 | classId = stream.getInt(); |
| 3245 | fieldId = inCall==callSuperNew ? 0 : stream.getInt(); |
| 3246 | //CPPIALOG("fieldId = %d (%s)\n",fieldId,stream.module->strings[ fieldId ].out_str()); |
| 3247 | int n = stream.getInt(); |
| 3248 | thisExpr = inCall==callObject ? createCppiaExpr(stream) : 0; |
| 3249 | callSuperField = inCall==callSuper; |
| 3250 | ReadExpressions(args,stream,n); |
| 3251 | } |
| 3252 | |
| 3253 | CppiaExpr *linkSuperCall(CppiaModule &inModule) |
| 3254 | { |
nothing calls this directly
no test coverage detected