| 1861 | } |
| 1862 | |
| 1863 | void ScriptableGetFields(hx::Object *inObject, Array< ::String> &outFields) |
| 1864 | { |
| 1865 | void **vtable = inObject->__GetScriptVTable(); |
| 1866 | return ((CppiaClassInfo *)vtable[-1])->GetInstanceFields(inObject,outFields); |
| 1867 | } |
| 1868 | |
| 1869 | bool ScriptableSetField(hx::Object *inObj, const ::String &inName, Dynamic inValue,hx::PropertyAccess inCallProp, Dynamic &outResult) |
| 1870 | { |
nothing calls this directly
no test coverage detected