-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[stable] [dart2wasm] Only share type parameter fields if nullability …
…allows Bug: #55741 Cherry-pick: https://dart-review.googlesource.com/c/sdk/+/366940 Cherry-pick-request: #55895 Change-Id: I69b31dfff0eddd437becae79a5ae49683906088d Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/369241 Reviewed-by: Ömer Ağacan <omersa@google.com> Commit-Queue: Martin Kustermann <kustermann@google.com>
- Loading branch information
1 parent
7b7786a
commit dc9ede5
Showing
4 changed files
with
48 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// Copyright (c) 2024, 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. | ||
|
||
import 'package:expect/expect.dart'; | ||
|
||
final kTrue = int.parse('1') == 1; | ||
|
||
void main() { | ||
final base = kTrue ? Base<String>('a') : 1; | ||
final baseNullable = kTrue ? Base<String?>('a') : 1; | ||
final sub = kTrue ? Sub<String>('a') : 1; | ||
final subNullable = kTrue ? Sub<String?>('a') : 1; | ||
|
||
Expect.isTrue(base is Base<String>, 'is Base<String>'); | ||
Expect.isTrue(base is Base<String?>, 'is Base<String?>'); | ||
Expect.isTrue(baseNullable is! Base<String>, 'is! Base<String>'); | ||
Expect.isTrue(baseNullable is Base<String?>, 'is Base<String?>'); | ||
Expect.isTrue(sub is Sub<String>, 'is Sub<String>'); | ||
Expect.isTrue(sub is Sub<String?>, 'is Sub<String?>'); | ||
Expect.isTrue(subNullable is! Sub<String>, 'is! Sub<String>'); | ||
Expect.isTrue(subNullable is Sub<String?>, 'is Sub<String?>'); | ||
Expect.isTrue(sub is! Base<String>, 'is! Base<String>'); | ||
Expect.isTrue(sub is Base<String?>, 'is Base<String?>'); | ||
Expect.isTrue(subNullable is! Base<String>, 'is! Base<String>'); | ||
Expect.isTrue(subNullable is Base<String?>, 'is Base<String?>'); | ||
} | ||
|
||
class Base<T> { | ||
Base(this.data); | ||
final T data; | ||
} | ||
|
||
class Sub<T> extends Base<T?> { | ||
Sub(super.data); | ||
} |