| Index: sdk/lib/_internal/compiler/implementation/compiler.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/compiler.dart b/sdk/lib/_internal/compiler/implementation/compiler.dart
|
| index 2dcfaab9d476f45b4a81c1d69223e74ce4c7eeb1..73f3eafaf9fa14844cab16a804298932cec10a9b 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/compiler.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/compiler.dart
|
| @@ -916,6 +916,7 @@ abstract class Compiler implements DiagnosticListener {
|
| this.enableMinification: false,
|
| this.enableNativeLiveTypeAnalysis: false,
|
| bool emitJavaScript: true,
|
| + bool dart2dartMultiFile: false,
|
| bool generateSourceMap: true,
|
| bool analyzeAllFlag: false,
|
| bool analyzeOnly: false,
|
| @@ -962,7 +963,8 @@ abstract class Compiler implements DiagnosticListener {
|
| backend = jsBackend;
|
| } else {
|
| closureNamer = new closureMapping.ClosureNamer();
|
| - backend = new dart_backend.DartBackend(this, strips);
|
| + backend = new dart_backend.DartBackend(this, strips,
|
| + multiFile: dart2dartMultiFile);
|
| }
|
|
|
| // No-op in production mode.
|
|
|