| 590 | |
| 591 | #ifdef HXCPP_DEBUGGER |
| 592 | void __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 | |
| 603 | void __hxcpp_dbg_getScriptableFilesFullPath( Array< ::String> ioPaths ) |
| 604 | { |
no test coverage detected