-
Consider the following two programs:
```dart
import 'dart:core' as core;
main() {
core.Never n = throw "away";
}
```
```dart
main() {
Never n = throw "away";
}
```
Both of them…
-
Run the following code in the dartanalyzer version 2.8.0-dev.0.0
```dart
main() {
Function? f1 = null;
f1!(42); // ok
Function? f2 = null;
f2!(42); // Numerous errors
}
```
Output i…
-
failing test that tries to implement the Rect interface. Apparently , svg::Rect used to only implement x, y, width, and height, but now it also has blink_jsObject:
FAILED: dart2analyzer-none-checke…
-
I haven't used either of these in ages.
- `:DartAnalyzer` is currently broken. At some point the error format changed and we never updated our expectations so you get an unusable quickfix list
- F…
-
@munificent, @scheglov, and I are currently trying to get the test bots to test the legacy tests with the NNBD SDK. In this test configuration, the analyzer gets invoked like this: `DART_CONFIGURATIO…
-
Thanks to @sortie for noticing this behavior. This issue may be a 'type-question' or a 'type-bug', depending on the exact [promotion](https://github.com/dart-lang/language/blob/master/working/enhanced…
-
The variance of a formal type parameter of a parameterized type alias must be taken into account when computing the result of an instantiate-to-bound operation and when checking whether a given type i…
-
Dart VM version: 2.7.0-dev.2.1 (Mon Dec 2 20:10:59 2019 +0100) on "windows_x64"
In the following source code method with required parameter is overriden by the method with the parameter which is no…
iarkh updated
4 years ago
-
I have implicit casts disabled in my `analysis_options.yaml`.
i.e.
``` yaml
analyzer:
strong-mode:
implicit-casts: false
implicit-dynamic: false
```
I have the class below:
``…
-
Running dartanalyzer on https://github.com/davidmarne/built_redux fails:
```
Analyzing built_redux...
Unhandled exception:
Stack Overflow
#0 SimpleIdentifierImpl.name (package:analyzer/src/d…
miDeb updated
4 years ago