OLD | NEW |
---|---|
(Empty) | |
1 library test; | |
2 import self as self; | |
3 import "dart:core" as core; | |
4 | |
5 static field core::bool x = self::f<core::bool>() || self::f<core::bool>(); | |
6 static field core::bool y = self::f<core::bool>() && self::f<core::bool>(); | |
7 static method f<T extends core::Object>() → self::f::T | |
8 return null; | |
9 static method test() → void { | |
10 core::bool x = self::f<core::bool>() || self::f<core::bool>(); | |
11 core::bool y = self::f<core::bool>() && self::f<core::bool>(); | |
12 } | |
13 static method main() → dynamic {} | |
OLD | NEW |