OLD | NEW |
(Empty) | |
| 1 library test; |
| 2 import self as self; |
| 3 import "dart:core" as core; |
| 4 |
| 5 class Test1 extends core::Object { |
| 6 field core::int prop; |
| 7 constructor •() → void |
| 8 ; |
| 9 static method test(self::Test1 t) → void |
| 10 ; |
| 11 } |
| 12 class Test2 extends core::Object { |
| 13 field core::num prop; |
| 14 constructor •() → void |
| 15 ; |
| 16 static method test(self::Test2 t) → void |
| 17 ; |
| 18 } |
| 19 class Test3 extends core::Object { |
| 20 field core::double prop; |
| 21 constructor •() → void |
| 22 ; |
| 23 static method test3(self::Test3 t) → void |
| 24 ; |
| 25 } |
| 26 static method getInt() → core::int |
| 27 ; |
| 28 static method getNum() → core::num |
| 29 ; |
| 30 static method getDouble() → core::double |
| 31 ; |
| 32 static method main() → dynamic |
| 33 ; |
OLD | NEW |