| Index: pkg/compiler/lib/src/js/js.dart
|
| diff --git a/pkg/compiler/lib/src/js/js.dart b/pkg/compiler/lib/src/js/js.dart
|
| index cbb3bdb9dcc474d0cdd8246431bb63c75e351106..288f45c6419dfe57151c0e593f4ad2032724f900 100644
|
| --- a/pkg/compiler/lib/src/js/js.dart
|
| +++ b/pkg/compiler/lib/src/js/js.dart
|
| @@ -44,8 +44,9 @@ CodeBuffer createCodeBuffer(Node node, Compiler compiler,
|
| renamerForNames: renamerForNames);
|
| CodeBuffer outBuffer = new CodeBuffer();
|
| SourceInformationProcessor sourceInformationProcessor =
|
| - sourceInformationFactory
|
| - .createProcessor(new SourceLocationsMapper(outBuffer));
|
| + sourceInformationFactory.createProcessor(
|
| + new SourceMapperProviderImpl(outBuffer),
|
| + const SourceInformationReader());
|
| Dart2JSJavaScriptPrintingContext context =
|
| new Dart2JSJavaScriptPrintingContext(
|
| compiler.reporter, monitor, outBuffer, sourceInformationProcessor);
|
|
|