@@ -3222,8 +3222,6 @@ final class CommentImpl extends AstNodeImpl
32223222 ///
32233223 /// The list of [tokens] must contain at least one token.
32243224 ///
3225- /// The [type] is the type of the comment.
3226- ///
32273225 /// The list of [references] can be empty if the comment doesn't contain any
32283226 /// embedded references.
32293227 CommentImpl({
@@ -4078,7 +4076,7 @@ abstract final class ConstructorDeclaration
40784076 @override
40794077 ConstructorFragment? get declaredFragment;
40804078
4081- /// The token for the `external` keyword to the given [token] .
4079+ /// The token for the `external` keyword to this constructor declaration .
40824080 Token? get externalKeyword;
40834081
40844082 /// The token for the `factory` keyword, or `null` if the constructor isn't a
@@ -4774,7 +4772,7 @@ sealed class DartPatternImpl extends AstNodeImpl
47744772
47754773 DartType computePatternSchema(ResolverVisitor resolverVisitor);
47764774
4777- /// Dispatches this pattern to the [resolver ], with the given [context]
4775+ /// Dispatches this pattern to the [resolverVisitor ], with the given [context]
47784776 /// information.
47794777 ///
47804778 /// Note: most code shouldn't call this method directly, but should instead
@@ -7144,8 +7142,6 @@ sealed class ForEachPartsImpl extends ForLoopPartsImpl implements ForEachParts {
71447142
71457143 /// Initializes a newly created for-each statement whose loop control variable
71467144 /// is declared internally (in the for-loop part).
7147- ///
7148- /// The [awaitKeyword] can be `null` if this isn't an asynchronous for loop.
71497145 ForEachPartsImpl({
71507146 required this.inKeyword,
71517147 required ExpressionImpl iterable,
@@ -7768,8 +7764,6 @@ sealed class ForPartsImpl extends ForLoopPartsImpl implements ForParts {
77687764
77697765 /// Initializes a newly created for statement.
77707766 ///
7771- /// Either the [variableList] or the [initialization] must be `null`.
7772- ///
77737767 /// Either the [condition] and the list of [updaters] can be `null` if the
77747768 /// loop doesn't have the corresponding attribute.
77757769 ForPartsImpl({
@@ -10710,10 +10704,12 @@ abstract final class InvocationExpression implements Expression {
1071010704 ///
1071110705 /// For example:
1071210706 ///
10713- /// (o.m)<TArgs>(args); // target is `o.m`
10714- /// o.m<TArgs>(args); // target is `m`
10707+ /// ```dart
10708+ /// (o.m)<TArgs>(args); // target is `o.m`
10709+ /// o.m<TArgs>(args); // target is `m`
10710+ /// ```
1071510711 ///
10716- /// In either case, the [ function.staticType] is the [staticInvokeType] before
10712+ /// In either case, the ` function.staticType` is the [staticInvokeType] before
1071710713 /// applying type arguments `TArgs`.
1071810714 Expression get function;
1071910715
@@ -15678,11 +15674,10 @@ final class SetOrMapLiteralImpl extends TypedLiteralImpl
1567815674 /// whether the kind hasn't or can't be determined.
1567915675 _SetOrMapKind _resolvedKind = _SetOrMapKind.unresolved;
1568015676
15681- /// The context type computed by
15682- /// [ResolverVisitor._computeSetOrMapContextType].
15677+ /// The context type computed by [TypedLiteralResolver].
1568315678 ///
1568415679 /// Note that this isn't the same as the context pushed down by type
15685- /// inference (which can be obtained via [ InferenceContext.getContext] ). For
15680+ /// inference (which can be obtained via ` InferenceContext.getContext` ). For
1568615681 /// example, in the following code:
1568715682 ///
1568815683 /// var m = {};
@@ -16828,9 +16823,6 @@ final class SuperFormalParameterImpl extends NormalFormalParameterImpl
1682816823 ///
1682916824 /// The [type] must be `null` if the keyword is `var`.
1683016825 ///
16831- /// The [thisKeyword] and [period] can be `null` if the keyword `this` isn't
16832- /// provided.
16833- ///
1683416826 /// The[parameters] can be `null` if this isn't a function-typed field formal
1683516827 /// parameter.
1683616828 SuperFormalParameterImpl({
@@ -18304,7 +18296,7 @@ sealed class UriBasedDirectiveImpl extends DirectiveImpl
1830418296 }
1830518297}
1830618298
18307- /// Validation codes returned by [UriBasedDirective.validate ].
18299+ /// Validation codes returned by [UriBasedDirectiveImpl.validateUri ].
1830818300class UriValidationCode {
1830918301 static const UriValidationCode INVALID_URI = UriValidationCode('INVALID_URI');
1831018302
@@ -18717,7 +18709,7 @@ sealed class VariablePatternImpl extends DartPatternImpl
1871718709/// switchCase ::=
1871818710/// 'when' [Expression]
1871918711abstract final class WhenClause implements AstNode {
18720- /// The condition that is evaluated when the [ pattern] matches, that must
18712+ /// The condition that is evaluated when the pattern matches, that must
1872118713 /// evaluate to `true` in order for the [expression] to be executed.
1872218714 Expression get expression;
1872318715
0 commit comments