| 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 720aed87cc2e2d398002ddbe1ab732d0d1ad6417..36b10a55bfbff3d54da2a55081a2df6c6b86b67a 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/compiler.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/compiler.dart
|
| @@ -924,6 +924,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,
|
| @@ -974,7 +975,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);
|
| }
|
|
|
| tasks = [
|
|
|