Index: src/debug/debug.js |
diff --git a/src/debug/debug.js b/src/debug/debug.js |
index 933172c08f778cd1b021b5fab80afb12c55e164d..50bd0a9c06984ba96097c3b12fde117fe065b843 100644 |
--- a/src/debug/debug.js |
+++ b/src/debug/debug.js |
@@ -1419,7 +1419,7 @@ DebugCommandProcessor.prototype.processDebugJSONRequest = function( |
var key = request.command.toLowerCase(); |
var handler = DebugCommandProcessor.prototype.dispatch_[key]; |
if (IS_FUNCTION(handler)) { |
- %_CallFunction(this, request, response, handler); |
+ %_Call(handler, this, request, response); |
} else { |
throw MakeError(kDebugger, |
'Unknown command "' + request.command + '" in request'); |