| OLD | NEW |
| 1 library; | 1 library; |
| 2 import self as self; | 2 import self as self; |
| 3 import "package:expect/expect.dart" as exp; | 3 import "package:expect/expect.dart" as exp; |
| 4 | 4 |
| 5 static field dynamic global; | 5 static field dynamic global; |
| 6 static method fact4() → dynamic { | 6 static method fact4() → dynamic { |
| 7 dynamic f = 1; | 7 dynamic f = 1; |
| 8 for (dynamic n in <dynamic>[1, 2, 3, 4]) { | 8 for (dynamic n in <dynamic>[1, 2, 3, 4]) { |
| 9 f = f.*(n); | 9 f = f.*(n); |
| 10 } | 10 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 self::global = #t2; | 25 self::global = #t2; |
| 26 f = f.*(self::global); | 26 f = f.*(self::global); |
| 27 } | 27 } |
| 28 return f; | 28 return f; |
| 29 } | 29 } |
| 30 static method main() → dynamic { | 30 static method main() → dynamic { |
| 31 exp::Expect::isTrue(self::fact4().==(24)); | 31 exp::Expect::isTrue(self::fact4().==(24)); |
| 32 exp::Expect::isTrue(self::fact5().==(120)); | 32 exp::Expect::isTrue(self::fact5().==(120)); |
| 33 exp::Expect::isTrue(self::fact6().==(720)); | 33 exp::Expect::isTrue(self::fact6().==(720)); |
| 34 } | 34 } |
| OLD | NEW |