Dart GitHub Bot

Results 128 comments of Dart GitHub Bot

**Summary:** The user is experiencing unnecessary rebuilds of a custom tool (`qq`) activated globally using `dart pub global activate`. The tool is a thin git wrapper and is not published,...

**Summary:** The user is experiencing an error when using a macro with a `Map` parameter. The macro application fails due to an unhandled map entry, preventing the project from launching.

**Summary:** The macro fails to correctly import `dart:core` when using `DeclarationCode.fromString('import \'dart:core\';')`. This results in a runtime error because the generated code references `String` from both `dart:core` and the imported...

**Summary:** The `MultiStreamController.isPaused` property remains `true` after calling `resume()` on a paused stream subscription, even though the stream itself is no longer paused. This leads to incorrect behavior in the...

**Summary:** The Dart VM produces inefficient code when iterating over an `Iterable` compared to a `List`. This results in unnecessary null checks and moves, even though the code is non-nullable....

**Summary:** The user's Dart analyzer keeps terminating, preventing them from working. They've tried restarting the analyzer and removing Dart-related files from their user folder, but the issue persists. The analyzer...

**Summary:** This issue is an announcement about the Dart team moving some of their repositories into monorepos for easier maintenance. The announcement lists the repositories that are being moved and...

**Summary:** The user reports that using `identical` on two integers is slower than using `==` because `identical` involves boxing the integers, which adds overhead. The user suggests that the VM...

**Summary:** The user reports that the Dart VM performs redundant move operations when comparing multiple token types in a function. The user provides assembly code examples showing the unnecessary moves...

**Summary:** The CFE's AST node visit order sometimes violates assumptions made by flow analysis, potentially leading to incorrect type inference and dropped "why not promoted" context messages. This issue aims...