(file, node, msg)
| 83 | } |
| 84 | |
| 85 | function logError(file, node, msg) { |
| 86 | console.error(file + ' [line ' + node.loc.start.line + '] ' + msg + |
| 87 | '\n ' + node.source()); |
| 88 | EXIT_CODE = 1; |
| 89 | } |
| 90 | |
| 91 | function spaces(len) { |
| 92 | var out = ''; |
no outgoing calls
no test coverage detected
searching dependent graphs…