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

Unified Diff: runtime/vm/scopes.cc

Issue 2624733003: Gardening: mark tests that are timing out as slow (Closed)
Patch Set: VM [KERNEL] Avoid emitting :expr_temp and capturing :iterator Created 3 years, 9 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 | « runtime/vm/kernel_to_il.cc ('k') | tests/language/language_kernel.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/scopes.cc
diff --git a/runtime/vm/scopes.cc b/runtime/vm/scopes.cc
index e7c04323367039040209ec798b4ba7870dddae1e..277935bf818100250aba2d9c392e1ad177265982 100644
--- a/runtime/vm/scopes.cc
+++ b/runtime/vm/scopes.cc
@@ -639,7 +639,8 @@ void LocalScope::CaptureLocalVariables(LocalScope* top_scope) {
if (variable->is_forced_stack() ||
(variable->name().raw() == Symbols::StackTraceVar().raw()) ||
(variable->name().raw() == Symbols::ExceptionVar().raw()) ||
- (variable->name().raw() == Symbols::SavedTryContextVar().raw())) {
+ (variable->name().raw() == Symbols::SavedTryContextVar().raw()) ||
+ (variable->name().raw() == Symbols::IteratorParameter().raw())) {
// Don't capture those variables because the VM expects them to be on
// the stack.
continue;
« no previous file with comments | « runtime/vm/kernel_to_il.cc ('k') | tests/language/language_kernel.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698