You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 16, 2022. It is now read-only.
Currently in DDC, the following type-casts are ignored, but should fail:
List<dynamic> a = ['a', 'a', 'a'];
// Should be List<dynamic> cannot be List<String>.List<String> b = a;
These are warnings in the development console (at runtime), but not errors. The language team is attempting to make these errors in DDC, as they will also be errors in the CFE-driven backends (eventually DDK and Dart2JS on Kernel?).
This is the master tracking issue for places in AngularDart we are violating either explicitly (in the runtime, which is easier to change) or implicitly (in the code we generate, which is more difficult to change).
I believe @leonsenft knows of some cases (with list/map literals), right?
Uh oh!
There was an error while loading. Please reload this page.
Currently in DDC, the following type-casts are ignored, but should fail:
These are warnings in the development console (at runtime), but not errors. The language team is attempting to make these errors in DDC, as they will also be errors in the CFE-driven backends (eventually DDK and Dart2JS on Kernel?).
This is the master tracking issue for places in AngularDart we are violating either explicitly (in the runtime, which is easier to change) or implicitly (in the code we generate, which is more difficult to change).
I believe @leonsenft knows of some cases (with list/map literals), right?
/cc @MichaelRFairhurst @srawlins @munificent @leafpetersen.
QueryList
(WIP) Intent to remove: QueryList #688The text was updated successfully, but these errors were encountered: