MCPcopy Create free account
hub / github.com/TASEmulators/fceux / getFullName

Method getFullName

src/ld65dbg.cpp:24–35  ·  view source on GitHub ↗

---------------------------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

22 }
23 //---------------------------------------------------------------------------------------------------
24 void scope::getFullName(std::string &out)
25 {
26 if ( _parent )
27 {
28 _parent->getFullName(out);
29 }
30 if (!_name.empty())
31 {
32 out.append(_name);
33 out.append("::");
34 }
35 }
36 //---------------------------------------------------------------------------------------------------
37 sym::sym(int id, const char *name, int size, int value, int type)
38 : _name(name ? name : ""), _id(id), _size(size), _value(value), _type(type), _scope(nullptr), _segment(nullptr)

Callers 1

ld65_SymbolLoadMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected