15 references to GetNextSibling
Microsoft.CodeAnalysis.CSharp.Features (11)
EditAndContinue\CSharpEditAndContinueAnalyzer.cs (1)
698nodeOrToken = (direction < 0) ? nodeOrToken.GetPreviousSibling() : nodeOrToken.GetNextSibling();
Structure\Providers\AccessorDeclarationStructureProvider.cs (1)
32var nextSibling = current.GetNextSibling();
Structure\Providers\ConstructorDeclarationStructureProvider.cs (1)
32var nextSibling = current.GetNextSibling();
Structure\Providers\ConversionOperatorDeclarationStructureProvider.cs (1)
34var nextSibling = current.GetNextSibling();
Structure\Providers\EnumDeclarationStructureProvider.cs (1)
27var nextSibling = current.GetNextSibling();
Structure\Providers\EventDeclarationStructureProvider.cs (1)
33var nextSibling = current.GetNextSibling();
Structure\Providers\IndexerDeclarationStructureProvider.cs (1)
33var nextSibling = current.GetNextSibling();
Structure\Providers\MethodDeclarationStructureProvider.cs (1)
32var nextSibling = current.GetNextSibling();
Structure\Providers\OperatorDeclarationStructureProvider.cs (1)
32var nextSibling = current.GetNextSibling();
Structure\Providers\PropertyDeclarationStructureProvider.cs (1)
32var nextSibling = current.GetNextSibling();
Structure\Providers\TypeDeclarationStructureProvider.cs (1)
33var nextSibling = current.GetNextSibling();
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (1)
Syntax\SyntaxNodeTests.cs (1)
1302for (var child = children[0]; child.Kind() != SyntaxKind.None; child = child.GetNextSibling())
Microsoft.CodeAnalysis.VisualBasic.Features (1)
EditAndContinue\VisualBasicEditAndContinueAnalyzer.vb (1)
362nodeOrToken = nodeOrToken.GetNextSibling()
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (2)
TestSyntaxNodes.vb (2)
2004Dim tk_nonzero1 = CType(trivia.First().Token.Parent.Parent.Parent, SyntaxNodeOrToken).GetNextSibling() 2007Dim tk_nonzero2 = tk_nonzero1.GetNextSibling