Files
sdk/pkg/front_end/testcases/missing_constructor.dart.outline.expect
T
Peter von der Ahé 002a3e090d Improve error message on unresolved constructor redirections
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>
2018-10-02 17:02:10 +00:00

35 lines
728 B
Plaintext

library;
import self as self;
import "dart:core" as core;
class Super extends core::Object {
constructor _() → self::Super
;
}
class Sub extends self::Super {
constructor •() → self::Sub
;
constructor foo() → self::Sub
;
}
class Bad extends core::Object {
constructor foo() → self::Bad
;
constructor bar() → self::Bad
;
}
class M extends core::Object {
synthetic constructor •() → self::M
;
}
abstract class _MixinApplication&Super&M = self::Super with self::M {
}
class MixinApplication extends self::_MixinApplication&Super&M {
constructor •() → self::MixinApplication
;
constructor foo() → self::MixinApplication
;
}
static method main() → dynamic
;