- 09 May, 2016 17 commits
-
-
Hans Muller authored
-
Phil Quitslund authored
Remove gratuitous pub resolver from flutter analysis.
-
Adam Barth authored
-
Chinmay Garde authored
-
Phil Quitslund authored
Bump Dart SDK to 1.17.0-dev.2.0.
-
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`!)
-
Hans Muller authored
-
pq authored
-
Phil Quitslund authored
Analyze update to use in-memory package map.
-
pq authored
-
Hans Muller authored
-
Devon Carew authored
-
Adam Barth authored
Fixes #3795
-
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.
-
Jason Simmons authored
-
Jason Simmons authored
-
Phil Quitslund authored
Fix analyzer error messages.
-
- 07 May, 2016 1 commit
-
-
Adam Barth authored
TextAlign applies to a whole paragraph instead of applying to an individual text span. This patch moves the property out of TextStyle and into a separate property on Text and RichText.
-
- 06 May, 2016 9 commits
-
-
Chinmay Garde authored
-
pq authored
-
pq authored
Will have the result of restoring `[static warning]` to `[warning]`, etc. (This is essentially how we handle it in the analyzer CLI.)
-
Adam Barth authored
Fixes #3759
-
Phil Quitslund authored
Analysis re-work to use analyzer APIs.
-
Ian Hickson authored
It has no more clients. Follow-up to #3734. Fixes #2484
-
pq authored
-
Devon Carew authored
* avoid sending analytics on ci systems * review comments
-
Viktor Lidholt authored
-
- 05 May, 2016 13 commits
-
-
krisgiesing authored
* Move global analysis options file to the repo root Also restore the analysis options file for stocks example, since the global options trigger warnings on generated intl files. * Remove obsolete analysis options file for Material Gallery example
-
Jason Simmons authored
-
pq authored
-
Devon Carew authored
-
pq authored
-
pq authored
-
pq authored
-
pq authored
-
Adam Barth authored
Previously it used Block, which is less efficient for large numbers of items. Also move the top margin out of the menu item to fix the baseline alignment of the text. Fixes #1615
-
Adam Barth authored
Fixes #3747
-
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 :)
-
Adam Barth authored
Fixes #3741
-
Adam Barth authored
This patch sizes the menu such that it is always on screen, but doesn't scroll the menu to ensure that the currently selected item is always visible and on top of the button. That will need to wait for a later patch. Also, teach CustomPaint how to repaint animations more efficiently. Fixes #3720
-