DO reference only in scope identifiers in doc comments.
If you surround things like variable, method, or type names in square brackets,
then dart doc
will look up the name and
link to its docs. For this all to work, ensure that all identifiers in docs
wrapped in brackets are in scope.
For example, assuming outOfScopeId
is out of scope:
BAD:
/// Return true if [value] is larger than [outOfScopeId].
bool isOutOfRange(int value) { ... }
GOOD:
/// Return the larger of [a] or [b].
int max_int(int a, int b) { ... }
Note that the square bracket comment format is designed to allow comments to refer to declarations using a fairly natural format but does not allow arbitrary expressions. In particular, code references within square brackets can consist of either
Known limitations
The comment_references
linter rule aligns with the Dart analyzer's notion of
comment references, which is separate from Dartdoc's notion of comment
references. The linter rule may report comment references which cannot be
resolved by the analyzer, but which Dartdoc can. See
dartdoc#1142 for more
information.