sdk
sdk copied to clipboard
The Dart SDK, including the VM, dart2js, core libraries, and more.
This issue tracks the web debugging support needed for the wildcards feature. ### References > Correct - I think the nuance here is that in the code we emit in...
Chrome recently made a change that broke the printing of our error messages in the console when errors are uncaught. See: https://chromium-review.googlesource.com/c/v8/v8/+/5378709 In this code I would hope to see...
There is currently no straightforward way to convert a Dart BigInt to a JSBigInt using the dart:js_interop package. **Steps to Reproduce:** 1. Attempt to pass a Dart BigInt to a...
https://github.com/dart-lang/language/blob/main/working/augmentation-libraries/feature-specification.md
The tests ``` pkg/_macros/test/executor/executor_test RuntimeError (expected Pass) ``` are failing on configurations ``` unittest-asserts-release-win-arm64 unittest-asserts-release-win-x64 ```
For 3.3 release: - [x] Approval to deprecate #53218 - [x] Add new `asUnmodifiableView` method that use the deprecated classes. - `UnmodifiableUint8ListView` etc cannot be deprecated for this release as...
Hi! I'm wondering - what are the possible ways to debug we have while developing new macros? The main question - is that possible somehow to put breakpoints into the...
I have an `analysis_options.yaml` using `include`: ``` include: package:dart_flutter_team_lints/analysis_options.yaml ``` And it looks correct because if I "dart analyze" I get findings: ``` info • lib/generate_dart_model.dart:141:15 • Method invocation or...
Too often in code reviews (just saw @lrhn's code review) we are instructing developers to avoid creating `new RegExp('...')` as a class-level or local field (I've even seen it in...
Currently there's no discoverable way to decode JSON from binary data, and users have to convert the binary data to a string first, then decode the string, which is inefficient....