| 1833 | #endif |
| 1834 | |
| 1835 | bool ScriptableField(hx::Object *inObj, const ::String &inName,hx::PropertyAccess inCallProp,Dynamic &outResult) |
| 1836 | { |
| 1837 | void **vtable = inObj->__GetScriptVTable(); |
| 1838 | return ((CppiaClassInfo *)vtable[-1])->getField(inObj,inName,inCallProp,outResult); |
| 1839 | } |
| 1840 | |
| 1841 | bool ScriptableField(hx::Object *inObj, int inName,hx::PropertyAccess inCallProp,Float &outResult) |
| 1842 | { |
nothing calls this directly
no test coverage detected