| Index: pkg/analyzer/lib/src/generated/ast.dart
 | 
| diff --git a/pkg/analyzer/lib/src/generated/ast.dart b/pkg/analyzer/lib/src/generated/ast.dart
 | 
| index ca83bdd39446d9c4cd39b28aad47853ec22ff615..7940662d36610f9447dc5ea6ba2708aeabaa117a 100644
 | 
| --- a/pkg/analyzer/lib/src/generated/ast.dart
 | 
| +++ b/pkg/analyzer/lib/src/generated/ast.dart
 | 
| @@ -6021,6 +6021,9 @@ class DefaultFormalParameter extends FormalParameter {
 | 
|    @override
 | 
|    bool get isFinal => _parameter != null && _parameter.isFinal;
 | 
|  
 | 
| +  @override
 | 
| +  NodeList<Annotation> get metadata => _parameter.metadata;
 | 
| +
 | 
|    /**
 | 
|     * Return the formal parameter with which the default value is associated.
 | 
|     */
 | 
| @@ -7525,6 +7528,11 @@ abstract class FormalParameter extends AstNode {
 | 
|     * Return the kind of this parameter.
 | 
|     */
 | 
|    ParameterKind get kind;
 | 
| +
 | 
| +  /**
 | 
| +   * Return the annotations associated with this parameter.
 | 
| +   */
 | 
| +  NodeList<Annotation> get metadata;
 | 
|  }
 | 
|  
 | 
|  /**
 | 
| @@ -13731,9 +13739,7 @@ abstract class NormalFormalParameter extends FormalParameter {
 | 
|      return ParameterKind.REQUIRED;
 | 
|    }
 | 
|  
 | 
| -  /**
 | 
| -   * Return the annotations associated with this parameter.
 | 
| -   */
 | 
| +  @override
 | 
|    NodeList<Annotation> get metadata => _metadata;
 | 
|  
 | 
|    /**
 | 
| 
 |