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