vsmenon
vsmenon
With an SDK checkout, running: > cd samples-dev/swarm > dart fix --apply . doesn't catch the case here: https://dart-review.googlesource.com/c/sdk/+/253340/2/samples-dev/swarm/App.dart In the IDE, I see this is recognized ("Prefer using ///...
We'd like to track readiness of code for upcoming API deprecations. E.g, if an API is slated to be removed in Dart 3.0, we'd like to be able to mark...
@L-Sypniewski commented on [Sat Jul 13 2019](https://github.com/dart-lang/sdk/issues/37526) Hi, I've encountered an error while trying to run the page via `webdev serve --auto restart` command, however, when I deploy the website...
We may want to consider building the Dart SDK (i.e., the JS files) from sources instead of using the prebuilt dart_sdk.js. We already ship sources with the SDK (need to...
### What information is missing? Content targeted to Web developers interested in Flutter and Flutter for the Web in particular. Might cover text selection, links, etc., in particular. ### How...
Each time I click "Run" on the counter sample, I see >10MB sent over the network per the image below:  This includes multi MB...
Formalize and document the DDC type system / subtyping rules.
To generate types, we need to know if they are ever implemented via a native class. Our current solution isn't modular / scalable. These are non-native types discovered to be...
We need to record annotations from source onto generated JS code.
In the following code, both A and A.from may be invoked as instance methods on an instance of A. ``` dart class A { T x; A(this.x) { print("Constructing an...