Chromium Code Reviews| Index: Source/bindings/v8/DebuggerScript.js |
| diff --git a/Source/bindings/v8/DebuggerScript.js b/Source/bindings/v8/DebuggerScript.js |
| index 9d523e3133fd59e3c65da2bbb8cf9b17e8869061..38e48514b1f1ba9ed85bbc20f7407f97cd7fa869 100644 |
| --- a/Source/bindings/v8/DebuggerScript.js |
| +++ b/Source/bindings/v8/DebuggerScript.js |
| @@ -335,7 +335,7 @@ DebuggerScript._frameMirrorToJSCallFrame = function(frameMirror, callerFrame, sc |
| var isAtReturn = !!frameDetails.isAtReturn(); |
| var returnValue = isAtReturn ? frameDetails.returnValue() : undefined; |
| - var scopeMirrors = (scopeDetailsLevel === DebuggerScript.ScopeInfoDetails.NoScopes ? [] : frameMirror.allScopes()); |
| + var scopeMirrors = (scopeDetailsLevel === DebuggerScript.ScopeInfoDetails.NoScopes ? [] : frameMirror.allScopes(scopeDetailsLevel === DebuggerScript.ScopeInfoDetails.FastAsyncScopes)); |
|
yurys
2014/03/25 08:51:17
Is this parameter already supported in V8?
aandrey
2014/03/25 08:57:31
Surely.
V8 change: https://codereview.chromium.org
|
| var scopeTypes = new Array(scopeMirrors.length); |
| var scopeObjects = new Array(scopeMirrors.length); |
| for (var i = 0; i < scopeMirrors.length; ++i) { |