| Index: pkg/compiler/lib/src/compiler.dart
|
| diff --git a/pkg/compiler/lib/src/compiler.dart b/pkg/compiler/lib/src/compiler.dart
|
| index 8f301875771de6fa31a35a797451e87ed14cb142..443e1878198bb2312f6304eb381260051c68b7a7 100644
|
| --- a/pkg/compiler/lib/src/compiler.dart
|
| +++ b/pkg/compiler/lib/src/compiler.dart
|
| @@ -22,8 +22,7 @@ import 'common/work.dart' show WorkItem;
|
| import 'common.dart';
|
| import 'compile_time_constants.dart';
|
| import 'constants/values.dart';
|
| -import 'common_elements.dart'
|
| - show CommonElements, CommonElementsImpl, ElementEnvironment;
|
| +import 'common_elements.dart' show CommonElements, ElementEnvironment;
|
| import 'deferred_load.dart' show DeferredLoadTask;
|
| import 'diagnostics/code_location.dart';
|
| import 'diagnostics/diagnostic_listener.dart' show DiagnosticReporter;
|
| @@ -88,7 +87,7 @@ abstract class Compiler {
|
|
|
| final IdGenerator idGenerator = new IdGenerator();
|
| Types types;
|
| - CommonElementsImpl _commonElements;
|
| + CommonElements _commonElements;
|
| _CompilerElementEnvironment _elementEnvironment;
|
| CompilerDiagnosticReporter _reporter;
|
| CompilerResolution _resolution;
|
| @@ -197,7 +196,7 @@ abstract class Compiler {
|
| }
|
| _resolution = createResolution();
|
| _elementEnvironment = new _CompilerElementEnvironment(this);
|
| - _commonElements = new CommonElementsImpl(_elementEnvironment);
|
| + _commonElements = new CommonElements(_elementEnvironment);
|
| types = new Types(_resolution);
|
|
|
| if (options.verbose) {
|
|
|