gpt4 book ai didi

java - 如何在 CDT ASTParser 中将 IASTComment 链接到 IASTDeclaration

转载 作者:塔克拉玛干 更新时间:2023-11-01 23:10:28 28 4
gpt4 key购买 nike

我正在使用 CDT ASTParser 来解析 C/C++ 源文件的一些内容。示例:

//Docs for function min
int min(int a[], int n) {
//Comment here
}

int min1(){}

/*
Docs for function min2
*/
int min2(){}

通过使用 ASTVisitor,我可以解析代码中的函数定义列表,但我不知道如何“链接”定义代码上方的 IASTComment:

void handle(IASTTranslationUnit unit){
unit.accept(new ASTVisitor() {
{ shouldVisitDeclarations = true; }

@Override
public int visit(IASTDeclaration declaration) {

if (declaration instanceof IASTFunctionDefinition) {
IASTFunctionDefinition fnDefine =
(IASTFunctionDefinition) declaration;
IASTFunctionDeclarator fnDeclare = fnDefine.getDeclarator();

System.out.printf("Function: %s, type: %s, comment: %s\n",
fnDeclare.getName().getRawSignature(),
fnDefine.getDeclSpecifier().getRawSignature(),
"Somehow get the comment above function define???"
);
}
return PROCESS_SKIP;
}

@Override
public int visit(IASTComment comment) {
System.out.println("Comment: " + comment.getRawSignature());
return PROCESS_CONTINUE;
}

});

for (IASTComment cmt: unit.getComments())
System.out.println("Comment: " + cmt.getRawSignature());
}

ASTVisitor 类中的visit(IASTComment comment) 已弃用,IASTTranslationUnit.getComments() 方法只返回整个源文件中的注释列表,此处没有结构.
那么,如何获取链接到函数定义的 IASTComment 对象(如果有)?

最佳答案

您可以在 org.eclipse.cdt.internal.core.dom.rewrite.commenthandler 包中使用 ASTCommenter.getCommentedNodeMap(IASTTranslationUnit)。该方法返回一个 NodeCommentMap,它将注释映射到 AST 中的节点。可以将三种类型的评论分配给节点。在下面的示例中,方法声明是节点:

//this is a leading comment
void method() //this is a trailing comment
//this is a freestanding comment
{
...

NodeCommentMap.getOffsetIncludingComments(IASTNode)返回节点的偏移量,包括其分配的前导注释。 NodeCommentMap.getEndOffsetIncludingComments(IASTNode) 返回节点的结束偏移量,包括其分配的尾随注释。分配的独立评论必须由您自己处理。您可以使用 NodeCommentMap.getFreestandingCommentsForNode(IASTNode) 获取独立注释。至少我在 cdt 包中找不到任何默认方法。

如果您想了解更多信息,建议阅读以下类中的文档:

  • org.eclipse.cdt.internal.core.dom.rewrite.commenthandler.ASTCommenter
  • org.eclipse.cdt.core.parser.tests.rewrite.commenthandler.CommentHandlingTest
  • org.eclipse.cdt.internal.core.dom.rewrite.commenthandler.NodeCommenter

注意:大多数包/类都是内部的。

关于java - 如何在 CDT ASTParser 中将 IASTComment 链接到 IASTDeclaration,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31583886/

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