Dart GitHub Bot
Dart GitHub Bot
**Summary:** DevTools fails to load profiler data after page refresh, displaying a "could not read file as String" error. The issue likely stems from a server-side problem in DDS, not...
`area-vm`, `type-bug` > The `MethodRecognizer` incorrectly identifies the `log` function from `dart:developer` as `kMathLog` when compiling with asserts enabled. This leads to an error during AOT compilation because the `log`...
**Labels:** `area-vm`, `type-bug` **Summary:** The `Directory.existsSync` method incorrectly returns `false` for directories that require administrator privileges on Windows, even though the directories are listed by `Directory.list`. This issue is likely...
**Summary:** When using isolate-local native callables returning null in a debugger, a spurious `ArgumentError` is thrown, even though the program runs without errors when not debugged. This issue appears to...
**Summary:** The user needs to automatically migrate code from a deprecated API to a new one. The issue is that the new API uses a class with the same name...
**Summary:** This change updates the type inference context for `throw` operands from the unknown type (`_`) to `Object`. This aligns the context with the compiler's requirement that `throw` operands be...
**Summary:** The user requests more frequent dev builds to help debug issues that only appear in published SDKs. They suggest increasing the frequency from the current twice-a-week schedule.
**Summary:** The Dart standard library lacks a dedicated `Stack` class, which could improve code readability, potential performance, and type safety compared to using a `List`. The issue proposes adding a...
**Summary:** The `unnecessary_cast` quick-fix in switch expressions removes only the outer cast, while it should remove all inner casts, leading to more verbose code. The expected behavior is to remove...
**Summary:** The issue requests the addition of a `JSArray.from` static method to the `dart:js_interop` library, mirroring the functionality of JavaScript's `Array.from` method for creating new arrays from iterables.