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

Unified Diff: test/mjsunit/regress/regress-crbug-582051.js

Issue 2491543002: [debug-wrapper] Conditional breaks, locals, evaluate, scopes (Closed)
Patch Set: Rebase Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/mjsunit/regress/regress-crbug-467180.js ('k') | test/mjsunit/regress/regress-opt-after-debug-deopt.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regress/regress-crbug-582051.js
diff --git a/test/mjsunit/regress/regress-crbug-582051.js b/test/mjsunit/regress/regress-crbug-582051.js
deleted file mode 100644
index 93f4e70dfb12615769b38733e6a967dfdd072657..0000000000000000000000000000000000000000
--- a/test/mjsunit/regress/regress-crbug-582051.js
+++ /dev/null
@@ -1,44 +0,0 @@
-// Copyright 2016 the V8 project authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// Flags: --expose-debug-as debug
-
-var test_y = false;
-
-function foo(a = 1) {
- var x = 2;
- debugger;
- eval("var y = 3");
- test_y = true;
- debugger;
-}
-
-var exception = null;
-var break_count = 0;
-var Debug = debug.Debug;
-var ScopeType = debug.ScopeType;
-
-function listener(event, exec_state) {
- if (event != Debug.DebugEvent.Break) return;
- try {
- var scopes = exec_state.frame(0).allScopes();
- var expectation = [ ScopeType.Block,
- ScopeType.Local,
- ScopeType.Script,
- ScopeType.Global ];
- assertEquals(expectation, scopes.map(x => x.scopeType()));
- assertEquals(2, scopes[0].scopeObject().value().x);
- if (test_y) assertEquals(3, scopes[0].scopeObject().value().y);
- assertEquals(1, scopes[1].scopeObject().value().a);
- break_count++;
- } catch (e) {
- print(e);
- exception = e;
- }
-}
-Debug.setListener(listener);
-foo();
-
-assertNull(exception);
-assertEquals(2, break_count);
« no previous file with comments | « test/mjsunit/regress/regress-crbug-467180.js ('k') | test/mjsunit/regress/regress-opt-after-debug-deopt.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698