sdk
sdk copied to clipboard
The Dart SDK, including the VM, dart2js, core libraries, and more.
During global inference we are effectively building 2 call-graph representations at once. One in the typegraphnode representation, the other with the SideEfffectBuilder objects. Our hope is that we can combine...
There are new test failures on [[cfe] Enable alternative-invalidation-strategy by default](https://github.com/dart-lang/sdk/commit/16624415410e7e80603c209edb67e53303d6073e). The tests ``` service_2/bad_reload_test/dds RuntimeError (expected Pass) service_2/bad_reload_test/service RuntimeError (expected Pass) ``` are failing on configurations ``` dartk-win-debug-x64 dartk-win-release-x64...
A meta-issue to discuss and track server work on quick assists and fixes for [records](https://github.com/dart-lang/language/blob/master/working/0546-patterns/records-feature-specification.md). **CorrectionProducers to Review/Test/Update** - [ ] `MakeVariableNullable` - [ ] `RemoveConst` - [ ] `RemoveUnnecessaryParentheses`...
A meta-issue to discuss and track server work on quick assists and fixes for [patterns](https://github.com/dart-lang/language/blob/master/working/0546-patterns/patterns-feature-specification.md). **CorrectionProducers to Review/Test/Update** - [ ] `RemoveDuplicateCase` - [ ] `UseCurlyBraces`
This is the issue tracking the work that needs to be done in the analysis server to support the patterns feature. If you decide to work on a feature, either...
This is the issue tracking the work that needs to be done in the analysis server to support the `records` feature. If you decide to work on a feature, either...
The Dart Analyzer is taking 1.8110MG of RAM when I have 125 lint rules enabled in `analysis_options.yaml`. After removing the 125 lint rules the memory usage decreased to 450MB (max)....
Our customers encountered a null check failure while running the web debugger. The check fails at https://github.com/dart-lang/sdk/blob/7d8459dc3c2e53b8fff5239bcb13c3c4f28f9666/sdk/lib/_http/http_parser.dart#L199 Stack Trace ``` DDR serve requests error: Null check operator used on a...
# Change If a concrete class implements an interface containing a name that's private to a different library, any attempt to invoke that name will result in an exception getting...
## Proposed change Zones define the concept of “error zones” and prevents some errors from flowing from a future in one error zone to a future in another. We will...