Unverified Commit 7d0536b8 authored by Alexander Markov's avatar Alexander Markov Committed by GitHub

Enable global type flow analysis in Dart 2 AOT (#15221)

parent 0d6d3125
...@@ -74,6 +74,7 @@ Future<String> compile( ...@@ -74,6 +74,7 @@ Future<String> compile(
command.add('--no-link-platform'); command.add('--no-link-platform');
if (aot) { if (aot) {
command.add('--aot'); command.add('--aot');
command.add('--tfa');
} }
if (entryPointsJsonFiles != null) { if (entryPointsJsonFiles != null) {
for (String entryPointsJson in entryPointsJsonFiles) { for (String entryPointsJson in entryPointsJsonFiles) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment