blob: 4f952bca0ad3d4281c45a98672a64714c6876845 [file] [log] [blame]
library /*isNonNullableByDefault*/;
import self as self;
import "dart:core" as core;
class Mixin extends core::Object {
field dynamic field;
synthetic constructor •() self::Mixin
;
method foo() dynamic
;
}
abstract class _Foo&Object&Mixin = core::Object with self::Mixin /*isAnonymousMixin*/ {
synthetic constructor •() self::_Foo&Object&Mixin
: super core::Object::•()
;
mixin-super-stub method foo() dynamic
return super.{self::Mixin::foo}();
mixin-super-stub get field() dynamic
return super.{self::Mixin::field};
mixin-super-stub set field(dynamic value) void
return super.{self::Mixin::field} = value;
}
class Foo extends self::_Foo&Object&Mixin {
synthetic constructor •() self::Foo
;
method foo() dynamic
;
method bar() dynamic
;
}
static method main() dynamic
;