Index: pkg/kernel/testcases/closures/closures.dart.expect |
diff --git a/pkg/kernel/testcases/closures/closures.dart.expect b/pkg/kernel/testcases/closures/closures.dart.expect |
index af90ef3641f8c6510c995b2e5bd5f4f76fed7559..0861f0b2f03634068968e31b2ae63a905597e2f5 100644 |
--- a/pkg/kernel/testcases/closures/closures.dart.expect |
+++ b/pkg/kernel/testcases/closures/closures.dart.expect |
@@ -2,18 +2,6 @@ library; |
import self as self; |
import "dart:core" as core; |
-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 Vector context; |
- constructor •(final Vector context) → dynamic |
- : self::Closure#main#function::context = context |
- ; |
- method call(dynamic x) → dynamic { |
- "This is a temporary solution. In the VM, this will become an additional parameter."; |
- final Vector #contextParameter = this.{self::Closure#main#function::context}; |
- return (#contextParameter[1]).[](x); |
- } |
-} |
static field dynamic f = null; |
static method foo() → dynamic { |
core::print(self::f.call(0)); |
@@ -21,6 +9,9 @@ static method foo() → dynamic { |
static method main(dynamic arguments) → dynamic { |
final Vector #context = MakeVector(2); |
#context[1] = arguments; |
- self::f = new self::Closure#main#function::•(#context); |
+ self::f = MakeClosure<(dynamic) → dynamic>(self::closure#main#function, #context); |
self::foo(); |
} |
+static method closure#main#function(Vector #contextParameter, dynamic x) → dynamic { |
+ return (#contextParameter[1]).[](x); |
+} |