Chromium Code Reviews| Index: sdk/lib/_internal/compiler/implementation/elements/elements.dart |
| diff --git a/sdk/lib/_internal/compiler/implementation/elements/elements.dart b/sdk/lib/_internal/compiler/implementation/elements/elements.dart |
| index d3dd0309130229ec5021a63f112533f6c26c2fc6..3334ee6309a5d2abd9fa0e0ccbfd2ee3883fac5d 100644 |
| --- a/sdk/lib/_internal/compiler/implementation/elements/elements.dart |
| +++ b/sdk/lib/_internal/compiler/implementation/elements/elements.dart |
| @@ -831,6 +831,10 @@ abstract class FunctionElement extends Element |
| bool get isRedirectingFactory; |
| + /// Used to store a link to the abstract field element representing this |
| + /// element. |
| + AbstractFieldElement abstractField; |
|
Johnni Winther
2014/04/11 07:34:54
This should be a getter.
sigurdm
2014/04/11 09:11:38
Done.
|
| + |
| /** |
| * Compute the type of the target of a constructor for an instantiation site |
| * with type [:newType:]. |
| @@ -1053,6 +1057,7 @@ abstract class MetadataAnnotation implements Spannable { |
| MetadataAnnotation ensureResolved(Compiler compiler); |
| } |
| +// TODO(johnniwinther): Remove this element. |
| abstract class VoidElement extends Element {} |
| /// An [Element] that has a type. |