Chromium Code Reviews| Index: pkg/compiler/lib/src/common/resolution.dart |
| diff --git a/pkg/compiler/lib/src/common/resolution.dart b/pkg/compiler/lib/src/common/resolution.dart |
| index 7ef8980aadcd38e177af7ee8f8c841d68f959f11..3d0e27cb53f7b0825bc3f5efc5f2d960a1303566 100644 |
| --- a/pkg/compiler/lib/src/common/resolution.dart |
| +++ b/pkg/compiler/lib/src/common/resolution.dart |
| @@ -8,9 +8,7 @@ import '../compiler.dart' show |
| Compiler; |
| import '../dart_types.dart' show |
| DartType; |
| -import '../elements/elements.dart' show |
| - AstElement, |
| - ErroneousElement; |
| +import '../elements/elements.dart' show AstElement, ErroneousElement, TypeVariableElement; |
|
Johnni Winther
2015/09/15 13:23:39
Long line.
|
| import '../enqueue.dart' show |
| ResolutionEnqueuer, |
| WorldImpact; |
| @@ -66,7 +64,8 @@ class ResolutionCallbacks { |
| /// Called during resolution to notify to the backend that the |
| /// program uses a type variable as an expression. |
| - void onTypeVariableExpression(Registry registry) {} |
| + void onTypeVariableExpression(Registry registry, |
| + TypeVariableElement variable) {} |
| /// Called during resolution to notify to the backend that the |
| /// program uses a type literal. |