sdk icon indicating copy to clipboard operation
sdk copied to clipboard

The Dart SDK, including the VM, dart2js, core libraries, and more.

Results 764 sdk issues
Sort by recently updated
recently updated
newest added

I am going to call a raw untagged pointer _entangled_ with a tagged pointer if it is either: 1. derived from the tagged pointer (i.e. it is an inner pointer...

area-vm
P2
triaged

The Dart CI and CQ run tests for the packages in the Dart SDK source on builders like https://ci.chromium.org/ui/p/dart/builders/luci.dart.ci.sandbox/pkg-linux-release These builders run package tests written using package:test framework the same...

area-test
area-infrastructure
analyzer-test

Hello 👋 Firstly, I understand our use case is probably not one the Dart team will directly support but `zapp.run` has been working for some time on lots of Dart...

area-analyzer
P3

## Change intent (edit: Updated 2024-01-24 to reflect use of the `hook/` toplevel directory.) A package toplevel `hook/` directory will be reserved for scripts run by the Dart and Flutter...

area-sdk
breaking-change-request
enhancement-breaking-change
breaking-change-approved

Currently Dart only supports limited duration formatting. The only way to get a formatted duration is through Duration.toString(): https://github.com/dart-lang/sdk/blob/bb7f3a7501e4e64fa149d9a42fae6625a88900a8/sdk/lib/core/duration.dart#L241 It'd be helpful to provide richer formatting options. For instance one...

area-library
P3
library-core
type-enhancement

Currently dart2wasm closures use this as hash code: ```dart class _Closure { ... int get hashCode => runtimeType.hashCode; ... } ``` This can be a big issue for any code...

area-dart2wasm

New test language/macros/nesting/macro_impl_uses_macro1_test [added here](https://dart-review.googlesource.com/c/sdk/+/352522) has a macro implementation that relies an a macro application, currently it fails on the CFE. (cfe-strong-linux / cfe-weak-linux) Not sure what's going on here...

area-front-end
cfe-feature-macros
feature-macros

Currently, `HPhi` is just one of the many subclasses of `HInstruction`, but it would be nice to have a stronger separation between phis and non-phis. Our current type hierarchy is...

web-dart2js
type-code-health
area-web

Currently the [`Random`](https://api.flutter.dev/flutter/dart-math/Random-class.html) class doesn't provide a way to get a randomly generated raw bytes. It is especially useful when generating a random string or in other cases where multiple...

area-library
library-math

## Extension Type feature ### Description Implementation issue for https://github.com/dart-lang/language/issues/2727, extension type; a special kind of type that wraps an existing type into a new static type, without the overhead...

area-meta