-
To reproduce the issue: download `analyzer` `0.35.2` sources and update it to use [pedantic](https://www.dartlang.org/guides/language/analysis-options#default-google-rules-pedantic). Run `dartanalyzer…
isoos updated
5 years ago
-
Dart SDK 2.0.0-dev.61.0
```dart
import 'dart:html';
void main() {
final _foo = querySelector('#foo');
final _bar = querySelector('#bar');
_foo.style.width = '1px';
_bar.style.heig…
-
Code formatting is a personal preference. This does not necessarily indicate that a package is of poor quality. Packages following the style conventions can be of very poor quality (security flaws for…
-
It seems like it is overwhelmed by something in this plugin. Is there any easy way to debug what causes it to get stuck for multiple seconds?
-
Why file `pedantic_analizys_option_[digits].g.yaml` doesn't autodelete after analyzing package? I am using a full list of [linter options](https://dart-lang.github.io/linter/lints/options/options.html…
-
_From @dotdoom on January 6, 2019 14:49_
* Dart SDK Version: `Dart VM version: 2.1.0 (Unknown timestamp) on "linux_x64"`
In the following example, parenthesis seem to be necessary around `..f` ass…
-
Looking at https://pub.dartlang.org/packages/analyzer#-analysis-tab-, the analyzer shows up as having health zero. The only info in "Analysis issues and suggestions" is as follows:
```
Running da…
-
With the following code and with SDK _1.25.0-dev.11.0_ :
- there's no analyzer error
- the VM executes without error
```dart
class A {
int a;
}
class B extends A {
B() : assert(a == n…
-
```dart
bool b = true;
List collectionNum = [3, 1.0, 4, 1, 5];
// ...
Map map =…
-
Consider the following program:
```dart
typedef F = void Function(X);
class A {}
class B extends A {}
A a = new B();
main() => a;
```
Note that `B