| Index: pkg/dev_compiler/lib/src/compiler/module_builder.dart
|
| diff --git a/pkg/dev_compiler/lib/src/compiler/module_builder.dart b/pkg/dev_compiler/lib/src/compiler/module_builder.dart
|
| index 07510ebc9daf46b3523a3f185fed6461f0e76eae..e3072469b06b38b12e47bce0faf59bf1f15ebd6c 100644
|
| --- a/pkg/dev_compiler/lib/src/compiler/module_builder.dart
|
| +++ b/pkg/dev_compiler/lib/src/compiler/module_builder.dart
|
| @@ -212,7 +212,9 @@ class LegacyModuleBuilder extends _ModuleBuilder {
|
| /// Generates CommonJS modules (used by Node.js).
|
| class CommonJSModuleBuilder extends _ModuleBuilder {
|
| Program build(Program module) {
|
| - var importStatements = [js.statement("'use strict';"),];
|
| + var importStatements = [
|
| + js.statement("'use strict';"),
|
| + ];
|
|
|
| // Collect imports/exports/statements.
|
| visitProgram(module);
|
|
|