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

Unified Diff: test/debugger/debug/es8/async-function-debug-scopes.js

Issue 2898163002: Make non-Module generators only context allocate parameters. (Closed)
Patch Set: Rebase Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/debugger/debug/es8/async-function-debug-evaluate.js ('k') | test/debugger/debug/regress-3225.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/debugger/debug/es8/async-function-debug-scopes.js
diff --git a/test/debugger/debug/es8/async-function-debug-scopes.js b/test/debugger/debug/es8/async-function-debug-scopes.js
index 6d54aea98b2bbefbf17474dcb85b90e79de050fe..172ec8fc5654d90eff5513b508001e0ba36e2527 100644
--- a/test/debugger/debug/es8/async-function-debug-scopes.js
+++ b/test/debugger/debug/es8/async-function-debug-scopes.js
@@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+// Flags: --noalways-opt
+
var Debug = debug.Debug;
var global_marker = 7;
@@ -400,7 +402,7 @@ await test(
debug.ScopeType.Closure,
debug.ScopeType.Script,
debug.ScopeType.Global], exec_state);
- CheckScopeContent({a:1, x: 2}, 1, exec_state);
+ CheckScopeContent({a:1}, 1, exec_state);
},
result => result());
@@ -418,7 +420,7 @@ await test(
debug.ScopeType.Script,
debug.ScopeType.Global], exec_state);
CheckScopeContent({e: 'Exception'}, 0, exec_state);
- CheckScopeContent({a:1, x: 2}, 2, exec_state);
+ CheckScopeContent({a:1}, 2, exec_state);
},
result => result());
« no previous file with comments | « test/debugger/debug/es8/async-function-debug-evaluate.js ('k') | test/debugger/debug/regress-3225.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698