| Index: src/debug/mirrors.js
|
| diff --git a/src/debug/mirrors.js b/src/debug/mirrors.js
|
| index d73941ddb52005a9360f27f88de248bde73d09c0..8055d4f9a4444423fe829b9d1107a82499ff2a83 100644
|
| --- a/src/debug/mirrors.js
|
| +++ b/src/debug/mirrors.js
|
| @@ -16,12 +16,10 @@ var MathMin = global.Math.min;
|
| var promiseStatusSymbol = utils.ImportNow("promise_status_symbol");
|
| var promiseValueSymbol = utils.ImportNow("promise_value_symbol");
|
| var SymbolToString;
|
| -var ToBoolean;
|
|
|
| utils.Import(function(from) {
|
| FunctionSourceString = from.FunctionSourceString;
|
| SymbolToString = from.SymbolToString;
|
| - ToBoolean = from.ToBoolean;
|
| });
|
|
|
| // ----------------------------------------------------------------------------
|
| @@ -2072,7 +2070,7 @@ FrameMirror.prototype.evaluate = function(source, disable_break,
|
| this.details_.frameId(),
|
| this.details_.inlinedFrameIndex(),
|
| source,
|
| - ToBoolean(disable_break),
|
| + TO_BOOLEAN(disable_break),
|
| opt_context_object));
|
| };
|
|
|
|
|