飞镖镜反映评论?

时间:2018-03-20 22:03:27

标签: dart dart-mirrors

在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);
}

然而,该课程并未在其他任何地方使用过。 我们怎样才能使用该功能?我想反思现场的文件。

1 个答案:

答案 0 :(得分:2)

无法通过dart:mirrors提供文档评论。

但是,您可以使用package:analyzer来访问它们。

请参阅https://pub.dartlang.org/documentation/analyzer/0.31.1/analyzer.dart.element.element/Element/documentationComment.html