Skip to content

Commit 071b655

Browse files
hashseedCommit bot
authored and
Commit bot
committed
[debugger] Scope iterator should not visit inner function literals.
[email protected] BUG=chromium:621361 Review-Url: https://codereview.chromium.org/2185913003 Cr-Commit-Position: refs/heads/master@{#38087}
1 parent 94ab292 commit 071b655

File tree

2 files changed

+45
-0
lines changed

2 files changed

+45
-0
lines changed

src/debug/debug-scopes.cc

+5
Original file line numberDiff line numberDiff line change
@@ -792,6 +792,11 @@ void ScopeIterator::CopyContextExtensionToScopeObject(
792792

793793
void ScopeIterator::GetNestedScopeChain(Isolate* isolate, Scope* scope,
794794
int position) {
795+
if (scope->is_function_scope()) {
796+
// Do not collect scopes of nested inner functions inside the current one.
797+
Handle<JSFunction> function = frame_inspector_->GetFunction();
798+
if (scope->end_position() < function->shared()->end_position()) return;
799+
}
795800
if (scope->is_hidden()) {
796801
// We need to add this chain element in case the scope has a context
797802
// associated. We need to keep the scope chain and context chain in sync.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
// Copyright 2016 the V8 project authors. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
5+
// Flags: --expose-debug-as debug
6+
7+
var Debug = debug.Debug;
8+
var steps = 0;
9+
var exception = null;
10+
11+
function listener(event, execState, eventData, data) {
12+
if (event != Debug.DebugEvent.Break) return;
13+
try {
14+
assertEquals([ debug.ScopeType.Local,
15+
debug.ScopeType.Script,
16+
debug.ScopeType.Global],
17+
execState.frame().allScopes().map(s => s.scopeType()));
18+
var x_value = execState.frame().evaluate("x").value();
19+
if (steps < 2) {
20+
assertEquals(undefined, x_value);
21+
execState.prepareStep(Debug.StepAction.StepIn);
22+
} else {
23+
assertEquals("l => l", x_value.toString());
24+
}
25+
steps++;
26+
} catch (e) {
27+
exception = e;
28+
}
29+
}
30+
31+
Debug.setListener(listener);
32+
33+
(function() {
34+
debugger;
35+
var x = l => l;
36+
})();
37+
38+
Debug.setListener(null);
39+
assertNull(exception);
40+
assertEquals(3, steps);

0 commit comments

Comments
 (0)