| 13 | } |
| 14 | |
| 15 | Beefy::String bf::System::Type::GetFullName() |
| 16 | { |
| 17 | String* strObj = BFRTCALLBACKS.String_Alloc(); |
| 18 | BFRTCALLBACKS.Type_GetFullName(this, strObj); |
| 19 | Beefy::String str(strObj->ToStringView()); |
| 20 | BFRTCALLBACKS.Object_Delete(strObj); |
| 21 | return str; |
| 22 | } |
| 23 | |
| 24 | bf::System::Type_NOFLAGS* bf::System::Type::GetTypeData() |
| 25 | { |
no test coverage detected