| Index: pkg/dart2js_incremental/lib/library_updater.dart
|
| diff --git a/pkg/dart2js_incremental/lib/library_updater.dart b/pkg/dart2js_incremental/lib/library_updater.dart
|
| index cefd37c9bc74937d3d743527b0368767a60e78a8..faca103b9cd7c8cc10b9c91ff894d96600460ce6 100644
|
| --- a/pkg/dart2js_incremental/lib/library_updater.dart
|
| +++ b/pkg/dart2js_incremental/lib/library_updater.dart
|
| @@ -27,12 +27,14 @@ import 'package:compiler/src/elements/elements.dart' show
|
| import 'package:compiler/src/enqueue.dart' show
|
| EnqueueTask;
|
|
|
| -import 'package:compiler/src/parser/class_element_parser.dart' show
|
| - PartialClassElement;
|
| -
|
| import 'package:compiler/src/parser/listener.dart' show
|
| - Listener,
|
| - NodeListener,
|
| + Listener;
|
| +
|
| +import 'package:compiler/src/parser/node_listener.dart' show
|
| + NodeListener;
|
| +
|
| +import 'package:compiler/src/parser/partial_elements.dart' show
|
| + PartialClassElement,
|
| PartialElement,
|
| PartialFieldList,
|
| PartialFunctionElement;
|
| @@ -44,9 +46,11 @@ import 'package:compiler/src/scanner/scanner.dart' show
|
| Scanner;
|
|
|
| import 'package:compiler/src/tokens/token.dart' show
|
| - EOF_TOKEN,
|
| Token;
|
|
|
| +import 'package:compiler/src/tokens/token_constants.dart' show
|
| + EOF_TOKEN;
|
| +
|
| import 'package:compiler/src/script.dart' show
|
| Script;
|
|
|
|
|