sdk
sdk copied to clipboard
The Dart SDK, including the VM, dart2js, core libraries, and more.
According to https://dart.dev/tools/dart-compile#subcommands, Dart does not support the export for C-compatible native dynamic library (DLL) and lacks interoperability with languages other than JS. For example, Dart Sass is difficult to...
The current `StackOverflowError.stackTrace` documentation reads: > The stack trace at the point where this error was first thrown. > > Classes which extend Error will automatically have a stack trace...
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.3.0 to 4.3.1. Release notes Sourced from actions/upload-artifact's releases. v4.3.1 Bump @actions/artifacts to latest version to include updated GHES host check Commits 5d5d22a Merge pull request #515...
Now that `dart:html` usage has been decreasing and is going to continue to. They were moved from `dart:html` as part of https://github.com/dart-lang/sdk/issues/9213, but that continued to be their primary use....
Hi. This ticket was first opened on `flutter` bug tracker: https://github.com/flutter/flutter/issues/68406 It seems `Uri.toString()` convert spaces to `+` in `subject` and `body` for `mailto` scheme. ```dart final uri = Uri(...
I've been experimenting with the new feature Macros and I'm trying to use it to introduce a new class/Type in a library. The editor successfully shows me the library augment...
To reproduce, intentionally make your internet suck or be unstable. Try a subway or something :) Then, any command that sends analytics, i.e. `dart run` or `dart test` hangs for...
This request is specifically for the Angular team, but can be used generally. The problem is as follows: given a function with the following signature: `void foo(Function cb)` there is...
Added documentation to describe the behavior when `Iterable.reduce` is called when it is an empty collection. It's also noted that one may consider using `fold` in that case. --- -...
AngularDart and ACX have lifecycle events that are added via `implements`: ```dart abstract class OnDestroy { /// Implement to receive a notification when the component is being removed. /// ///...