(file)
| 87 | BufferedReader = java.io.BufferedReader; |
| 88 | |
| 89 | function fileExists(file) { |
| 90 | if (file.isDirectory()) { |
| 91 | return readModuleFromDirectory(file); |
| 92 | } else { |
| 93 | return file; |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | function _canonize(file) { |
| 98 | return '' + file.canonicalPath.replaceAll('\\\\', '/'); |
no test coverage detected