- 23 Oct, 2020 1 commit
-
-
Jonah Williams authored
* [flutter_tools] null safety mode is used for dill naming * add bad test case
-
- 19 Oct, 2020 1 commit
-
-
Jonah Williams authored
The current timeout is too short for some remote workflows. The existing unit test require hitting a real timeout so I've removed it. See b/171005910
-
- 12 Oct, 2020 3 commits
-
-
Jonah Williams authored
On every hot reload, the flutter tool must file stat each asset in the bundle. With a large number of assets or a slow file system, this can take 20 - 30 ms. Do this operation while the flutter tool is waiting for a response from the frontend_server. No tests updated since this is only a timing update. Any difference in behavior will be shown on benchmarks
-
Jonah Williams authored
For historical reasons, the flutter tool uploads dill files to paths based on the entrypoint URI. This isn't actually necessary, and the tool can use specific files : main.dart.incremental.dill for incremental dills, and main.dart.dill/main.dart.swap.dill for full dills. This allows hot restarting applications with an entrypoint outside of lib/ and simplifies the devFS code. Fixes #63243
-
Jonah Williams authored
HACKTOBERFEST
-
- 09 Oct, 2020 2 commits
-
-
Jonah Williams authored
If the vm of an attached device rejects a hot reload, pretty print the reason. Suggest a hot restart so that users are aware that they do not have to detach and rebuild. Also resets the last compilation time, so a subsequent restart would still apply the last change. Adds an integration test for the const field removal. Fixes #64027
-
Jonah Williams authored
Do not upload all assets on initial devFS sync. This should increase the reliability of the initial connection, even in the face of flaky devfs behavior, in addition to a moderate perf improvement. Updates fast-start to build assets as part of the initial bundle Requires flutter/engine#21436 Requires flutter/engine#21586 Requires flutter/engine#21611
-
- 25 Sep, 2020 1 commit
-
-
gaaclarke authored
-
- 22 Sep, 2020 1 commit
-
-
Jonah Williams authored
-
- 19 Sep, 2020 1 commit
-
-
Jonah Williams authored
-
- 20 Jul, 2020 1 commit
-
-
Jonah Williams authored
To support #61407 , the tool needs to check if a single widget reload is feasible, and then conditionally perform a fast reassemble. To accomplish this, the FlutterDevice class will have a WidgetCache injected. This will eventually contain the logic for parsing the invalidated dart script. Concurrent with the devFS update, the widget cache will be updated/checked if a single widget reload is feasible. If so, an expression evaluation with the target type is performed and the success is communicated through the devFS result. An integration test which demonstrates that this works is already present in https://github.com/flutter/flutter/blob/master/packages/flutter_tools/test/integration.shard/hot_reload_test.dart#L86 Finally, when actually performing the reassemble the tool simply checks if this flag has been set and calls the alternative reassemble method. Cleanups: Remove modules, as this is unused now.
-
- 17 Jul, 2020 1 commit
-
-
Konstantin Scheglov authored
-
- 01 Jun, 2020 1 commit
-
-
Jonah Williams authored
removes globals from devFS operations and cleans up testing to be context free. Removes unused and unnecessarily temp directory in testing.
-
- 29 Apr, 2020 1 commit
-
-
Jonah Williams authored
Finishes the gradual vm service migration by deleting the flutter tooling's vm_service
-
- 22 Apr, 2020 1 commit
-
-
James D. Lin authored
Prefer using `.of()` (which is statically type-checked) over `.from()` (which is dynamically type-checked) when possible.
-
- 20 Apr, 2020 1 commit
-
-
Jonah Williams authored
-
- 08 Apr, 2020 2 commits
-
-
Jonah Williams authored
-
Zachary Anderson authored
-
- 06 Apr, 2020 2 commits
-
-
Jonah Williams authored
This reverts commit d6b09626.
-
Jonah Williams authored
-
- 03 Apr, 2020 2 commits
-
-
Jonah Williams authored
This reverts commit 66d7a6c2.
-
Jonah Williams authored
-
- 12 Mar, 2020 1 commit
-
-
Zachary Anderson authored
-
- 06 Mar, 2020 1 commit
-
-
Zachary Anderson authored
* Reland: [flutter_tool] Where possible, catch only subtypes of Exception * Add armv7f to getIOSArchForName
-
- 04 Mar, 2020 2 commits
-
-
Jenn Magder authored
This reverts commit 57c6721c.
-
Flutter GitHub Bot authored
-
- 28 Feb, 2020 2 commits
-
-
Zachary Anderson authored
This reverts commit 9de7787f.
-
Zachary Anderson authored
-
- 27 Feb, 2020 2 commits
-
-
Zachary Anderson authored
This reverts commit f1cd47ef.
-
Zachary Anderson authored
-
- 26 Feb, 2020 2 commits
-
-
Jonah Williams authored
-
Jonah Williams authored
This reverts commit 59cc3cdf.
-
- 24 Feb, 2020 1 commit
-
-
Jonah Williams authored
-
- 06 Jan, 2020 1 commit
-
-
Jonah Williams authored
-
- 10 Dec, 2019 1 commit
-
-
Jonah Williams 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
-
- 22 Nov, 2019 3 commits
-
-
Jonah Williams authored
Revert "Improve time to development by initializing frontend_server concurrently with platform build (#45236)" (#45422)
-
Jonah Williams authored
Improve time to development by initializing frontend_server concurrently with platform build (#45236)
-
Greg Spencer authored
No code changes, just comments: I spell-checked all the comments in the repo.
-
- 21 Nov, 2019 1 commit
-
-
Emmanuel Garcia authored
-