| Index: pkg/compiler/lib/src/patch_parser.dart
|
| diff --git a/pkg/compiler/lib/src/patch_parser.dart b/pkg/compiler/lib/src/patch_parser.dart
|
| index 3bff9d4df9e6bea478306a7683decac735b6c928..e5297bc0853287df690d451d49d584768371c7cf 100644
|
| --- a/pkg/compiler/lib/src/patch_parser.dart
|
| +++ b/pkg/compiler/lib/src/patch_parser.dart
|
| @@ -116,21 +116,25 @@ library patchparser;
|
|
|
| import 'dart:async';
|
|
|
| -import 'constants/values.dart' show ConstantValue;
|
| -import 'dart2jslib.dart'
|
| - show Compiler,
|
| - CompilerTask;
|
| +import 'constants/values.dart' show
|
| + ConstantValue;
|
| +import 'compiler.dart' show
|
| + Compiler;
|
| +import 'common/tasks.dart' show
|
| + CompilerTask;
|
| import 'diagnostic_listener.dart';
|
| import 'elements/elements.dart';
|
| -import 'elements/modelx.dart'
|
| - show BaseFunctionElementX,
|
| - ClassElementX,
|
| - GetterElementX,
|
| - LibraryElementX,
|
| - MetadataAnnotationX,
|
| - SetterElementX;
|
| -import 'messages.dart' show MessageKind;
|
| -import 'library_loader.dart' show LibraryLoader;
|
| +import 'elements/modelx.dart' show
|
| + BaseFunctionElementX,
|
| + ClassElementX,
|
| + GetterElementX,
|
| + LibraryElementX,
|
| + MetadataAnnotationX,
|
| + SetterElementX;
|
| +import 'messages.dart' show
|
| + MessageKind;
|
| +import 'library_loader.dart' show
|
| + LibraryLoader;
|
| import 'scanner/scannerlib.dart'; // Scanner, Parsers, Listeners
|
| import 'script.dart';
|
| import 'util/util.dart';
|
|
|