| 50 | } |
| 51 | |
| 52 | String ScriptingTypeHandle::ToString(bool withAssembly) const |
| 53 | { |
| 54 | String result = GetType().ToString(); |
| 55 | if (withAssembly) |
| 56 | { |
| 57 | result += TEXT("(module "); |
| 58 | result += String(Module->GetName()); |
| 59 | result += TEXT(")"); |
| 60 | } |
| 61 | return result; |
| 62 | } |
| 63 | |
| 64 | const ScriptingType& ScriptingTypeHandle::GetType() const |
| 65 | { |
no test coverage detected