10 references to StructureKeyword
Microsoft.CodeAnalysis.VisualBasic (8)
Generated\Syntax.xml.Main.Generated.vb (2)
1805
Dim newStructureKeyword = DirectCast(VisitToken(node.
StructureKeyword
).Node, InternalSyntax.KeywordSyntax)
1806
If node.
StructureKeyword
.Node IsNot newStructureKeyword Then anyChanges = True
Generated\Syntax.xml.Syntax.Generated.vb (5)
3459
return Update(attributeLists, Me.Modifiers, Me.
StructureKeyword
, Me.Identifier, Me.TypeParameterList)
3501
return Update(Me.AttributeLists, modifiers, Me.
StructureKeyword
, Me.Identifier, Me.TypeParameterList)
3553
return Update(Me.AttributeLists, Me.Modifiers, Me.
StructureKeyword
, identifier, Me.TypeParameterList)
3583
return Update(Me.AttributeLists, Me.Modifiers, Me.
StructureKeyword
, Me.Identifier, typeParameterList)
3646
If attributeLists <> Me.AttributeLists OrElse modifiers <> Me.Modifiers OrElse structureKeyword <> Me.
StructureKeyword
OrElse identifier <> Me.Identifier OrElse typeParameterList IsNot Me.TypeParameterList Then
Syntax\TypeStatementSyntax.vb (1)
76
Return
StructureKeyword
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (2)
Generated\Syntax.Test.xml.Generated.vb (2)
18818
Assert.NotNull(objectUnderTest.
structureKeyword
)
18820
Dim withObj = objectUnderTest.WithAttributeLists(objectUnderTest.AttributeLists).WithModifiers(objectUnderTest.Modifiers).WithStructureKeyword(objectUnderTest.
StructureKeyword
).WithIdentifier(objectUnderTest.Identifier).WithTypeParameterList(objectUnderTest.TypeParameterList)