sdk
sdk copied to clipboard
The Dart SDK, including the VM, dart2js, core libraries, and more.
This is an alternative proposal to https://github.com/dart-lang/sdk/issues/49073. This proposal improves upon the readability and perhaps the simplicity of that proposal. It is based on @lrhn 's [brief comment](https://github.com/dart-lang/sdk/issues/49073#issuecomment-1189415509) on that...
On the CFE team we have quite a bit of "suites", to speed things up (and integrate with the approval system and whatnot) we have a "unit test suites" runner...
Would it be possible to have more frequent dev builds? Currently have a dev tag every 4 hours if I'm not mistaken. But a dev build only goes out 2...
I am using websockets in my dart application. My server occasionally crashes when a "peer resets the connection". I think its odd that an exception crashes the program. Is there...
Many functions with buffers take a `void*`, for example https://en.cppreference.com/w/c/io/fread. However, using a `Uint8List` and `.address` yields a `Pointer`. It would be useful to be able to pass `uint8list.address.cast()`. That...
Currently, the Dart standard library does not provide a pre-built Stack class like Java. While it's possible to implement a stack using a List, having a dedicated class could offer...
We should evaluate whether it makes sense for dart2wasm recognize `.toJS` expressions and canonicalize & move those objects at compile-time to JS (by emitting them into the `...mjs` file and...
## The Problem Today whenever a library changes (it's API at least), all macros on all libraries that depend on that library (transitively) get re-ran. In pathological cases, this can...
Replacing a method with a getter works when method is marked `@deprecated`. If the method is removed, then the parenthesis for the method are not replaced. See failing test in...
There are new test failures on [[cfe] Make kernel AST and CompilerOptions use strong mode by default...DAS: Refactor the logic determining the location of a new ignore-comment](https://github.com/dart-lang/sdk/compare/df707ac85e9a81b73c80638b759aede6be80ebbb~...63d2008355b981221effb40928e0af8e9f9d03ce). The tests ```...