Implement Debugger.setSkipAllPauses
Implement the action as no-op for skipped=false. This argument value is sent by the front-end when pausing program execution.
This commit is contained in:
Родитель
65c6177b26
Коммит
ffbfbe9e92
|
@ -441,6 +441,13 @@ DebuggerAgent.prototype = {
|
|||
done(err, result);
|
||||
}
|
||||
);
|
||||
},
|
||||
|
||||
setSkipAllPauses: function(params, done) {
|
||||
if (params.skipped)
|
||||
done(new Error('Not implemented.'));
|
||||
else
|
||||
done();
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче