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

Method runObject

src/hx/cppia/Cppia.cpp:2064–2072  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2062 return this;
2063 }
2064 hx::Object *runObject(CppiaCtx *ctx) HXCPP_OVERRIDE
2065 {
2066 hx::Object *obj = thisExpr->runObject(ctx);
2067 CPPIA_CHECK(obj);
2068 String name = nameExpr->runString(ctx);
2069 hx::Object *value = valueExpr->runObject(ctx);
2070 int isProp = isPropExpr->runInt(ctx);
2071 return Dynamic(obj->__SetField(name, Dynamic(value), (hx::PropertyAccess)isProp)).mPtr;
2072 }
2073};
2074
2075

Callers

nothing calls this directly

Calls 5

DynamicClass · 0.50
runObjectMethod · 0.45
runStringMethod · 0.45
runIntMethod · 0.45
__SetFieldMethod · 0.45

Tested by

no test coverage detected