OLD | NEW |
(Empty) | |
| 1 library; |
| 2 import self as self; |
| 3 import "dart:core" as core; |
| 4 import "dart:mock" as mock; |
| 5 |
| 6 class Closure#main#function extends core::Object implements core::Function { |
| 7 field core::String note = "This is temporary. The VM doesn't need closure clas
ses."; |
| 8 field mock::Context context; |
| 9 constructor •(final mock::Context context) → dynamic |
| 10 : self::Closure#main#function::context = context |
| 11 ; |
| 12 method call(dynamic x) → dynamic { |
| 13 "This is a temporary solution. In the VM, this will become an additional par
ameter."; |
| 14 final mock::Context #contextParameter = this.{self::Closure#main#function::c
ontext}; |
| 15 return self::v = let final dynamic #t1 = #contextParameter in let final dyna
mic #t2 = 0 in let final dynamic #t3 = x in let final dynamic #t4 = #t1.[]=(#t2,
#t3) in #t3; |
| 16 } |
| 17 } |
| 18 class Closure#main#function#1 extends core::Object implements core::Function { |
| 19 field core::String note = "This is temporary. The VM doesn't need closure clas
ses."; |
| 20 field mock::Context context; |
| 21 constructor •(final mock::Context context) → dynamic |
| 22 : self::Closure#main#function#1::context = context |
| 23 ; |
| 24 method call() → dynamic { |
| 25 "This is a temporary solution. In the VM, this will become an additional par
ameter."; |
| 26 final mock::Context #contextParameter = this.{self::Closure#main#function#1:
:context}; |
| 27 for (; let final dynamic #t5 = #contextParameter in let final dynamic #t6 =
0 in let final dynamic #t7 = self::v in let final dynamic #t8 = #t5.[]=(#t6, #t7
) in #t7; ) { |
| 28 self::v = false; |
| 29 } |
| 30 } |
| 31 } |
| 32 static field dynamic v = null; |
| 33 static method main(dynamic arguments) → dynamic { |
| 34 final mock::Context #context = new mock::Context::•(1); |
| 35 #context.parent = null; |
| 36 #context.[]=(0, null); |
| 37 new self::Closure#main#function::•(#context).call(87); |
| 38 if(!self::v.==(87)) { |
| 39 throw "Unexpected value in v: ${self::v}"; |
| 40 } |
| 41 if(!#context.[](0).==(87)) { |
| 42 throw "Unexpected value in w: ${#context.[](0)}"; |
| 43 } |
| 44 self::v = true; |
| 45 new self::Closure#main#function#1::•(#context).call(); |
| 46 if(!self::v.==(false)) { |
| 47 throw "Unexpected value in v: ${self::v}"; |
| 48 } |
| 49 if(!#context.[](0).==(false)) { |
| 50 throw "Unexpected value in w: ${#context.[](0)}"; |
| 51 } |
| 52 } |
OLD | NEW |