- 03 Feb, 2022 1 commit
-
-
Jonah Williams authored
-
- 14 Jan, 2022 1 commit
-
-
Jonah Williams authored
-
- 24 May, 2021 1 commit
-
-
Jenn Magder authored
-
- 12 Mar, 2021 1 commit
-
-
Jonah Williams authored
[flutter_tools] read expression compilation results into memory before starting next compilation (#77867)
-
- 27 Jan, 2021 1 commit
-
-
Jonah Williams authored
* opt out the flutter tool * oops EOF * fix import * Update tool_backend.dart * Update daemon_client.dart * fix more
-
- 01 Dec, 2020 1 commit
-
-
Jonah Williams authored
-
- 23 Sep, 2020 2 commits
-
-
Jonah Williams authored
If a file scheme and one or more roots is provided, fall back to this mapping before the direct file path if the file path cannot be turned into a package URI. Use URI representation so that the transformation is resilient to the org-dartlang-app scheme used by the web builds. Fixes #66095 Fixes #66404
-
Jenn Magder authored
This reverts commit af6ba867.
-
- 22 Sep, 2020 1 commit
-
-
Jonah Williams authored
If a file scheme and one or more roots is provided, fall back to this mapping before the direct file path if the file path cannot be turned into a package URI. Fixes #66095
-
- 18 Jun, 2020 1 commit
-
-
Jonah Williams authored
Refactors KernelCompiler and ResidentCompiler to no longer use globals (except as a fallback for g3 migration). Improves the compilation error when running flutter test on a package without a flutter_test dependency. Updates machine mode to output trace text to stderr
-
- 03 Jun, 2020 1 commit
-
-
Jonah Williams authored
Suppress compilation errors on startup so they are not duplicated from the native build step.
-
- 27 Jan, 2020 1 commit
-
-
Dan Field authored
-
- 17 Jan, 2020 1 commit
-
-
Anthony authored
[a11y] Make sure RenderFractionalTranslation updates its semantics after the translation field is set (#48985)
-
- 16 Jan, 2020 1 commit
-
-
Alexandre Ardhuin authored
-
- 27 Nov, 2019 1 commit
-
-
Ian Hickson authored
* Update project.pbxproj files to say Flutter rather than Chromium Also, the templates now have an empty organization so that we don't cause people to give their apps a Flutter copyright. * Update the copyright notice checker to require a standard notice on all files * Update copyrights on Dart files. (This was a mechanical commit.) * Fix weird license headers on Dart files that deviate from our conventions; relicense Shrine. Some were already marked "The Flutter Authors", not clear why. Their dates have been normalized. Some were missing the blank line after the license. Some were randomly different in trivial ways for no apparent reason (e.g. missing the trailing period). * Clean up the copyrights in non-Dart files. (Manual edits.) Also, make sure templates don't have copyrights. * Fix some more ORGANIZATIONNAMEs
-
- 23 Oct, 2019 1 commit
-
-
Jonah Williams authored
-
- 20 Aug, 2019 1 commit
-
-
Jonah Williams authored
-
- 15 Aug, 2019 1 commit
-
-
Jonah Williams authored
-
- 08 Aug, 2019 1 commit
-
-
Jonah Williams authored
-
- 29 Jul, 2019 1 commit
-
-
Zachary Anderson authored
-
- 27 Jul, 2019 1 commit
-
-
Jonah Williams authored
-
- 13 Jul, 2019 1 commit
-
-
Ian Hickson authored
Move tools tests into a general.shard directory in preparation to changing how we shard tools tests (#36108)
-
- 25 Apr, 2019 1 commit
-
-
Jonah Williams authored
-
- 22 Mar, 2019 1 commit
-
-
Alexandre Ardhuin authored
-
- 21 Mar, 2019 2 commits
-
-
Jonah Williams authored
-
Alexander Aprelev authored
* Use source list from the compiler to track invalidated files. * Revert accidental change * Fix first-time-seen-the-file logic * Fix/simplify invalidate logic now that we can rely on compiler to let us know what is the cut-off point for invalidation. * Update devfs mock to accommodate for new fields * Fix deleted files case * Analyzer found missing final
-
- 20 Mar, 2019 1 commit
-
-
Ben Konyi authored
* Manual engine roll for 2019-03-19 * Applying patch for Dart SDK changes (see PR #29004)
-
- 09 Mar, 2019 1 commit
-
-
Alexandre Ardhuin authored
-
- 21 Feb, 2019 1 commit
-
-
Alexandre Ardhuin authored
-
- 15 Feb, 2019 1 commit
-
-
Jonah Williams authored
-
- 14 Feb, 2019 1 commit
-
-
Jonah Williams authored
-
- 05 Feb, 2019 1 commit
-
-
xster authored
-
- 01 Feb, 2019 1 commit
-
-
Alexander Aprelev authored
* Don't send accept/reject if compilation never started. Ensure that we wait for reject's response since that is async operation. Fixes https://github.com/flutter/flutter/issues/27120. * Fix analysis errors * Rename flag. Ensure we raise it on first compilation too.
-
- 30 Jan, 2019 2 commits
-
-
Jonah Williams authored
-
Jonah Williams authored
-
- 25 Jan, 2019 1 commit
-
-
Jonah Williams authored
-
- 05 Nov, 2018 1 commit
-
-
Dan Field authored
-
- 23 Oct, 2018 1 commit
-
-
Jacob Richman authored
Ensure that cached dill files for builds with --track-widget-creation always have .track. in the file name to avoid mixing transformed and untransformed kernel files.
-
- 11 Oct, 2018 1 commit
-
-
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.
-
- 05 Oct, 2018 1 commit
-
-
Alexandre Ardhuin authored
-