| Index: pkg/compiler/lib/src/js/js_source_mapping.dart
|
| diff --git a/pkg/compiler/lib/src/js/js_source_mapping.dart b/pkg/compiler/lib/src/js/js_source_mapping.dart
|
| index 0378a58b1ef85e8d4050e9572aa9be13c6f0a835..cd72e3557667eb18ed5d6c5c11b675f85c3fc7d8 100644
|
| --- a/pkg/compiler/lib/src/js/js_source_mapping.dart
|
| +++ b/pkg/compiler/lib/src/js/js_source_mapping.dart
|
| @@ -5,7 +5,10 @@
|
| library js.source_mapping;
|
|
|
| import 'js.dart';
|
| -import '../io/code_output.dart' show SourceLocations;
|
| +import '../io/code_output.dart' show
|
| + BufferedCodeOutput,
|
| + CodeBuffer,
|
| + SourceLocations;
|
| import '../io/source_information.dart' show
|
| SourceLocation,
|
| SourceInformation,
|
| @@ -64,5 +67,5 @@ class SourceInformationProcessor extends CodePositionListener {
|
|
|
| /// Process the source information and code positions for the [node] and all
|
| /// its children.
|
| - void process(Node node) {}
|
| + void process(Node node, BufferedCodeOutput code) {}
|
| }
|
|
|