| Index: lib/src/codegen/js_codegen.dart
|
| diff --git a/lib/src/codegen/js_codegen.dart b/lib/src/codegen/js_codegen.dart
|
| index 848f9b8aabf42bf2727c4ea9504d25c07c9f631d..cab929bd70d137c3efa53f87444d8ac90046572a 100644
|
| --- a/lib/src/codegen/js_codegen.dart
|
| +++ b/lib/src/codegen/js_codegen.dart
|
| @@ -1936,9 +1936,8 @@ class JSGenerator extends CodeGenerator {
|
| if (options.emitSourceMaps) {
|
| var outFilename = path.basename(outputPath);
|
| var printer = new srcmaps.Printer(outFilename);
|
| - _writeNode(
|
| - new SourceMapPrintingContext(printer, path.dirname(outputPath)),
|
| - jsTree);
|
| + _writeNode(new SourceMapPrintingContext(
|
| + printer, path.dirname(outputPath)), jsTree);
|
| printer.add('//# sourceMappingURL=$outFilename.map');
|
| // Write output file and source map
|
| new File(outputPath).writeAsStringSync(printer.text);
|
|
|