This makes subsequent runs much faster by allowing to skip compilation to Kernel at the cost of introducing a bit of spam into the output when it starts resident compiler for the first time. Seems like a fine trade-off for dev-mode command. ```console $ time flutter-dev -h ... ________________________________________________________ Executed in 5.32 secs fish external usr time 438.69 millis 0.09 millis 438.60 millis sys time 111.91 millis 2.42 millis 109.48 millis $ time flutter-dev -h ... ________________________________________________________ Executed in 579.14 millis fish external usr time 433.87 millis 0.08 millis 433.79 millis sys time 109.27 millis 2.57 millis 106.70 millis ```
Flutter SDK dependency versions
The files in this directory specifies pinned versions of various dependencies of the flutter SDK.
The bin/internal/engine.version file controls which version of the
Flutter engine to use. The file contains the commit hash of a commit
in the https://github.com/flutter/engine repository. That hash must
have successfully been compiled on
https://build.chromium.org/p/client.flutter/ and had its artifacts
(the binaries that run on Android and iOS, the compiler, etc)
successfully uploaded to Google Cloud Storage.
The /bin/internal/engine.merge_method file controls how we merge a
pull request created by the engine auto-roller. If it's squash,
there's only one commit for a pull request no matter how many engine
commits there are inside that pull request. If it's rebase, the
number of commits in the framework is equal to the number of engine
commits in the pull request. The latter method makes it easier to
detect regressions but costs more test resources.
The bin/internal/flutter_packages.version file specifies the version
of the flutter/packages repository to be used for testing. The
flutter/packages repository isn't an upstream dependency of
flutter/flutter; it is only used as part of the test suite for
verification, and the pinned version here makes sure that tests are
deterministic at each flutter/flutter commit.