| Index: pkg/compiler/lib/src/dump_info.dart
|
| diff --git a/pkg/compiler/lib/src/dump_info.dart b/pkg/compiler/lib/src/dump_info.dart
|
| index 5ec5998270cd59c0e3cb593fd0a7a470ceae4475..2524fb1812f075afb7562b39e12d89dd16ea7e6b 100644
|
| --- a/pkg/compiler/lib/src/dump_info.dart
|
| +++ b/pkg/compiler/lib/src/dump_info.dart
|
| @@ -21,7 +21,7 @@ import 'dart2jslib.dart' show
|
| import 'types/types.dart' show TypeMask;
|
| import 'deferred_load.dart' show OutputUnit;
|
| import 'js_backend/js_backend.dart' show JavaScriptBackend;
|
| -import 'js_emitter/js_emitter.dart' show OldEmitter;
|
| +import 'js_emitter/full_emitter/emitter.dart' as full show Emitter;
|
| import 'js/js.dart' as jsAst;
|
| import 'universe/universe.dart' show Selector, UniverseSelector;
|
| import 'util/util.dart' show NO_LOCATION_SPANNABLE;
|
| @@ -599,7 +599,7 @@ class DumpInfoTask extends CompilerTask {
|
| JavaScriptBackend backend = compiler.backend;
|
| // Dump-info currently only works with the full emitter. If another
|
| // emitter is used it will fail here.
|
| - OldEmitter fullEmitter = backend.emitter.emitter;
|
| + full.Emitter fullEmitter = backend.emitter.emitter;
|
|
|
| for (OutputUnit outputUnit in
|
| infoCollector.mapper._outputUnit._elementToId.keys) {
|
|
|