gpt4 book ai didi

dart - Dart 镜反射(reflect)评论?

转载 作者:行者123 更新时间:2023-12-03 04:30:04 24 4
gpt4 key购买 nike

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

但是,该类没有在其他任何地方使用。
我们如何使用该功能?我想反射(reflect)外地的文件。

最佳答案

无法通过dart:mirrors获得文档注释。

不过,您可以使用package:analyzer来访问它们。

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

关于dart - Dart 镜反射(reflect)评论?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49394855/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com