Unverified Commit 8b5326a9 authored by Jonah Williams's avatar Jonah Williams Committed by GitHub

[flutter_tools] unbreak g3 roll (#58688)

parent d1b317c9
...@@ -409,6 +409,8 @@ abstract class ResidentCompiler { ...@@ -409,6 +409,8 @@ abstract class ResidentCompiler {
String platformDill, String platformDill,
List<String> dartDefines, List<String> dartDefines,
String librariesSpec, String librariesSpec,
// Deprecated
List<String> experimentalFlags,
}) = DefaultResidentCompiler; }) = DefaultResidentCompiler;
// TODO(jonahwilliams): find a better way to configure additional file system // TODO(jonahwilliams): find a better way to configure additional file system
...@@ -505,6 +507,8 @@ class DefaultResidentCompiler implements ResidentCompiler { ...@@ -505,6 +507,8 @@ class DefaultResidentCompiler implements ResidentCompiler {
this.platformDill, this.platformDill,
List<String> dartDefines, List<String> dartDefines,
this.librariesSpec, this.librariesSpec,
// Deprecated
List<String> experimentalFlags, // ignore: avoid_unused_constructor_parameters
}) : assert(sdkRoot != null), }) : assert(sdkRoot != null),
_stdoutHandler = StdoutHandler(consumer: compilerMessageConsumer), _stdoutHandler = StdoutHandler(consumer: compilerMessageConsumer),
dartDefines = dartDefines ?? const <String>[], dartDefines = dartDefines ?? const <String>[],
......
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