blob: 05f28393f198cfe87f7f84b59d85940ecac45922 [file] [log] [blame]
library;
import self as self;
import "dart:core" as core;
abstract class A extends core::Object {
synthetic constructor •() self::A
: super core::Object::•()
;
method noSuchMethod(core::Invocation i) dynamic
return null;
abstract method foo() void;
}
abstract class B extends self::A {
synthetic constructor •() self::B
: super self::A::•()
;
}
class C extends self::B {
synthetic constructor •() self::C
: super self::B::•()
;
no-such-method-forwarder method foo() void
return this.{self::A::noSuchMethod}(new core::_InvocationMirror::_withType(#foo, 0, const <core::Type>[], const <dynamic>[], core::Map::unmodifiable<core::Symbol, dynamic>(const <core::Symbol, dynamic>{})));
}
class D extends self::C {
synthetic constructor •() self::D
: super self::C::•()
;
}
static method main() dynamic {}