MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / CallMember

Method CallMember

src/hx/cppia/Cppia.cpp:3242–3251  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls 3

createCppiaExprFunction · 0.85
ReadExpressionsFunction · 0.85
getIntMethod · 0.45

Tested by

no test coverage detected