Base:
property
DeclarationKeyword
Microsoft.CodeAnalysis.VisualBasic.Syntax.MethodBaseSyntax.DeclarationKeyword
7 references to DeclarationKeyword
Microsoft.CodeAnalysis.VisualBasic (1)
Syntax\MethodBaseSyntax.vb (1)
193Return DeclarationKeyword
Microsoft.CodeAnalysis.VisualBasic.Features (6)
Completion\CompletionProviders\ImplementsClauseCompletionProvider.vb (1)
82memberKindKeyword = eventDeclaration.DeclarationKeyword.Kind
Highlighting\KeywordHighlighters\EventBlockHighlighter.vb (2)
31Dim firstKeyword = If(.Modifiers.Count > 0, .Modifiers.First(), .DeclarationKeyword) 32highlights.Add(TextSpan.FromBounds(firstKeyword.SpanStart, .DeclarationKeyword.Span.End))
Highlighting\KeywordHighlighters\EventDeclarationHighlighter.vb (2)
31Dim firstKeyword = If(.Modifiers.Count > 0, .Modifiers.First(), .DeclarationKeyword) 32highlights.Add(TextSpan.FromBounds(firstKeyword.SpanStart, .DeclarationKeyword.Span.End))
Structure\VisualBasicStructureHelpers.vb (1)
145If(eventStatement.CustomKeyword.IsKind(SyntaxKind.None), eventStatement.DeclarationKeyword, eventStatement.CustomKeyword))