1 override of InsertNodesBefore
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
CodeGeneration\CSharpSyntaxGenerator.cs (1)
3017public override SyntaxNode InsertNodesBefore(SyntaxNode root, SyntaxNode declaration, IEnumerable<SyntaxNode> newDeclarations)
4 references to InsertNodesBefore
Microsoft.CodeAnalysis.CSharp.Workspaces (3)
CodeGeneration\CSharpSyntaxGenerator.cs (3)
3032return base.InsertNodesBefore(root, declaration, newDeclarations); 3041return base.InsertNodesBefore(root, fullDecl, newDeclarations); 3053return base.InsertNodesBefore(root, fullDecl, newDeclarations);
Microsoft.CodeAnalysis.Workspaces (1)
Editing\SyntaxEditor.cs (1)
316? generator.InsertNodesBefore(root, currentNode, _newNodes)