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

Unified Diff: pkg/kernel/testcases/closures/for_variable_capture_test.dart.expect

Issue 2767773004: Add Vector type to Kernel (Closed)
Patch Set: Reformat comment with Markdown, throw exception in type propagation 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
Index: pkg/kernel/testcases/closures/for_variable_capture_test.dart.expect
diff --git a/pkg/kernel/testcases/closures/for_variable_capture_test.dart.expect b/pkg/kernel/testcases/closures/for_variable_capture_test.dart.expect
index cb094530b543bb19db825caae0805ddbb2db070d..8f7cc26bb6eb9a23d346e6aadb1d1791b37d9339 100644
--- a/pkg/kernel/testcases/closures/for_variable_capture_test.dart.expect
+++ b/pkg/kernel/testcases/closures/for_variable_capture_test.dart.expect
@@ -1,28 +1,27 @@
library;
import self as self;
import "dart:core" as core;
-import "dart:mock" as mock;
class Closure#main#function extends core::Object implements core::Function {
field core::String note = "This is temporary. The VM doesn't need closure classes.";
- field mock::Context context;
- constructor •(final mock::Context context) → dynamic
+ field Vector context;
+ constructor •(final Vector context) → dynamic
: self::Closure#main#function::context = context
;
method call() → dynamic {
"This is a temporary solution. In the VM, this will become an additional parameter.";
- final mock::Context #contextParameter = this.{self::Closure#main#function::context};
- return #contextParameter.[](0);
+ final Vector #contextParameter = this.{self::Closure#main#function::context};
+ return #contextParameter[1];
}
}
static method main() → dynamic {
dynamic closure;
{
- mock::Context #context = new mock::Context::•(1);
- #context.[]=(0, 0);
+ Vector #context = MakeVector(2);
+ #context[1] = 0;
dynamic fn = new self::Closure#main#function::•(#context);
- for (; #context.[](0).<(3); #context = #context.copy(), #context.[]=(0, #context.[](0).+(1))) {
- #context.[]=(0, #context.[](0).+(1));
+ for (; (#context[1]).<(3); #context = CopyVector(#context), #context[1] = (#context[1]).+(1)) {
+ #context[1] = (#context[1]).+(1);
closure = fn;
}
}
« no previous file with comments | « pkg/kernel/testcases/closures/for_loop.dart.expect ('k') | pkg/kernel/testcases/closures/instance_tear_off.dart.expect » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698