| library; |
| import self as self; |
| |
| import "org-dartlang-testcase:///main_lib.dart" as lib1; |
| import "org-dartlang-testcase:///main_lib.dart" show Extension1; |
| import "dart:test" as lib2; |
| import "dart:test" show Extension2; |
| |
| static method main() → dynamic |
| ; |
| |
| library; |
| import self as self2; |
| import "dart:core" as core; |
| |
| extension Extension1 on core::int { |
| method method1 = self2::Extension1|method1; |
| method tearoff method1 = self2::Extension1|get#method1; |
| } |
| static extension-member method Extension1|method1(lowered final core::int #this) → dynamic |
| ; |
| static extension-member method Extension1|get#method1(lowered final core::int #this) → () → dynamic |
| return () → dynamic => self2::Extension1|method1(#this); |
| |
| library; |
| import self as self3; |
| import "dart:core" as core; |
| |
| extension Extension2 on core::String { |
| method method2 = self3::Extension2|method2; |
| method tearoff method2 = self3::Extension2|get#method2; |
| } |
| static extension-member method Extension2|method2(lowered final core::String #this) → dynamic |
| ; |
| static extension-member method Extension2|get#method2(lowered final core::String #this) → () → dynamic |
| return () → dynamic => self3::Extension2|method2(#this); |