blob: 84820639b629f55a816327a3461efc8072291f50 [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 foo() self::A*
return null;
}
abstract class B extends self::A {
synthetic constructor •() self::B*
: super self::A::•()
;
abstract method foo() self::B*;
}
class C extends core::Object {
synthetic constructor •() self::C*
: super core::Object::•()
;
method noSuchMethod(core::Invocation* _) dynamic
return null;
}
class D extends self::C implements self::B {
synthetic constructor •() self::D*
: super self::C::•()
;
no-such-method-forwarder method foo() self::B*
return this.{self::C::noSuchMethod}(new core::_InvocationMirror::_withType(#C1, 0, #C2, #C3, core::Map::unmodifiable<core::Symbol*, dynamic>(#C4))) as{TypeError} self::B*;
}
static method main() dynamic {}
constants {
#C1 = #foo
#C2 = <core::Type*>[]
#C3 = <dynamic>[]
#C4 = core::_ImmutableMap<core::Symbol*, dynamic> {_kvPairs:#C3}
}