MCPcopy Create free account
hub / github.com/AutoHotkey/AutoHotkey / IsDerivedFrom

Method IsDerivedFrom

source/script_object.cpp:948–955  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

946
947
948bool Object::IsDerivedFrom(IObject *aBase)
949{
950 Object *base;
951 for (base = mBase; base; base = base->mBase)
952 if (base == aBase)
953 return true;
954 return false;
955}
956
957
958Object *Object::GetNativeBase()

Callers 4

IsOfTypeMethod · 0.80
CanSetBaseMethod · 0.80
FindClassMethod · 0.80
HasBaseMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected