2
我在網絡應用程序中使用Prototype,並且當拋出異常(包括處理的異常)時我想中斷。但是,我不想打破用於流量控制的異常,特別是Prototype的each
實現中使用的throw $break
模式。
function detect(iterator, context) {
var result;
this.each(function(value, index) {
if (iterator.call(context, value, index)) {
result = value;
throw $break; // I want to ignore this one
}
});
return result;
}
有誰知道如何讓Chrome的調試器忽略特定的異常?或者讓它忽略特定行引發的異常?甚至是爲了讓它在特定文件中不被破解?