002a3e090d
Change-Id: Ifd3975becaeeb312a5c3ca12228828ea49a00d2b Reviewed-on: https://dart-review.googlesource.com/76942 Commit-Queue: Peter von der Ahé <ahe@google.com> Reviewed-by: Aske Simon Christensen <askesc@google.com> Auto-Submit: Peter von der Ahé <ahe@google.com>
45 lines
2.4 KiB
Plaintext
45 lines
2.4 KiB
Plaintext
library;
|
|
import self as self;
|
|
import "dart:core" as core;
|
|
|
|
class Super extends core::Object {
|
|
constructor _() → self::Super
|
|
: super core::Object::•()
|
|
;
|
|
}
|
|
class Sub extends self::Super {
|
|
constructor •() → self::Sub
|
|
: final dynamic #t1 = throw new core::NoSuchMethodError::withInvocation(null, new core::_InvocationMirror::_withType(#Super, 0, const <core::Type>[], const <dynamic>[], core::Map::unmodifiable<core::Symbol, dynamic>(const <core::Symbol, dynamic>{})))
|
|
;
|
|
constructor foo() → self::Sub
|
|
: final dynamic #t2 = throw new core::NoSuchMethodError::withInvocation(null, new core::_InvocationMirror::_withType(#Super.foo, 0, const <core::Type>[], const <dynamic>[], core::Map::unmodifiable<core::Symbol, dynamic>(const <core::Symbol, dynamic>{})))
|
|
;
|
|
}
|
|
class Bad extends core::Object {
|
|
constructor foo() → self::Bad
|
|
: final dynamic #t3 = throw new core::NoSuchMethodError::withInvocation(null, new core::_InvocationMirror::_withType(#Bad, 32, const <core::Type>[], const <dynamic>[], core::Map::unmodifiable<core::Symbol, dynamic>(const <core::Symbol, dynamic>{})))
|
|
;
|
|
constructor bar() → self::Bad
|
|
: final dynamic #t4 = throw new core::NoSuchMethodError::withInvocation(null, new core::_InvocationMirror::_withType(#Bad.baz, 32, const <core::Type>[], const <dynamic>[], core::Map::unmodifiable<core::Symbol, dynamic>(const <core::Symbol, dynamic>{})))
|
|
;
|
|
}
|
|
class M extends core::Object {
|
|
synthetic constructor •() → self::M
|
|
: super core::Object::•()
|
|
;
|
|
}
|
|
abstract class _MixinApplication&Super&M extends self::Super implements self::M {
|
|
synthetic constructor _() → void
|
|
: super self::Super::_()
|
|
;
|
|
}
|
|
class MixinApplication extends self::_MixinApplication&Super&M {
|
|
constructor •() → self::MixinApplication
|
|
: final dynamic #t5 = throw new core::NoSuchMethodError::withInvocation(null, new core::_InvocationMirror::_withType(#Super, 0, const <core::Type>[], const <dynamic>[], core::Map::unmodifiable<core::Symbol, dynamic>(const <core::Symbol, dynamic>{})))
|
|
;
|
|
constructor foo() → self::MixinApplication
|
|
: final dynamic #t6 = throw new core::NoSuchMethodError::withInvocation(null, new core::_InvocationMirror::_withType(#Super.foo, 0, const <core::Type>[], const <dynamic>[], core::Map::unmodifiable<core::Symbol, dynamic>(const <core::Symbol, dynamic>{})))
|
|
;
|
|
}
|
|
static method main() → dynamic {}
|