10 references to InterfaceKeyword
Microsoft.CodeAnalysis.VisualBasic (8)
Generated\Syntax.xml.Main.Generated.vb (2)
1826
Dim newInterfaceKeyword = DirectCast(VisitToken(node.
InterfaceKeyword
).Node, InternalSyntax.KeywordSyntax)
1827
If node.
InterfaceKeyword
.Node IsNot newInterfaceKeyword Then anyChanges = True
Generated\Syntax.xml.Syntax.Generated.vb (5)
3711
return Update(attributeLists, Me.Modifiers, Me.
InterfaceKeyword
, Me.Identifier, Me.TypeParameterList)
3753
return Update(Me.AttributeLists, modifiers, Me.
InterfaceKeyword
, Me.Identifier, Me.TypeParameterList)
3805
return Update(Me.AttributeLists, Me.Modifiers, Me.
InterfaceKeyword
, identifier, Me.TypeParameterList)
3835
return Update(Me.AttributeLists, Me.Modifiers, Me.
InterfaceKeyword
, Me.Identifier, typeParameterList)
3898
If attributeLists <> Me.AttributeLists OrElse modifiers <> Me.Modifiers OrElse interfaceKeyword <> Me.
InterfaceKeyword
OrElse identifier <> Me.Identifier OrElse typeParameterList IsNot Me.TypeParameterList Then
Syntax\TypeStatementSyntax.vb (1)
132
Return
InterfaceKeyword
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (2)
Generated\Syntax.Test.xml.Generated.vb (2)
18827
Assert.NotNull(objectUnderTest.
interfaceKeyword
)
18829
Dim withObj = objectUnderTest.WithAttributeLists(objectUnderTest.AttributeLists).WithModifiers(objectUnderTest.Modifiers).WithInterfaceKeyword(objectUnderTest.
InterfaceKeyword
).WithIdentifier(objectUnderTest.Identifier).WithTypeParameterList(objectUnderTest.TypeParameterList)