We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9178fc commit 8e8b36eCopy full SHA for 8e8b36e
lib/src/comment_references/parser.dart
@@ -99,7 +99,9 @@ class CommentReferenceParser {
99
/// ```text
100
/// <rawCommentReference> ::= <prefix>?<commentReference><suffix>?
101
///
102
- /// <commentReference> ::= (<packageName> '.')? (<libraryName> '.')? <dartdocIdentifier> <typeArguments> ('.' <identifier> <typeArguments>)*
+ /// <commentReference> ::= <globalScopeReference>? <dartdocIdentifier> <typeArguments>? ('.' <identifier> <typeArguments>?)*
103
+ ///
104
+ /// <globalScopeReference> ::= (<packageName> '.')? (<libraryName> '.')
105
/// ```
106
List<CommentReferenceNode> _parseRawCommentReference() {
107
var children = <CommentReferenceNode>[];
0 commit comments