- 28 Oct, 2016 1 commit
-
-
Phil Quitslund authored
-
- 18 Oct, 2016 1 commit
-
-
Phil Quitslund authored
Bump to latest Dart SDK dev build (`1.21.0-dev.0.0`). * updates to analyzer w/ support for bazel workspaces * removes deprecated analysis `cacheSize` variable access
-
- 05 Oct, 2016 1 commit
-
-
Phil Quitslund authored
* Bump Dart SDK to `1.20.0-dev.10.0`. `1.20.0-dev.10.0` corresponds to `1.20-RC0`. * pubspec.lock cleanup * check for pubspec.lock existence * cleaned up conditional remove
-
- 16 Sep, 2016 1 commit
-
-
Phil Quitslund authored
* Roll to Dart SDK `1.20.0-dev.5.0`. * bumps to `1.20.0-dev.5.0`. * updates `analyzer` API use. * Add explicit types.
-
- 08 Sep, 2016 1 commit
-
-
Phil Quitslund authored
* Udpate to Dart `1.20.0-dev.1.0`. Udpate to Dart `1.20.0-dev.1.0` and corresponding `analyzer` package. * Added `--no-packages-dir`. * Revert extension to master. * Added ignores. * Review nits. * More nits.
-
- 10 Aug, 2016 1 commit
-
-
Phil Quitslund authored
-
- 23 Jun, 2016 1 commit
-
-
pq authored
-
- 22 Jun, 2016 1 commit
-
-
pq authored
* brings in analyzer version (`0.27.4-alpha.14`) corresponding to current Dart SDK (`1.18.0-dev.2.0`). * updates analysis to use prefered API for embedder URI resolution * adds trampolines to `State` and `StatelessWidget` to allow for warning-free within-library @protected access (needed since we closed off access to @protected closures from outside subclasses). * turns off cache dependency tracking for analysis (in DDC this amounted to a 10% speed improvement).
-
- 19 May, 2016 1 commit
-
-
pq authored
Cleans up 3 of the 4 violations of the `overriden_field` lint. The last one is more interesting and I'll defer to someone closer to that code: [lint] Do not override fields. (packages/flutter/test/rendering/rendering_tester.dart, line 91, col 14)
-
- 17 May, 2016 1 commit
-
-
pq authored
-
- 16 May, 2016 1 commit
-
-
pq authored
Net-net: SDK summaries are not safe in the presence of SDK library embedders. Context (and bug to track re-enablement) here: https://github.com/dart-lang/sdk/issues/26467.
-
- 10 May, 2016 2 commits
-
-
pq authored
-
pq authored
The latest dev build has stable summaries so we should start using them. (Also ensures that analysis options are propogating to the SDK analysis context --- see: https://github.com/dart-lang/sdk/issues/26129.)
-
- 09 May, 2016 3 commits
-
-
pq authored
Package mapping is already done by the `PackageDependencyTracker` so this extra check is at best not needed. (At worst could cause an unneeded and costly call to `pub list-package-dirs`!)
-
pq authored
-
pq authored
Updates the analyze command to pass a package map to analysis rather than a file path. This allows us to avoid creating a needless temporary `.packages` file and host directory and saves us a trip to disk to retrieve the contents when building our URI resolvers for analysis.
-
- 06 May, 2016 2 commits
- 05 May, 2016 1 commit
-
-
pq authored
Introduces a new Dart analysis wrapper that works directly with the analyzer API (in favor of shelling out to a separate process). Some consequences: * we no longer need to fear parts (simplifying our dart file gathering) * we can filter by error code (when needed), rather than by error strings * no more IO scraping * no need to generate `main()` or to run with `--package-warnings` * we now specify an analyzer (and linter) version in the pubspec (we’ll want to make sure this doesn’t diverge too far from the analyzer shipped with the SDK but it does give us some room to play with experimental builds) * no more (re)scanning of error source files (and so no more source cache) * should generally be a bit simpler and easier to maintain * runs a bit faster :)
-