1. 15 Aug, 2019 1 commit
  2. 08 Aug, 2019 1 commit
  3. 29 Jul, 2019 1 commit
  4. 27 Jul, 2019 1 commit
  5. 13 Jul, 2019 1 commit
  6. 25 Apr, 2019 1 commit
  7. 22 Mar, 2019 1 commit
  8. 21 Mar, 2019 2 commits
  9. 20 Mar, 2019 1 commit
  10. 09 Mar, 2019 1 commit
  11. 21 Feb, 2019 1 commit
  12. 15 Feb, 2019 1 commit
  13. 14 Feb, 2019 1 commit
  14. 05 Feb, 2019 1 commit
  15. 01 Feb, 2019 1 commit
  16. 30 Jan, 2019 2 commits
  17. 25 Jan, 2019 1 commit
  18. 05 Nov, 2018 1 commit
  19. 23 Oct, 2018 1 commit
  20. 11 Oct, 2018 1 commit
    • Greg Spencer's avatar
      Re-land text wrapping/color PR (#22831) · 081d2a7a
      Greg Spencer authored
      This attempts to re-land #22656.
      
      There are two changes from the original:
      
      I turned off wrapping completely when not sending output to a terminal. Previously I had defaulted to wrapping at and arbitrary 100 chars in that case, just to keep long messages from being too long, but that turns out the be a bad idea because there are tests that are relying on the specific form of the output. It's also pretty arbitrary, and mostly people sending output to a non-terminal will want unwrapped text.
      
      I found a better way to terminate ANSI color/bold sequences, so that they can be embedded within each other without needed quite as complex a dance with removing redundant sequences.
      
      As part of these changes, I removed the Logger.supportsColor setter so that the one source of truth for color support is in AnsiTerminal.supportsColor.
      
      *     Turn on line wrapping again in usage and status messages, adds ANSI color to doctor and analysis messages. (#22656)
      
          This turns on text wrapping for usage messages and status messages. When on a terminal, wraps to the width of the terminal. When writing to a non-terminal, wrap lines at a default column width (currently defined to be 100 chars). If --no-wrap is specified, then no wrapping occurs. If --wrap-column is specified, wraps to that column (if --wrap is on).
      
          Adds ANSI color to the doctor and analysis output on terminals. This is in this PR with the wrapping, since wrapping needs to know how to count visible characters in the presence of ANSI sequences. (This is just one more step towards re-implementing all of Curses for Flutter. :-)) Will not print ANSI sequences when sent to a non-terminal, or of --no-color is specified.
      
          Fixes ANSI color and bold sequences so that they can be combined (bold, colored text), and a small bug in indentation calculation for wrapping.
      
          Since wrapping is now turned on, also removed many redundant '\n's in the code.
      081d2a7a
  21. 05 Oct, 2018 1 commit
  22. 20 Sep, 2018 1 commit
    • Greg Spencer's avatar
      Simplify Gradle compiler output. (#21760) · efcd9a80
      Greg Spencer authored
      This changes the compiler output for gradle to be less verbose and more easily read.
      
      This only applies to compilation error messages: other gradle messages will continue to print as before.
      
      It also fixes a small problem with the performance measurement printing (see that "7.1s" on it's own line in the original?) so that if something is expected to have multiple lines of output, it prints an initial line, and a "Done" line with the elapsed time, so that it's possible to know what the time applies to.
      
      It also updates the spinner to be fancier, at least on platforms other than Windows (which is missing a lot of symbols in its console font).
      
      Addresses #17307
      efcd9a80
  23. 12 Sep, 2018 1 commit
  24. 31 Aug, 2018 1 commit
  25. 28 Aug, 2018 1 commit
  26. 15 Aug, 2018 1 commit
    • Ian Hickson's avatar
      Shim package:test to avoid matcher issues (#20602) · 686d8f8a
      Ian Hickson authored
      * Upgrade everything except matcher.
      * Roll matcher (and test)
      * Adjust tests that depend on flutter:test directly to depend on a shim
      * Require use of package:test shim and remove other references to package:test
      686d8f8a
  27. 21 Jun, 2018 1 commit
  28. 05 Jun, 2018 1 commit
  29. 24 Apr, 2018 1 commit
    • Chris Bracken's avatar
      Extract KernelCompiler class (#16937) · 7ffcd3d2
      Chris Bracken authored
      Wraps the compile function in a class injected via the global context,
      which makes it easier to mock in unit tests -- specifically tests for
      AOT snapshotting, which already require pretty significant amounts of
      mock inputs.
      7ffcd3d2
  30. 12 Apr, 2018 1 commit
  31. 09 Apr, 2018 1 commit
  32. 28 Mar, 2018 1 commit
    • Alexander Aprelev's avatar
      Again move mockito to 300plus2 (#15981) · bffae215
      Alexander Aprelev authored
      * Revert "Revert "Move mockito to 3.0.0-alpha. (#15949)" (#15979)"
      
      This reverts commit e59651f9.
      
      * More thenReturn to thenAnswer when mocking Futures
      
      * Revert "More thenReturn to thenAnswer when mocking Futures"
      
      This reverts commit 194d2cf41754ad171efd6bb5898cf73bce5a75ab as we are reverting engine roll.
      
      * Revert "Revert "More thenReturn to thenAnswer when mocking Futures""
      
      This reverts commit 52c9e96b304b220f66d78a252fccea0c8e0ef24c.
      
      * Add dependency override
      
      * Fix issue
      bffae215
  33. 27 Mar, 2018 2 commits
  34. 19 Mar, 2018 1 commit
  35. 17 Mar, 2018 3 commits