Dart GitHub Bot

Results 101 comments of Dart GitHub Bot
trafficstars

**Summary:** The Dart VM `RegExp` implementation fails to match all emojis correctly. This issue arises when attempting to match a string containing a comprehensive list of emojis, indicating a potential...

**Summary:** The "encapsulate field" assist fails to move `@override` annotations when encapsulating a field that overrides a superclass field. This results in incorrect annotations on the generated getter and setter,...

**Summary:** The error message for `argument_type_not_assignable` is inconsistent when a subclass is used instead of the expected class. The error message for the subclass case is more informative, but both...

**Summary:** The `IOOverrides` class is being marked as `base` to prevent developers from implementing it. This change will break code that currently implements `IOOverrides`, but there are only a few...

**Summary:** The analyzer fails to detect an error when a class inherits multiple members with incompatible signatures, leading to a compilation error. The issue occurs when a class inherits from...

**Summary:** The "CTRL + Click" functionality on a `part of` directive doesn't work when the corresponding `part` directive is missing. This prevents users from easily navigating between files using the...

**Summary:** The `AvoidRedundantArgumentValues` linter rule is encountering an internal error when visiting a `FunctionExpressionInvocationImpl` node. This error occurs due to a `Bad state` exception related to a `DefaultParameterElementImpl` with a...

**Summary:** The user wants to link to the documentation of a library using `@docImports` but the `comment_references` lint prevents this. They propose using `[foo]` to link to the library's documentation,...

**Summary:** The `@docImport` annotation currently doesn't support the `as` keyword for aliasing imported libraries, making it difficult to reference imported symbols in documentation comments. This issue proposes adding support for...

**Summary:** The user wants to convert a `List` to a `JSArray` for use with the `WriteContractParameters` class, but they are unsure how to do this conversion. The user is working...