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