gpt4 book ai didi

c# - Roslyn 在指定节点后插入节点

转载 作者:行者123 更新时间:2023-11-30 12:25:52 25 4
gpt4 key购买 nike

我正在编写一个代码分析器,它反转 if 语句以减少嵌套。

我能够生成一个新的 if 节点并将其替换为文档根目录。但是,我必须将来自此 if 语句的所有内容(语句)移至其下方。让我展示一下我到目前为止所取得的成就:

var ifNode = @if;
var ifStatement = @if.Statement as BlockSyntax;
var returnNode = (ifNode.Parent as BlockSyntax).Statements.Last() as ReturnStatementSyntax ?? SyntaxFactory.ReturnStatement();
var semanticModel = await document.GetSemanticModelAsync(cancellationToken).ConfigureAwait(false);
var invertedIf = ifNode.WithCondition(Negate(ifNode.Condition, semanticModel, cancellationToken))
.WithStatement(returnNode)
.WithAdditionalAnnotations(Formatter.Annotation);
var root = await document.GetSyntaxRootAsync(cancellationToken);
var newRoot = root.ReplaceNode(ifNode, invertedIf);
newRoot = newRoot.InsertNodesAfter(invertedIf, ifStatement.Statements); //It seems no to be working. There's no code after specified node.

return document.WithSyntaxRoot(newRoot);

之前:

public int Foo()
{
if (true)
{
var a = 3;
return a;
}

return 0;
}

之后:

public int Foo()
{
if (false)
return 0;

var a = 3;
return a;
}

最佳答案

Carlos,问题是在您 ReplaceNode 之后您生成了一个新节点。当你去 InsertNodeAfter 从原来的根节点传一个节点的时候,新节点找不到了。在分析器中,您需要一次完成所有更改,或者注释或跟踪节点以便稍后返回。

但由于您是先替换节点,新节点将完全位于同一位置。所以你可以快捷方式和 FindNode,像这样:

newRoot = newRoot.InsertNodesAfter(newRoot.FindNode(ifNode.Span), ifStatement.Statements);

我还没有测试过这段代码,但它应该可以工作。

关于c# - Roslyn 在指定节点后插入节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30427741/

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