| Index: dart/lib/compiler/implementation/scanner/listener.dart
|
| diff --git a/dart/lib/compiler/implementation/scanner/listener.dart b/dart/lib/compiler/implementation/scanner/listener.dart
|
| index 323fbb745a4dc8a122a8fbbbcce9bd363720867e..e56695003d052dd5676e957f771a87408f6164e5 100644
|
| --- a/dart/lib/compiler/implementation/scanner/listener.dart
|
| +++ b/dart/lib/compiler/implementation/scanner/listener.dart
|
| @@ -1628,6 +1628,17 @@ class PartialTypedefElement extends TypedefElement {
|
| }
|
| }
|
|
|
| +/// A [MetadataAnnotation] which is constructed on demand.
|
| +class PartialMetadataAnnotation extends MetadataAnnotation {
|
| + final Token beginToken;
|
| + Expression cachedNode;
|
| + Constant value;
|
| +
|
| + PartialMetadataAnnotation(this.value);
|
| +
|
| + // TODO(ahe): Add more functionality as needed.
|
| +}
|
| +
|
| Node parse(DiagnosticListener diagnosticListener,
|
| CompilationUnitElement element,
|
| doParse(Parser parser)) {
|
|
|