Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(270)

Side by Side Diff: test/mjsunit/regress/regress-crbug-582048.js

Issue 1916343002: [debugger] do not expose temporary variables introduced by the parser. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « test/mjsunit/es6/debug-blockscopes.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
9 function listener(event, exec_state, event_data, data) {
10 if (event != Debug.DebugEvent.Break) return;
11 try {
12 var frame_count = exec_state.frameCount();
13 for (var i = 0; i < frame_count; i++) {
14 var frame = exec_state.frame(i);
15 var scope_count = frame.scopeCount();
16 for (var j = 0; j < scope_count; j++) {
17 var scope = frame.scope(j);
18 assertTrue(scope.scopeObject().property('').isUndefined());
19 }
20 }
21 } catch (e) {
22 print(e, e.stack);
23 exception = e;
24 }
25 }
26
27 Debug.setListener(listener);
28
29 (function(a = 1) { debugger; })();
30
31 Debug.setListener(null);
OLDNEW
« no previous file with comments | « test/mjsunit/es6/debug-blockscopes.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698