I'm using the Roslyn syntax tree to update if/else statements. Here's my code:
foreach (StatementSyntax statement in blockNode.Statements)
{
if (statement.IsKind(SyntaxKind.IfStatement))
{
BlockSyntax ifBlock = statement.ChildNodes().OfType<BlockSyntax>().FirstOrDefault();
if (ifBlock != null)
{
ReturnStatementSyntax newRSS = ifBlock.ChildNodes().OfType<ReturnStatementSyntax>().FirstOrDefault();
blockNode = blockNode.InsertNodesBefore(newRSS, newExitCode);
}
ElseClauseSyntax elseBlock = statement.ChildNodes().OfType<ElseClauseSyntax>().FirstOrDefault();
if (elseBlock != null)
{
BlockSyntax block = elseBlock.ChildNodes().OfType<BlockSyntax>().FirstOrDefault();
if (block != null)
{
ReturnStatementSyntax newRSS = block.ChildNodes().OfType<ReturnStatementSyntax>().FirstOrDefault();
blockNode = blockNode.InsertNodesBefore(newRSS, newExitCode);
}
}
newBlock = newBlock.AddRange(blockNode.Statements);
}
}
Can anyone explain why the first blockNode insert nodes works, but the second one does not? I see the code I want inserted both times, but only the first one updates the syntax tree. The second one does nothing.
Update: I've made the changes suggested by JoshVarty. I used the DocumentEditor to load of the changes. I'm now getting an exception when I call GetChangedDocument. Here's my code:
DocumentEditor editor = DocumentEditor.CreateAsync(doc).Result;
editor.InsertBefore(blockNode, newEntryCode);
editor.InsertAfter(blockNode, newExitCode);
Document newDoc = editor.GetChangedDocument();
The exception is: An exception of type 'System.InvalidOperationException' occurred in Microsoft.CodeAnalysis.CSharp.dll but was not handled in user code
Additional information: The item specified is not the element of a list.
Do I have to use the Generator? What did I miss?
Thanks
Here's how I solved the issue. I used the SyntaxGenerator to rewrite the if statement and then used DocumentEditor to hold all the changes to the syntax tree as I rewrite certain methods. Here's the relevant code:
Thanks to Josh Varty and Jeroen Vannevel for their assistance in figuring this one out.