blob: a68fbe3460961b0e2028147ac520d799b00f7089 [file] [log] [blame]
library;
import self as self;
import "dart:core" as core;
abstract class A extends core::Object {
synthetic constructor •() self::A
;
method noSuchMethod(dynamic i) dynamic
;
abstract method foo() void;
}
abstract class B extends self::A {
synthetic constructor •() self::B
;
}
class C extends self::B {
synthetic constructor •() self::C
;
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 •() self::D
;
}
static method main() dynamic
;