| library; |
| import self as self; |
| import "issue42836_lib.dart" as iss; |
| import "dart:core" as core; |
| |
| import "org-dartlang-testcase:///issue42836_lib.dart"; |
| |
| class Legacy extends iss::Generic<core::int*> { |
| synthetic constructor •() → self::Legacy* |
| ; |
| method legacyMethod() → core::int* |
| ; |
| abstract member-signature get _identityHashCode() → core::int*; -> core::Object::_identityHashCode |
| abstract member-signature method _instanceOf(dynamic instantiatorTypeArguments, dynamic functionTypeArguments, dynamic type) → core::bool*; -> core::Object::_instanceOf |
| abstract member-signature method _simpleInstanceOf(dynamic type) → core::bool*; -> core::Object::_simpleInstanceOf |
| abstract member-signature method _simpleInstanceOfTrue(dynamic type) → core::bool*; -> core::Object::_simpleInstanceOfTrue |
| abstract member-signature method _simpleInstanceOfFalse(dynamic type) → core::bool*; -> core::Object::_simpleInstanceOfFalse |
| abstract member-signature operator ==(dynamic other) → core::bool*; -> core::Object::== |
| abstract member-signature get hashCode() → core::int*; -> core::Object::hashCode |
| abstract member-signature method toString() → core::String*; -> core::Object::toString |
| abstract member-signature method noSuchMethod(core::Invocation* invocation) → dynamic; -> core::Object::noSuchMethod |
| abstract member-signature get runtimeType() → core::Type*; -> core::Object::runtimeType |
| } |
| static field self::Legacy* legacyInstance; |
| static method test(core::bool* b) → dynamic |
| ; |
| static method main() → dynamic |
| ; |
| |
| library /*isNonNullableByDefault*/; |
| import self as iss; |
| import "dart:core" as core; |
| |
| import "org-dartlang-testcase:///issue42836.dart"; |
| |
| class Generic<T extends core::Object? = dynamic> extends core::Object { |
| synthetic constructor •() → iss::Generic<iss::Generic::T%> |
| ; |
| } |
| class NonNullable extends iss::Generic<core::int> { |
| synthetic constructor •() → iss::NonNullable |
| ; |
| } |
| class Nullable extends iss::Generic<core::int?> { |
| synthetic constructor •() → iss::Nullable |
| ; |
| } |
| static field iss::NonNullable nonNullableInstance; |
| static field iss::Nullable nullableInstance; |
| static method test(core::bool b) → dynamic |
| ; |