Dart GitHub Bot

Results 101 comments of Dart GitHub Bot
trafficstars

**Summary:** The `-fno-omit-frame-pointer` flag is being passed to clang-cl on Windows, which is not supported and causes warnings. This flag is likely being passed incorrectly from the Dart SDK's build...

**Summary:** The `dart build` command and `dart devtools` were failing when run from the PATH environment variable because they couldn't locate the `dart` executable. The fix involves using the resolved...

**Summary:** The user wants to use the `file` package's `FileSystem` with the Dart Analyzer's `ResourceProvider` to simplify testing. Currently, the `ResourceProvider` doesn't accept a `FileSystem`, requiring separate memory file systems...

**Summary:** The user is requesting extensions for JSBigInt and BigInt in `js-interop` to enable seamless conversion between these types. They are encountering errors related to the use of BigInt in...

**Summary:** Analysis server plugins were not receiving the correct context roots, leading to incorrect plugin behavior and potential race conditions. This fix ensures that analysis contexts are created at all...

**Summary:** The Dart SDK uses `package:test_runner` for testing, while external users use `package:test`. This creates friction for packages used both inside and outside the SDK due to differing features and...

**Summary:** The analyzer is no longer navigating up the directory tree to find the closest `analysis_options.yaml` file in Dart 3.5.0 and 3.5.1, which is a regression from Dart 3.4.0. A...

**Summary:** The analyzer fails to detect duplicate extensions defined in separate part files, leading to runtime errors. The analyzer correctly identifies the issue when both extensions are in the same...

**Summary:** The user is encountering a build error when using `js_interop`'s `isA` method with a generic type parameter constrained to `web.Element`. The error message indicates that the type argument `T`...

**Summary:** Expression evaluation in the debugger incorrectly throws an error when evaluating an extension method call on an `int` value. The error message indicates that the method is not defined...