| 32 | |
| 33 | #ifdef NATIVE_CLASS_OVERRIDES_MARKED |
| 34 | void HaxeNativeClass::addVtableEntries( std::vector<std::string> &outVtable) |
| 35 | { |
| 36 | if (haxeSuper) |
| 37 | haxeSuper->addVtableEntries(outVtable); |
| 38 | |
| 39 | if (functions) |
| 40 | for(ScriptNamedFunction *func = functions; func->name; func++) |
| 41 | if (!func->isStatic && !func->isOverride) |
| 42 | outVtable.push_back( func->name ); |
| 43 | } |
| 44 | #else |
| 45 | void HaxeNativeClass::addVtableEntries(std::vector<std::string>& outVtable) { |
| 46 | hx::UnorderedSet<std::string> methodsSet; |