sdk icon indicating copy to clipboard operation
sdk copied to clipboard

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

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

Can you add the support of RFC 9266: Channel Bindings for TLS 1.3? - https://datatracker.ietf.org/doc/html/rfc9266 Little details, to know easily: - tls-unique for TLS =< 1.2 - tls-exporter for TLS...

area-vm
area-library
library-io
customer-flutter

```console scheglov@scheglov-macbookpro4:~/Source/Dart/sdk.git/sdk (aa-publish)$ d-rts Total 447 tests, of which 104 are expected to fail. 00:53 +4962: analysis_server | lsp | CompletionTest | test_completeFunctionCalls_resolve_producesCorrectEditWithoutInsertText ===== CRASH ===== si_signo=Segmentation fault: 11(11), si_code=2,...

area-vm

Related issue: https://github.com/dart-lang/sdk/issues/49544 The cherry pick was fine to unblock but I think the right solution to this is to stop treating non-g3 BAZEL workspaces as BAZEL workspaces as we...

area-analyzer
analyzer-package

IFrameElement.contentWindow does not have a property document workaround ```dart var write = js.JsObject.fromBrowserObject(iframeForPrint)['contentWindow'] ['document'] as js.JsObject; write.callMethod( 'write', ['Injected from parent frame']); await Future.delayed(Duration(milliseconds: 200)); var print = js.JsObject.fromBrowserObject(iframeForPrint)['contentWindow'] ['print']...

area-library
library-html

### Commit(s) to merge e4dd92c1088dd376e45de308f9b7dee5e4a70d49 ### Target beta ### Issue Description For open source Dart/Flutter users, if they try to `dart analyze` a package that has a file named `WORKSPACE`...

area-analyzer
cherry-pick-review

```dart dcall(f, args, [@undefined named]) => _checkAndCall( f, null, JS('', 'void 0'), null, args, named, JS('', 'f.name')); dgcall(f, typeArgs, args, [@undefined named]) => _checkAndCall(f, null, JS('', 'void 0'), typeArgs, args,...

P2
web-dev-compiler
area-web
web-triage-1

I searched for an issue to track progress of implementing HTTP/3 in the standard library but couldn't find one, so I'm opening this new issue to track this (presumably inevitable)...

area-library
library-io
type-enhancement

The [`KeyboardEvent.keyCode`](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/keyCode) property is deprecated in favor of [`KeyboardEvent.code`](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/code), which is supported by all browsers except IE. `dart:html` still provides `keyCode` along with all [the KeyCode values](https://api.dart.dev/stable/2.4.1/dart-html/KeyCode-class.html). We should mark...

web-libraries
library-html
area-web

JSInterop with `@staticInterop` only supports dispatching code statically and doesn't support mocking logic by implementing a Dart interface. Instead, mocks need to be implemented at the JS layer. This bug...

web-js-interop
area-web

The error message when you call a torn off generic method dynamically contains the wrong name of the method. ```dart main() { var a = A(); dynamic d = a.foo;...

P2
web-dev-compiler
area-web
web-triage-1