| 91 | } |
| 92 | |
| 93 | bool ScriptingTypeHandle::IsAssignableFrom(ScriptingTypeHandle c) const |
| 94 | { |
| 95 | while (c) |
| 96 | { |
| 97 | if (c == *this) |
| 98 | return true; |
| 99 | c = c.GetType().GetBaseType(); |
| 100 | } |
| 101 | return false; |
| 102 | } |
| 103 | |
| 104 | bool ScriptingTypeHandle::operator==(const ScriptingTypeInitializer& other) const |
| 105 | { |
no test coverage detected