| Index: pkg/compiler/lib/src/compiler.dart
|
| diff --git a/pkg/compiler/lib/src/compiler.dart b/pkg/compiler/lib/src/compiler.dart
|
| index fcef27e3675b238d81530aa950c6d058666d00a9..c7d00d86ee179ed61a4f472d2254a4c2290556e5 100644
|
| --- a/pkg/compiler/lib/src/compiler.dart
|
| +++ b/pkg/compiler/lib/src/compiler.dart
|
| @@ -22,7 +22,7 @@ import 'common/resolution.dart'
|
| ResolutionImpact,
|
| Target;
|
| import 'common/tasks.dart' show CompilerTask, GenericTask, Measurer;
|
| -import 'common/work.dart' show ItemCompilationContext, WorkItem;
|
| +import 'common/work.dart' show WorkItem;
|
| import 'common.dart';
|
| import 'compile_time_constants.dart';
|
| import 'constants/values.dart';
|
| @@ -2151,13 +2151,11 @@ class _CompilerResolution implements Resolution {
|
| }
|
|
|
| @override
|
| - ResolutionWorkItem createWorkItem(
|
| - Element element, ItemCompilationContext compilationContext) {
|
| + ResolutionWorkItem createWorkItem(Element element) {
|
| if (compiler.serialization.isDeserialized(element)) {
|
| - return compiler.serialization
|
| - .createResolutionWorkItem(element, compilationContext);
|
| + return compiler.serialization.createResolutionWorkItem(element);
|
| } else {
|
| - return new ResolutionWorkItem(element, compilationContext);
|
| + return new ResolutionWorkItem(element);
|
| }
|
| }
|
|
|
|
|