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

Function bpt

IDEHelper/Backend/BeModule.cpp:15–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13//////////////////////////////////////////////////////////////////////////
14
15void bpt(Beefy::BeType* t)
16{
17 Beefy::String str;
18 if (t->IsStruct())
19 BeModule::StructToString(str, (BeStructType*)t);
20 else
21 {
22 BeModule::ToString(str, t);
23 str += "\n";
24 }
25 OutputDebugStrF("%s", str.c_str());
26
27 if (t->IsPointer())
28 {
29 bpt(((BePointerType*)t)->mElementType);
30 }
31}
32
33void bpv(Beefy::BeValue* val)
34{

Callers 2

bpvFunction · 0.85
PrintValueMethod · 0.85

Calls 4

ToStringFunction · 0.50
IsStructMethod · 0.45
c_strMethod · 0.45
IsPointerMethod · 0.45

Tested by

no test coverage detected