MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / __hxcpp_dbg_getClasses

Function __hxcpp_dbg_getClasses

src/hx/Debugger.cpp:1317–1332  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1315
1316
1317Array< ::String> __hxcpp_dbg_getClasses()
1318{
1319 Array< ::String> ret = Array_obj< ::String>::__new();
1320
1321 if (__all_classes)
1322 {
1323 for (const char **ptr = __all_classes; *ptr; ptr++)
1324 ret->push(String(*ptr));
1325 }
1326
1327 #ifdef HXCPP_SCRIPTABLE
1328 __hxcpp_dbg_getScriptableClasses(ret);
1329 #endif
1330
1331 return ret;
1332}
1333
1334
1335Array<Dynamic> __hxcpp_dbg_getThreadInfos()

Callers

nothing calls this directly

Calls 4

__newFunction · 0.85
StringClass · 0.50
pushMethod · 0.45

Tested by

no test coverage detected