| 40 | } |
| 41 | |
| 42 | DynamicArray EnumBase_obj::_hx_getParameters() |
| 43 | { |
| 44 | Array<Dynamic> result = Array_obj<Dynamic>::__new(mFixedFields); |
| 45 | cpp::Variant *fixed = _hx_getFixed(); |
| 46 | for(int i=0;i<mFixedFields;i++) |
| 47 | result[i] = fixed[i]; |
| 48 | return result; |
| 49 | } |
| 50 | |
| 51 | int EnumBase_obj::__Compare(const hx::Object *inRHS) const |
| 52 | { |
nothing calls this directly
no test coverage detected