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 |
new file mode 100644 |
index 0000000000000000000000000000000000000000..4347b22de17ab5938aa9c2d8bdd1fc334584dea8 |
--- /dev/null |
+++ b/pkg/kernel/testcases/closures/for_variable_capture_test.dart.expect |
@@ -0,0 +1,34 @@ |
+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 |
+ : 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); |
+ } |
+} |
+static method main() → dynamic { |
+ dynamic closure; |
+ { |
+ mock::Context #context = new mock::Context::•(1); |
+ #context.parent = null; |
+ #context.[]=(0, 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)); |
+ closure = fn; |
+ } |
+ } |
+ dynamic x = closure.call(); |
+ if(!x.==(1)) { |
+ throw "Expected 1, but got ${x}."; |
+ } |
+} |