MCPcopy Create free account
hub / github.com/AutoHotkey/AutoHotkey / AppendPropertyName

Method AppendPropertyName

source/Debugger.cpp:1240–1246  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1238}
1239
1240void Debugger::AppendPropertyName(CStringA &aNameBuf, size_t aParentNameLength, const char *aName)
1241{
1242 // Property names are almost always valid identifiers, but even most invalid names
1243 // should work as long as '.' and '[' are not used. Supporting those does not seem
1244 // worth any added code size.
1245 aNameBuf.AppendFormat(".%s", aName);
1246}
1247
1248void Debugger::AppendStringKey(CStringA &aNameBuf, size_t aParentNameLength, const char *aName)
1249{

Callers 2

WriteDynamicPropertyMethod · 0.80
BeginPropertyMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected