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

Raised by @escamoteur at https://github.com/Dart-Code/Dart-Code/issues/736: It would be very comfortable if when overriding a method in an extended class if DartCode could offer a list of potential candidates via intellisense...

area-analyzer
analyzer-completion
P2
type-enhancement
contributions-welcome
analyzer-completion-correctness

Currently it's possible to rename and add `external static` members in an `@anonymous` class (with or without the `@staticInterop` annotation): ```dart @JS('Rename') @anonymous // @staticInterop class AnonymousClass { external static...

web-js-interop
area-web

The Dart VM currently accepts the parameter `--old_gen_heap_size=%MB` to define the maximum size of the old gen heap size (in MB). When compiling a Dart "script" to a self-contained executable...

area-vm
type-question
area-dart-cli
dart-cli-compile

Say I have these 2 files: `main.dart`: ```dart import "lib.dart"; void main() { print(calculate()); } ``` and `lib.dart`: ```dart int calculate() { return 6 * 7; } int calculateSomethingElse() {...

area-analyzer
analyzer-completion
P2
analyzer-completion-correctness

Applying `sort imports` fix when there's an import statement that spans across two lines does not work properly: https://github.com/dart-lang/sdk/assets/46427323/ce45d8a8-b0dc-4cd2-aaf2-56cf971b467e ## Code Sample: The code sample is for reproduction purposes. In...

area-analyzer
analyzer-quick-fix
P2

https://ci.chromium.org/ui/p/dart/builders/ci.sandbox/vm-win-debug-x64/2517/overview ``` --- Command "vm" (took 03.000845s): set DART_CONFIGURATION=DebugX64 & set DART_SUPPRESS_WER=1 & set DART_CRASHPAD_HANDLER=C:\b\s\w\ir\out\DebugX64\crashpad_handler.exe & out\DebugX64\dart.exe --sound-null-safety -Dtest_runner.configuration=vm-win-debug-x64 --ignore-unrecognized-flags --packages=C:\b\s\w\ir\.dart_tool\package_config.json C:\b\s\w\ir\tests\co19\src\LibTest\io\Link\createSync_A06_t01.dart exit code: 255 stderr: Unhandled exception: Expect.equals(expected: ,...

area-vm
library-io
os-windows
P2
gardening
triaged

## Problem I am trying to make a connection with the following URL: https://www.popularmechanics.com/rss/science/?src=rss. In my browser, everything seems fine. However, when I try to retrieve the URL using `.get()`...

area-library
P3
library-io
type-enhancement
triaged

If I step into a macro-generated script with the debugger, the `uri` or the script is an empty string: ```js "topFrame": { "type": "Frame", "kind": "Regular", "location": { "type": "SourceLocation",...

vm-debugger
area-front-end
front-end-kernel
cfe-feature-macros

![image](https://cloud.githubusercontent.com/assets/4499789/9136253/cb335614-3d1d-11e5-82c7-308c6b3da0b6.png) I'd expect completion to suggest library names that are in the same folder or higher. For example if current file is in `project/web/src` I think it is reasonable to...

area-analyzer
analyzer-completion
P3
type-enhancement
analyzer-completion-correctness

Originally, `package:meta` was a compromise (like `package:js`) to allow faster-iteration and versioned releases out of the SDK, and to (as far as I remember?) bypass arguments around what belongs in...

area-library
type-enhancement
analyzer-pkg-meta