pluotsorbet/blackBox.js

14 строки
264 B
JavaScript
Исходник Обычный вид История

/*
* This script can be black-boxed in the debugger to disable breaking
* at unwanted exception points.
*/
function throwHelper(e) {
J2ME.traceWriter && J2ME.traceWriter.writeLn("Throw " + e);
throw e;
}
function throwPause() {
throwHelper(VM.Pause);
2015-01-14 03:47:42 +03:00
}