mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1067589 - fix "nargs" value for Debugger clearAllBreakpoints method. r=jimb
This commit is contained in:
parent
ed630c6a86
commit
17a12c2753
@ -8,7 +8,7 @@ function attach(i) {
|
||||
var handler = {
|
||||
hit: function (frame) {
|
||||
hits++;
|
||||
dbg.clearAllBreakpoints(handler);
|
||||
dbg.clearAllBreakpoints();
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -3009,7 +3009,7 @@ const JSFunctionSpec Debugger::methods[] = {
|
||||
JS_FN("hasDebuggee", Debugger::hasDebuggee, 1, 0),
|
||||
JS_FN("getDebuggees", Debugger::getDebuggees, 0, 0),
|
||||
JS_FN("getNewestFrame", Debugger::getNewestFrame, 0, 0),
|
||||
JS_FN("clearAllBreakpoints", Debugger::clearAllBreakpoints, 1, 0),
|
||||
JS_FN("clearAllBreakpoints", Debugger::clearAllBreakpoints, 0, 0),
|
||||
JS_FN("findScripts", Debugger::findScripts, 1, 0),
|
||||
JS_FN("findAllGlobals", Debugger::findAllGlobals, 0, 0),
|
||||
JS_FN("makeGlobalObjectReference", Debugger::makeGlobalObjectReference, 1, 0),
|
||||
|
Loading…
Reference in New Issue
Block a user