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

There are new test failures on https://dart-review.googlesource.com/c/sdk/+/427568 The tests ``` pkg/dtd/test/connected_app_service_test RuntimeError (expected Pass) ``` are failing on configurations ``` unittest-asserts-release-win-arm64 unittest-asserts-release-win-x64 ``` // @kenzieschmoll

area-pkg
gardening
pkg-dtd

https://dart-current-results.web.app/#/filter=corelib/integer_parsed&showAll These tests are in a confusing state: * They are all failing on the JavaScript backends. * Based on the test file names, it seems like they are intended...

area-core-library

Consider the following program: ```dart class C extends void {} void main() {} ``` With `dart` from commit 61f5e8845433088b7eca22c8f3cce4fa10acccd2 we get the following errors: ``` n062.dart:1:17: Error: Type 'void' can't...

legacy-area-front-end
improve-diagnostics

The compile-time error message on `return e;` seems to forget to take the special `async` treatment of `return` into account in some cases: ```dart Future? test1() async { Object? o...

type-bug
legacy-area-front-end
improve-diagnostics

Dart SDK version: 2.13.0-59.0.dev (dev) (Sun Feb 21 18:06:58 2021 -0800) on "windows_x64" Here is a source code example: ``` dart typedef F = void Function(); F toF(X x) =>...

type-bug
P4
contributions-welcome
improve-diagnostics
dart-model-analyzer-spec
area-dart-model

If a callable object is initialized as a `const`, it isn't treated the same as a normal function would be in const contexts. (This happens when it's initialized inline as...

P3
devexp-warning
type-bug
improve-diagnostics
area-devexp

Hello! While debugging some tests for a code-generator I'm working on, I faced the following error: ``` The redirected constructor '_FunctionParameter2 Function(int? Function(int?, {required int b, int c}), int? Function(int?,...

P3
devexp-ux
type-enhancement
improve-diagnostics
area-devexp

The code below produces an error in a both CFE and the analyzer ```dart const c1 = (1,) == (1,); // Ok, c1 is `true` const c2 = (3.14,) ==...

P3
analyzer-constants
type-bug
improve-diagnostics
area-devexp

A class declaration trying to import a non-existing type results in the `implements_non_class` diagnostic rather than pointing out that the type doesn't exist. ``` class A implements B { ///...

devexp-ux
type-enhancement
P4
improve-diagnostics
area-devexp

CFE produces the following errors below. ```dart extension type ET1(int v) {} extension type ET2(int v) implements Object {} test1() { ET1 et1 = ET1(42); et1 = null; // Error:...

improve-diagnostics
model-messages
area-dart-model