12 references to ClassKeyword
Microsoft.CodeAnalysis.VisualBasic (8)
Generated\Syntax.xml.Main.Generated.vb (2)
1847
Dim newClassKeyword = DirectCast(VisitToken(node.
ClassKeyword
).Node, InternalSyntax.KeywordSyntax)
1848
If node.
ClassKeyword
.Node IsNot newClassKeyword Then anyChanges = True
Generated\Syntax.xml.Syntax.Generated.vb (5)
3963
return Update(attributeLists, Me.Modifiers, Me.
ClassKeyword
, Me.Identifier, Me.TypeParameterList)
4005
return Update(Me.AttributeLists, modifiers, Me.
ClassKeyword
, Me.Identifier, Me.TypeParameterList)
4057
return Update(Me.AttributeLists, Me.Modifiers, Me.
ClassKeyword
, identifier, Me.TypeParameterList)
4087
return Update(Me.AttributeLists, Me.Modifiers, Me.
ClassKeyword
, Me.Identifier, typeParameterList)
4150
If attributeLists <> Me.AttributeLists OrElse modifiers <> Me.Modifiers OrElse classKeyword <> Me.
ClassKeyword
OrElse identifier <> Me.Identifier OrElse typeParameterList IsNot Me.TypeParameterList Then
Syntax\TypeStatementSyntax.vb (1)
104
Return
ClassKeyword
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (2)
Generated\Syntax.Test.xml.Generated.vb (2)
18836
Assert.NotNull(objectUnderTest.
classKeyword
)
18838
Dim withObj = objectUnderTest.WithAttributeLists(objectUnderTest.AttributeLists).WithModifiers(objectUnderTest.Modifiers).WithClassKeyword(objectUnderTest.
ClassKeyword
).WithIdentifier(objectUnderTest.Identifier).WithTypeParameterList(objectUnderTest.TypeParameterList)
Microsoft.VisualStudio.LanguageServices.VisualBasic (2)
CodeModel\VisualBasicCodeModelService.vb (2)
2443
moduleKeyword:=SyntaxFactory.Token(classBlock.ClassStatement.
ClassKeyword
.LeadingTrivia, SyntaxKind.ModuleKeyword, classBlock.ClassStatement.
ClassKeyword
.TrailingTrivia),