do not add misformed breakpoints from v8 debugger

pull/468/merge
nightwing 2017-12-29 20:01:29 +04:00
rodzic 78d0c3917a
commit 860d7da637
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -954,6 +954,8 @@ define(function(require, exports, module) {
callback(null, data.breakpoints.map(function(bp) {
return createBreakpoint(bp);
}).filter(function(bp) {
return bp.path;
}));
});
}