| Index: pkg/analyzer/lib/src/dart/ast/token.dart
|
| diff --git a/pkg/analyzer/lib/src/dart/ast/token.dart b/pkg/analyzer/lib/src/dart/ast/token.dart
|
| index 39a3ab5954637d1ef912b4e82d7e86f053d9480d..98281134d268d2316a22d842eeb2d6d5a218dc05 100644
|
| --- a/pkg/analyzer/lib/src/dart/ast/token.dart
|
| +++ b/pkg/analyzer/lib/src/dart/ast/token.dart
|
| @@ -45,7 +45,7 @@ class BeginTokenWithComment extends BeginToken implements TokenWithComment {
|
| /**
|
| * Initialize a newly created token to have the given [type] at the given
|
| * [offset] and to be preceded by the comments reachable from the given
|
| - * [comment].
|
| + * [_precedingComment].
|
| */
|
| BeginTokenWithComment(TokenType type, int offset, this._precedingComment)
|
| : super(type, offset) {
|
| @@ -174,7 +174,7 @@ class KeywordTokenWithComment extends KeywordToken implements TokenWithComment {
|
| /**
|
| * Initialize a newly created token to to represent the given [keyword] at the
|
| * given [offset] and to be preceded by the comments reachable from the given
|
| - * [comment].
|
| + * [_precedingComment].
|
| */
|
| KeywordTokenWithComment(Keyword keyword, int offset, this._precedingComment)
|
| : super(keyword, offset) {
|
|
|