在mirrors.dart源代码中,您可以找到:
/**
* Class used for encoding comments as metadata annotations.
*/
class Comment {
/**
* The comment text as written in the source text.
*/
final String text;
/**
* The comment text without the start, end, and padding text.
*
* For example, if [text] is [: /** Comment text. */ :] then the [trimmedText]
* is [: Comment text. :].
*/
final String trimmedText;
/**
* Is [:true:] if this comment is a documentation comment.
*
* That is, that the comment is either enclosed in [: /** ... */ :] or starts
* with [: /// :].
*/
final bool isDocComment;
const Comment(this.text, this.trimmedText, this.isDocComment);
}
然而,该课程并未在其他任何地方使用过。 我们怎样才能使用该功能?我想反思现场的文件。
答案 0 :(得分:2)
无法通过dart:mirrors
提供文档评论。
但是,您可以使用package:analyzer
来访问它们。