MCPcopy Create free account
hub / github.com/beefytech/Beef / GetTypeName

Method GetTypeName

BeefRT/rt/Object.cpp:5–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3USING_NS_BF;
4
5Beefy::String bf::System::Object::GetTypeName()
6{
7 String* strObj = BFRTCALLBACKS.String_Alloc();
8 Type* type = _GetType();
9 BFRTCALLBACKS.Type_GetFullName(type, strObj);
10 Beefy::String str(strObj->ToStringView());
11 BFRTCALLBACKS.Object_Delete(strObj);
12 return str;
13}
14
15Beefy::String bf::System::Type::GetFullName()
16{

Callers 3

ProcessSweepInfoMethod · 0.45
Dbg_ObjectPreDeleteMethod · 0.45

Calls 1

ToStringViewMethod · 0.45

Tested by

no test coverage detected