2 implementations of LocalDeclarationStatement
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
CSharpSyntaxKinds.cs (1)
132public int LocalDeclarationStatement => (int)SyntaxKind.LocalDeclarationStatement;
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
VisualBasicSyntaxKinds.vb (1)
136Public ReadOnly Property LocalDeclarationStatement As Integer = SyntaxKind.LocalDeclarationStatement Implements ISyntaxKinds.LocalDeclarationStatement
3 references to LocalDeclarationStatement
Microsoft.CodeAnalysis.VisualBasic.Workspaces (1)
VisualBasicSyntaxKinds.vb (1)
136Public ReadOnly Property LocalDeclarationStatement As Integer = SyntaxKind.LocalDeclarationStatement Implements ISyntaxKinds.LocalDeclarationStatement
Microsoft.CodeAnalysis.Workspaces (2)
ISyntaxFactsExtensions.cs (1)
899=> node?.RawKind == syntaxFacts.SyntaxKinds.LocalDeclarationStatement;
Shared\Extensions\SemanticModelExtensions.cs (1)
94(token.Parent?.RawKind == syntaxKinds.UsingStatement || token.Parent?.RawKind == syntaxKinds.LocalDeclarationStatement))