OLD | NEW |
1 library; | 1 library; |
2 import self as self; | 2 import self as self; |
3 import "dart:core" as core; | 3 import "dart:core" as core; |
4 import "package:expect/expect.dart" as exp; | 4 import "package:expect/expect.dart" as exp; |
5 | 5 |
6 class ImplicitScopeTest extends core::Object { | 6 class ImplicitScopeTest extends core::Object { |
7 constructor •() → void | 7 constructor •() → void |
8 : super core::Object::•() | 8 : super core::Object::•() |
9 ; | 9 ; |
10 static method alwaysTrue() → core::bool { | 10 static method alwaysTrue() → core::bool { |
11 return 1.{core::num::+}(1).{core::num::==}(2); | 11 return 1.{core::num::+}(1).{core::num::==}(2); |
12 } | 12 } |
13 static method testMain() → dynamic { | 13 static method testMain() → dynamic { |
14 core::String a = "foo"; | 14 core::String a = "foo"; |
15 dynamic b; | 15 dynamic b; |
16 if(self::ImplicitScopeTest::alwaysTrue()) { | 16 if(self::ImplicitScopeTest::alwaysTrue()) { |
17 dynamic a = "bar"; | 17 dynamic a = "bar"; |
18 } | 18 } |
19 else { | 19 else { |
20 dynamic b = a; | 20 dynamic b = a; |
21 } | 21 } |
22 exp::Expect::equals("foo", a); | 22 exp::Expect::equals("foo", a); |
23 exp::Expect::equals(null, b); | 23 exp::Expect::equals(null, b); |
24 while (!self::ImplicitScopeTest::alwaysTrue()) { | 24 while (!self::ImplicitScopeTest::alwaysTrue()) { |
25 dynamic a = "bar"; | 25 dynamic a = "bar"; |
26 dynamic b = "baz"; | 26 dynamic b = "baz"; |
27 } | 27 } |
28 exp::Expect::equals("foo", a); | 28 exp::Expect::equals("foo", a); |
29 exp::Expect::equals(null, b); | 29 exp::Expect::equals(null, b); |
30 for (core::int i = 0; i.<(10); i = i.+(1)) { | 30 for (core::int i = 0; i.{core::num::<}(10); i = i.{core::num::+}(1)) { |
31 dynamic a = "bar"; | 31 dynamic a = "bar"; |
32 dynamic b = "baz"; | 32 dynamic b = "baz"; |
33 } | 33 } |
34 exp::Expect::equals("foo", a); | 34 exp::Expect::equals("foo", a); |
35 exp::Expect::equals(null, b); | 35 exp::Expect::equals(null, b); |
36 do { | 36 do { |
37 dynamic a = "bar"; | 37 dynamic a = "bar"; |
38 dynamic b = "baz"; | 38 dynamic b = "baz"; |
39 } | 39 } |
40 while ("black".==("white")) | 40 while ("black".==("white")) |
41 exp::Expect::equals("foo", a); | 41 exp::Expect::equals("foo", a); |
42 exp::Expect::equals(null, b); | 42 exp::Expect::equals(null, b); |
43 } | 43 } |
44 } | 44 } |
45 static method main() → dynamic { | 45 static method main() → dynamic { |
46 self::ImplicitScopeTest::testMain(); | 46 self::ImplicitScopeTest::testMain(); |
47 } | 47 } |
OLD | NEW |