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

Function __hxcpp_dbg_getFiles

src/hx/Debugger.cpp:1283–1297  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1281
1282
1283Array< ::String> __hxcpp_dbg_getFiles()
1284{
1285 Array< ::String> ret = Array_obj< ::String>::__new();
1286
1287 for (const char **ptr = hx::__hxcpp_all_files; *ptr; ptr++)
1288 {
1289 ret->push(String(*ptr));
1290 }
1291
1292 #ifdef HXCPP_SCRIPTABLE
1293 __hxcpp_dbg_getScriptableFiles(ret);
1294 #endif
1295
1296 return ret;
1297}
1298
1299Array< ::String> __hxcpp_dbg_getFilesFullPath()
1300{

Callers

nothing calls this directly

Calls 4

__newFunction · 0.85
StringClass · 0.50
pushMethod · 0.45

Tested by

no test coverage detected