| Index: tests/compiler/dart2js/memory_compiler.dart
|
| diff --git a/tests/compiler/dart2js/memory_compiler.dart b/tests/compiler/dart2js/memory_compiler.dart
|
| index 47c1a43e72866d2929d4b39b66f3b0fdc03fb5f0..ea65d512bd3735517289be6b0b68dd88eb5ebc8a 100644
|
| --- a/tests/compiler/dart2js/memory_compiler.dart
|
| +++ b/tests/compiler/dart2js/memory_compiler.dart
|
| @@ -73,6 +73,7 @@ Future<CompilationResult> runCompiler(
|
| {Map<String, String> memorySourceFiles: const <String, String>{},
|
| Uri entryPoint,
|
| List<Uri> entryPoints,
|
| + List<Uri> resolutionInputs,
|
| CompilerDiagnostics diagnosticHandler,
|
| CompilerOutput outputProvider,
|
| List<String> options: const <String>[],
|
| @@ -87,6 +88,7 @@ Future<CompilationResult> runCompiler(
|
| }
|
| CompilerImpl compiler = compilerFor(
|
| entryPoint: entryPoint,
|
| + resolutionInputs: resolutionInputs,
|
| memorySourceFiles: memorySourceFiles,
|
| diagnosticHandler: diagnosticHandler,
|
| outputProvider: outputProvider,
|
| @@ -106,6 +108,7 @@ Future<CompilationResult> runCompiler(
|
|
|
| CompilerImpl compilerFor(
|
| {Uri entryPoint,
|
| + List<Uri> resolutionInputs,
|
| Map<String, String> memorySourceFiles: const <String, String>{},
|
| CompilerDiagnostics diagnosticHandler,
|
| CompilerOutput outputProvider,
|
| @@ -149,6 +152,7 @@ CompilerImpl compilerFor(
|
| diagnosticHandler,
|
| new CompilerOptions.parse(
|
| entryPoint: entryPoint,
|
| + resolutionInputs: resolutionInputs,
|
| libraryRoot: libraryRoot,
|
| packageRoot: packageRoot,
|
| options: options,
|
|
|