dart-sdk/tests/language/extension_type/field_promotion_representation_conflicts_test.dart
Lasse R.H. Nielsen 9d933d1281 Retire 3.3 experiments in the 3.4 release.
Tested: No new tests.
Change-Id: Idf19ce8b6743b221841e6cef6b2a80e8ab37860e
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/354260
Auto-Submit: Lasse Nielsen <lrn@google.com>
Reviewed-by: Johnni Winther <johnniwinther@google.com>
Reviewed-by: Nate Bosch <nbosch@google.com>
Reviewed-by: Daco Harkes <dacoharkes@google.com>
Commit-Queue: Lasse Nielsen <lrn@google.com>
2024-03-04 16:09:31 +00:00

64 lines
1.8 KiB
Dart

// Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// Tests that if the representation variable has the same name as other
// non-promotable things in the file, it may nonetheless undergo field promotion
// (this is sound because extension types are resolved statically, so there is
// no danger of the representation variable aliasing to some other declaration,
// as there is for ordinary fields).
import '../static_type_helper.dart';
class C1 {
int? _f = 0;
}
class C2 {
int? get _f => 0;
}
class C3 implements C2 {
noSuchMethod(invocation) => 0;
}
extension type E(Object Function() _f) {
testImplicitThisAccess() {
if (_f is int Function()) {
_f.expectStaticType<Exactly<int Function()>>();
_f().expectStaticType<Exactly<int>>();
}
}
testExplicitThisAccess() {
if (this._f is int Function()) {
this._f.expectStaticType<Exactly<int Function()>>();
this._f().expectStaticType<Exactly<int>>();
}
}
}
testGeneralPropertyAccess(E e) {
if ((e)._f is int Function()) {
(e)._f.expectStaticType<Exactly<int Function()>>();
(e)._f().expectStaticType<Exactly<int>>();
}
}
testPrefixedIdentifierAccess(E e) {
// Note: the analyzer has a special representation for property accesses of
// the form `IDENTIFIER.IDENTIFIER`, so we test this form separately.
if (e._f is int Function()) {
e._f.expectStaticType<Exactly<int Function()>>();
e._f().expectStaticType<Exactly<int>>();
}
}
main() {
int Function() f = () => 0;
E(f).testImplicitThisAccess();
E(f).testExplicitThisAccess();
testGeneralPropertyAccess(E(f));
testPrefixedIdentifierAccess(E(f));
}