Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 library; | |
| 2 import self as self; | |
| 3 import "dart:core" as core; | |
| 4 | |
| 5 static field dynamic x = () → dynamic { | |
| 6 dynamic y = 42; | |
| 7 return y; | |
| 8 }; | |
| 9 static method main() → dynamic { | |
| 10 core::print(self::x.call()); | |
| 11 } | |
| OLD | NEW |