blob: 04600b9637b7e4d254415c98d83beb30e4e0d26a [file] [log] [blame]
library;
import self as self;
import "dart:core" as core;
abstract class I extends core::Object {
synthetic constructor •() self::I
: super core::Object::•()
;
abstract method foo() void;
}
class A extends core::Object implements self::I {
synthetic constructor •() self::A
: super core::Object::•()
;
method noSuchMethod(core::Invocation i) dynamic
return null;
no-such-method-forwarder method foo() void
return this.{self::A::noSuchMethod}(new core::_InvocationMirror::_withType(#C1, 0, #C2, #C3, core::Map::unmodifiable<core::Symbol, dynamic>(#C4)));
}
abstract class _B&Object&A extends core::Object implements self::A {
const synthetic constructor •() self::_B&Object&A
: super core::Object::•()
;
method noSuchMethod(core::Invocation i) dynamic
return null;
}
class B extends self::_B&Object&A {
synthetic constructor •() self::B
: super self::_B&Object&A::•()
;
no-such-method-forwarder method foo() void
return this.{self::A::noSuchMethod}(new core::_InvocationMirror::_withType(#C1, 0, #C2, #C3, core::Map::unmodifiable<core::Symbol, dynamic>(#C4)));
}
static method main() dynamic {}