| 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 |
nothing calls this directly
no test coverage detected