| Index: src/debug/mirrors.js
|
| diff --git a/src/debug/mirrors.js b/src/debug/mirrors.js
|
| index 689235b151b351a2be160f564f5503964dbc57af..5f837f951c0d88898b333bb567fc709f403d4bd4 100644
|
| --- a/src/debug/mirrors.js
|
| +++ b/src/debug/mirrors.js
|
| @@ -2011,14 +2011,11 @@ FrameMirror.prototype.allScopes = function(opt_ignore_nested_scopes) {
|
| };
|
|
|
|
|
| -FrameMirror.prototype.evaluate = function(source, disable_break,
|
| - opt_context_object) {
|
| +FrameMirror.prototype.evaluate = function(source) {
|
| return MakeMirror(%DebugEvaluate(this.break_id_,
|
| this.details_.frameId(),
|
| this.details_.inlinedFrameIndex(),
|
| - source,
|
| - TO_BOOLEAN(disable_break),
|
| - opt_context_object));
|
| + source));
|
| };
|
|
|
|
|
|
|