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

Function __hxcpp_dbg_getScriptableFiles

src/hx/cppia/CppiaModule.cpp:592–601  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

590
591#ifdef HXCPP_DEBUGGER
592void __hxcpp_dbg_getScriptableFiles( Array< ::String> ioPaths )
593{
594 Array<String> merge = hx::gAllFiles;
595 if (merge.mPtr)
596 for(int i=0;i< merge->length; i++)
597 {
598 if (ioPaths->indexOf( merge[i] ) < 0)
599 ioPaths->push( merge[i] );
600 }
601}
602
603void __hxcpp_dbg_getScriptableFilesFullPath( Array< ::String> ioPaths )
604{

Callers 3

LookupFileNameMethod · 0.85
__hxcpp_dbg_getFilesFunction · 0.85

Calls 2

indexOfMethod · 0.80
pushMethod · 0.45

Tested by

no test coverage detected