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

**Current proposal: https://github.com/dart-lang/sdk/issues/60730#issuecomment-2904942492** What do we promise as layout for `dart build exe`? If we change the directory layout later, we would break users that rely on the results. So...

area-dart-cli
dart-cli-build

Results from `measureUserAgentSpecificMemory` API call: memoryUsageInBytes: 6063731579 memoryInGb: 5.647290105931461 These numbers are significantly higher than when calling this API in non-wasm mode (JS). Taking a heap snapshot from chrome DevTools...

area-dart2wasm

OS: mac 15.5 (24F74) Dart SDK version: 3.8.1 (stable) (Wed May 28 00:47:25 2025 -0700) on "macos_arm64" **Background:** I am building a cli app, and attempting to use an external...

area-dart-cli

Example: ```dart import 'dart:async'; void main() { var f = Future.value(1); var o = f as FutureOr?; for (var b in [true, false]) { if (b) { print(switch (o) {...

area-dart-model
model-flow

```dart class CC { Iterable foo() sync* { yield null; yield {}; } } main() { dynamic c = new CC(); print(c.foo()); } ``` If you leave out the `sync*`...

P3
front-end-fasta
legacy-area-front-end
improve-diagnostics
model-error-recovery

https://github.com/dart-lang/sdk/issues/60221 describes an issue where the VM Service fails to start. While debugging this, I noticed that the VM does not terminate in that case, which results in tests timing...

area-vm
triaged

When an undefined name appears as a class name in a constructor invocation and the context type is Flutter's `Widget` (such as nested inside another constructor invocation or in a...

devexp-quick-fix
type-enhancement
area-devexp

For the past year, in all my projects, the analyzer has been regularly hanging. This manifests as: 1. File saving being blocked (as it uses formatting). ![Image](https://github.com/user-attachments/assets/06682779-3113-4835-b1cb-7a4186b95f37) 2. Broken syntax...

type-performance
P2
area-devexp

I noticed that an `is` test in our code gave rise to code like this: ``` ;; v5

area-vm
type-performance
triaged