Kevin Moore
Kevin Moore
See https://github.com/dart-lang/build/actions/runs/4536053704/jobs/7992267951?pr=3478 There is an error there – but it's hard to find scrolling through the output. The package and the error reason should be super clear. Maybe use `ansi.dart`...
maybe make it case insensitive? Or at least warn...
https://build.chromium.org/p/client.dart.packages/builders/packages-windows-watcher/builds/912/steps/annotated_steps/logs/stdio
```dart final items = [ 1, 2, 3, (DateTime.now()), // LINT ]; ``` Expect a lint on that last line – but don't get it!
at [f65328a433](https://github.com/flutter/engine/commit/f65328a433ef8b0214ca87ce8c786609a116dd52) with this diff ```diff diff --git a/lib/web_ui/analysis_options.yaml b/lib/web_ui/analysis_options.yaml index 0938119b50..aa66cb0434 100644 --- a/lib/web_ui/analysis_options.yaml +++ b/lib/web_ui/analysis_options.yaml @@ -16,3 +16,4 @@ linter: public_member_api_docs: false unawaited_futures: true use_setters_to_change_properties: false + invalid_runtime_check_with_js_interop_types:...
### Page URL https://docs.flutter.dev/deployment/web/ ### Page source https://github.com/flutter/website/tree/main/src/content/deployment/web.md ### Describe the problem Per this (now closed) issue https://github.com/flutter/flutter/issues/118481 Flutter web supports multi-view. Need to document it. ### Expected fix Document...
## Status **READY** ## Description Use `Expando` instead of cloning each request. - *Should* improve performance. Should be measured. - Allows nested `_request` to be final. (Potentially allows future use...