1. 28 Oct, 2016 1 commit
  2. 18 Oct, 2016 1 commit
  3. 05 Oct, 2016 1 commit
  4. 16 Sep, 2016 1 commit
  5. 08 Sep, 2016 1 commit
    • Phil Quitslund's avatar
      Update to Dart `1.20.0-dev.1.0`. (#5689) · d2fda677
      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.
      d2fda677
  6. 10 Aug, 2016 1 commit
  7. 23 Jun, 2016 1 commit
  8. 22 Jun, 2016 1 commit
    • pq's avatar
      Update to latest analyzer (0.27.4-alpha.14) and misc. analysis fixes. · 352e2f57
      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).
      352e2f57
  9. 19 May, 2016 1 commit
    • pq's avatar
      Fix analyzer field overrides. · 2a9d2b5f
      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)
      2a9d2b5f
  10. 17 May, 2016 1 commit
  11. 16 May, 2016 1 commit
  12. 10 May, 2016 2 commits
  13. 09 May, 2016 3 commits
    • pq's avatar
      Remove gratuitous pub resolver from flutter analysis. · 18d971d4
      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`!)
      18d971d4
    • pq's avatar
      Constructor ordering. · 1e50745d
      pq authored
      1e50745d
    • pq's avatar
      Analyze update to use in-memory package map. · 46d32794
      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.
      46d32794
  14. 06 May, 2016 2 commits
    • pq's avatar
      Fixed braces. · c973629e
      pq authored
      c973629e
    • pq's avatar
      Fix analyzer error messages. · 96de7c4d
      pq authored
      Will have the result of restoring `[static warning]` to `[warning]`, etc.
      
      (This is essentially how we handle it in the analyzer CLI.)
      96de7c4d
  15. 05 May, 2016 1 commit
    • pq's avatar
      Analysis re-work to use analyzer APIs. · a59a713f
      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 :)
      a59a713f