sdk
sdk copied to clipboard
The Dart SDK, including the VM, dart2js, core libraries, and more.
The tests ``` service_2/breakpoint_in_package_parts_class_file_uri_test/dds RuntimeError (expected Pass) service_2/breakpoint_in_package_parts_class_file_uri_test/service RuntimeError (expected Pass) ``` are failing on configurations ``` app_jitk-linux-release-x64 ``` The tests were flaky until recently. From log: ``` >testee>out> Instance...
Migration tool fails to detect that a method lacking a `return` statement implicitly returns `null`.
This came up during @vsmenon's migration of `samples-dev/swarm`. See https://dart-review.googlesource.com/c/sdk/+/253702/comments/bffd8796_22f80104.
This came up in @vsmenon's migration of `samples-dev/swarm`. See https://dart-review.googlesource.com/c/sdk/+/253702/comments/dcd71981_96c7c77c.
This came up during @vsmenon's migration of `samples-dev/swarm`. See https://dart-review.googlesource.com/c/sdk/+/253702/comments/c718f352_4a44a875.
I've just been looking at several examples in our internal codebase where the output of the migration tool gets flagged for additional review due to the `invalid_null_aware_operator` warning. There seem...
See the generalized description of the issue in https://github.com/dart-lang/sdk/issues/49582. The actual error happened after migration of dwds to null safety. The culprit was `DwdsVmClient` passing a sink from `StreamController` to...
The Dart mirrors core library (`dart:mirrors`) is currently in a sub-optimal state: * It is marked "experimental" in the [list of core libraries](https://dart.dev/guides/libraries) * It is marked "unstable" in the...
This tracker is for issues related to: * Dart VM ## Description We should be able to transfer any object over SendPort in constant time if we know: 1) Isolates...
There are new test failures on [[deps] Roll new benchmark_harness...[dds] Include exception text in DAP StoppedEvent text field](https://github.com/dart-lang/sdk/compare/2a440e14f1af4dbc1fb36ad3583bf485c0235d6f~...2e2e2ea1e83be1c0c885ca98c724c320bdd25197). The tests ``` service_2/break_on_default_constructor_test/dds Timeout (expected Pass) ``` are failing on configurations...
On Windows the following programm doesn't fail but prints an error message ```dart import "dart:io"; main() async { await RawDatagramSocket.bind(InternetAddress.loopbackIPv4, 0, reusePort: true); } ``` Output is ``` C:/dart-sdk/bin/dart.exe --enable-asserts...