1. 15 Aug, 2019 1 commit
  2. 29 Jul, 2019 1 commit
  3. 25 Jun, 2019 1 commit
  4. 31 May, 2019 1 commit
  5. 30 May, 2019 2 commits
  6. 23 May, 2019 1 commit
  7. 22 May, 2019 2 commits
  8. 25 Apr, 2019 1 commit
  9. 22 Mar, 2019 1 commit
  10. 21 Mar, 2019 3 commits
  11. 20 Mar, 2019 1 commit
  12. 15 Mar, 2019 1 commit
  13. 06 Mar, 2019 2 commits
  14. 01 Mar, 2019 1 commit
    • Alexandre Ardhuin's avatar
      Add missing trailing commas (#28673) · 387f8854
      Alexandre Ardhuin authored
      * add trailing commas on list/map/parameters
      
      * add trailing commas on Invocation with nb of arg>1
      
      * add commas for widget containing widgets
      
      * add trailing commas if instantiation contains trailing comma
      
      * revert bad change
      387f8854
  15. 21 Feb, 2019 1 commit
  16. 05 Feb, 2019 1 commit
  17. 29 Jan, 2019 1 commit
  18. 26 Jan, 2019 1 commit
  19. 27 Dec, 2018 1 commit
  20. 23 Oct, 2018 1 commit
  21. 09 Oct, 2018 1 commit
  22. 05 Oct, 2018 1 commit
  23. 04 Oct, 2018 1 commit
  24. 01 Oct, 2018 1 commit
  25. 13 Sep, 2018 1 commit
  26. 12 Sep, 2018 1 commit
  27. 04 Sep, 2018 2 commits
    • Chris Bracken's avatar
      Eliminate Dart 1 support from DevFS (#21404) · 2ab4ed74
      Chris Bracken authored
      Dart 1 is no longer supported in Flutter. Hot reload now always occurs
      via kernel file updates (plus any asset bundle changes).
      2ab4ed74
    • Chris Bracken's avatar
      Eliminate --preview-dart-2 flag (#21304) · 041ff621
      Chris Bracken authored
      This patch eliminates the --preview-dart-2/--no-preview-dart-2 flag,
      hardcoding all uses to true. It also defaults all previewDart2 method
      parameters to true, where they hadn't yet been.
      
      A series of subsequent patches will eliminate all previewDart2
      parameters and the associated code from within the codebase.
      041ff621
  28. 31 Aug, 2018 1 commit
    • Chris Bracken's avatar
      Migrate devfs tests to Dart 2 (#21285) · 251e82d2
      Chris Bracken authored
      DevFS.update only runs in Dart 2 mode when the generator parameter is
      supplied. In Dart 2 mode, both mainPath and pathToReload are required
      parameters; this patch marks them as such.
      
      generator is required for running in Dart 2. All call sites other than tests already explicitly set this value.
      
      Note the statements on line 510 and line 516 for why mainPath and pathToReload are required.
      251e82d2
  29. 16 Aug, 2018 1 commit
  30. 20 Jul, 2018 1 commit
  31. 12 Jul, 2018 1 commit
  32. 19 Jun, 2018 1 commit
  33. 13 Jun, 2018 1 commit
    • Chris Bracken's avatar
      Revert elimination of Dart 1 (#18460) · 2ae48845
      Chris Bracken authored
      fuchsia_tester.dart still assumes Dart 1. Previously, it ran tests directly
      from source, flutter_platform.dart automatically runs a kernel compile when
      operating in Dart 2 mode, but this assumes a functional Dart SDK is available
      in the artifacts directly, and fuchsia_tester.dart mocks out the artifacts
      directory with an empty temp dir.
      
      Remaining work is:
      1. Get the frontend server building as a dependency on Fuchsia.
      2. Patch fuchsia_tester.dart to use a valid Dart SDK and frontend server.
      
      This also reverts migration to Dart 2 typedef syntax.
      
      This reverts commit 6c56bb24. (#18362)
      This reverts commit 3daebd05. (#18316)
      2ae48845
  34. 08 Jun, 2018 1 commit
    • Chris Bracken's avatar
      It's time to #deleteDart1 (again) (#18316) · 3daebd05
      Chris Bracken authored
      * It's time to #deleteDart1 (#18293)
      
      Eliminates support for Dart 1 in flutter_tools, and drops our Dart 1
      benchmarks. All commands now run in Dart 1 mode only.
      
      Eliminates --preview-dart-2 / --no-preview-dart-2 support.
      
      * Fix indentation, remove no longer necessary .toList()
      
      * Only push udpated kernel if >0 invalidated srcs
      3daebd05