(message, root)
| 124 | if (!a) throw failure("Expected " + a + " to be truthy", is); |
| 125 | } |
| 126 | function failure(message, root) { |
| 127 | var error = new Error(message); |
| 128 | if (Error.captureStackTrace) |
| 129 | Error.captureStackTrace(error, root); |
| 130 | return error; |
| 131 | } |
| 132 | |
| 133 | var Pos = CodeMirror.Pos; |
| 134 | CodeMirror.Vim.suppressErrorLogging = true; |
no outgoing calls
no test coverage detected
searching dependent graphs…