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 | 4 |
5 class C<T extends core::Object> extends core::Object { | 5 class C<T extends core::Object> extends core::Object { |
6 field dynamic v = MakeClosure<<T extends core::Object>(dynamic) → dynamic, sel
f::C::T>(self::closure#C#v#function, null); | 6 field dynamic v = MakeClosure<<T extends core::Object>(dynamic) → dynamic, sel
f::C::T>(self::closure#C#v#function, MakeVector(1)); |
7 final field dynamic y = MakeClosure<() → dynamic>(self::closure#C#y#function,
null); | 7 final field dynamic y = MakeClosure<() → dynamic>(self::closure#C#y#function,
null); |
8 static final field dynamic z = MakeClosure<() → dynamic>(self::closure#C#z#fun
ction, null); | 8 static final field dynamic z = MakeClosure<() → dynamic>(self::closure#C#z#fun
ction, null); |
9 default constructor •() → void | 9 default constructor •() → void |
10 : super core::Object::•() | 10 : super core::Object::•() |
11 ; | 11 ; |
12 } | 12 } |
13 static field dynamic x = MakeClosure<() → dynamic>(self::closure#x#function, nul
l); | 13 static field dynamic x = MakeClosure<() → dynamic>(self::closure#x#function, nul
l); |
14 static method main() → dynamic { | 14 static method main() → dynamic { |
15 if(!new self::C::•<core::String>().v("")) | 15 if(!new self::C::•<core::String>().v("")) |
16 throw "C<String>.v false on String"; | 16 throw "C<String>.v false on String"; |
(...skipping 19 matching lines...) Expand all Loading... |
36 } | 36 } |
37 static method closure#C#y#function(Vector #contextParameter) → dynamic { | 37 static method closure#C#y#function(Vector #contextParameter) → dynamic { |
38 return "y"; | 38 return "y"; |
39 } | 39 } |
40 static method closure#C#z#function(Vector #contextParameter) → dynamic { | 40 static method closure#C#z#function(Vector #contextParameter) → dynamic { |
41 return "z"; | 41 return "z"; |
42 } | 42 } |
43 static method closure#x#function(Vector #contextParameter) → dynamic { | 43 static method closure#x#function(Vector #contextParameter) → dynamic { |
44 return "x"; | 44 return "x"; |
45 } | 45 } |
OLD | NEW |