飞镖镜反射评论?
Dart mirrors reflectss Comments?
在 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);
}
然而 class 没有在其他任何地方使用。
我们如何才能使用该功能?我想反映字段的文档。
无法通过 dart:mirrors
获得文档评论。
不过,您可以使用 package:analyzer
访问它们。
在 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);
}
然而 class 没有在其他任何地方使用。 我们如何才能使用该功能?我想反映字段的文档。
无法通过 dart:mirrors
获得文档评论。
不过,您可以使用 package:analyzer
访问它们。