Index: pkg/kernel/testcases/closures/capture_closure.dart.expect |
diff --git a/pkg/kernel/testcases/closures/capture_closure.dart.expect b/pkg/kernel/testcases/closures/capture_closure.dart.expect |
index 2aa69a182fd9f5291e3793d854f2b845a1fedd10..1047ac7d77be4c8c1ec9074a290350dcbe7cbe09 100644 |
--- a/pkg/kernel/testcases/closures/capture_closure.dart.expect |
+++ b/pkg/kernel/testcases/closures/capture_closure.dart.expect |
@@ -1,35 +1,34 @@ |
library; |
import self as self; |
import "dart:core" as core; |
-import "dart:mock" as mock; |
class Closure#main#f 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#f::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#f::context}; |
+ final Vector #contextParameter = this.{self::Closure#main#f::context}; |
return null; |
} |
} |
class Closure#main#g 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#g::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#g::context}; |
- return #contextParameter.[](0).call(); |
+ final Vector #contextParameter = this.{self::Closure#main#g::context}; |
+ return (#contextParameter[1]).call(); |
} |
} |
static method main(dynamic arguments) → dynamic { |
- final mock::Context #context = new mock::Context::•(1); |
- #context.[]=(0, new self::Closure#main#f::•(#context)); |
+ final Vector #context = MakeVector(2); |
+ #context[1] = new self::Closure#main#f::•(#context); |
final () → dynamic g = new self::Closure#main#g::•(#context); |
g.call(); |
} |