Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[analyzer] not show error when List generics type implicit promotion #51442

Closed
CoderBuck opened this issue Feb 17, 2023 · 2 comments
Closed

[analyzer] not show error when List generics type implicit promotion #51442

CoderBuck opened this issue Feb 17, 2023 · 2 comments
Labels
closed-as-intended Closed as the reported issue is expected behavior

Comments

@CoderBuck
Copy link

CoderBuck commented Feb 17, 2023

code:

class A {}
class A1 extends A {}
class A2 extends A {}

void main() {
  List<A> list = <A>[];
  list = <A1>[];  //   list type is changed to List<A1> 
  list.add(A2());
}

when run
image

> dart --version
Dart SDK version: 2.18.2 (stable) (Tue Sep 27 13:24:11 2022 +0200) on "macos_x64"
@mraleph
Copy link
Member

mraleph commented Feb 17, 2023

Dart's generics are covariant - so this is working as intended.

Language team has previously discussed introducing variance annotations which would allow developers to control this. See

@mraleph mraleph closed this as completed Feb 17, 2023
@mraleph mraleph added the closed-as-intended Closed as the reported issue is expected behavior label Feb 17, 2023
@eernstg
Copy link
Member

eernstg commented Feb 17, 2023

I think it could be useful to mention one more thing:

class A {}
class A1 extends A {}
class A2 extends A {}

void main() {
  List<A> list = <A>[];
  list = <A1>[];  // `list.runtimeType == List<A1>`, static type still `List<A>`.
  list.add(A2()); // Accepted at compile time due to covariance, throws at run time.
}

The reason why list is not promoted at list = <A1>[] is that List<A1> is not a 'type of interest' for list at that point (or ever, in fact), and an assignment will only promote to a type of interest.

You can make a type a type of interest by checking for it:

void main() {
  List<A> list = <A>[];
  if (list is! List<A1>) list = <A1>[];  // Promote `list` to `List<A1>`.
  list.add(A2()); // Compile-time error.
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
closed-as-intended Closed as the reported issue is expected behavior
Projects
None yet
Development

No branches or pull requests

3 participants