| 956 | |
| 957 | |
| 958 | Object *Object::GetNativeBase() |
| 959 | { |
| 960 | Object *base; |
| 961 | for (base = mBase; base; base = base->mBase) |
| 962 | if (base->IsNativeClassPrototype()) |
| 963 | return base; |
| 964 | return nullptr; |
| 965 | } |
| 966 | |
| 967 | |
| 968 | bool Object::CanSetBase(Object *aBase) |
no test coverage detected