24 references to ImplementsClause
Microsoft.CodeAnalysis.VisualBasic (18)
Declarations\DeclarationTreeBuilder.vb (1)
763
If node.AsClause IsNot Nothing OrElse node.
ImplementsClause
IsNot Nothing Then
Generated\Syntax.xml.Main.Generated.vb (2)
2243
Dim newImplementsClause = DirectCast(Visit(node.
ImplementsClause
), ImplementsClauseSyntax)
2244
If node.
ImplementsClause
IsNot newImplementsClause Then anyChanges = True
Generated\Syntax.xml.Syntax.Generated.vb (11)
8035
return Update(attributeLists, Me.Modifiers, Me.CustomKeyword, Me.EventKeyword, Me.Identifier, Me.ParameterList, Me.AsClause, Me.
ImplementsClause
)
8079
return Update(Me.AttributeLists, modifiers, Me.CustomKeyword, Me.EventKeyword, Me.Identifier, Me.ParameterList, Me.AsClause, Me.
ImplementsClause
)
8112
return Update(Me.AttributeLists, Me.Modifiers, customKeyword, Me.EventKeyword, Me.Identifier, Me.ParameterList, Me.AsClause, Me.
ImplementsClause
)
8130
return Update(Me.AttributeLists, Me.Modifiers, Me.CustomKeyword, eventKeyword, Me.Identifier, Me.ParameterList, Me.AsClause, Me.
ImplementsClause
)
8148
return Update(Me.AttributeLists, Me.Modifiers, Me.CustomKeyword, Me.EventKeyword, identifier, Me.ParameterList, Me.AsClause, Me.
ImplementsClause
)
8178
return Update(Me.AttributeLists, Me.Modifiers, Me.CustomKeyword, Me.EventKeyword, Me.Identifier, parameterList, Me.AsClause, Me.
ImplementsClause
)
8209
return Update(Me.AttributeLists, Me.Modifiers, Me.CustomKeyword, Me.EventKeyword, Me.Identifier, Me.ParameterList, asClause, Me.
ImplementsClause
)
8235
Dim _child = If(Me.
ImplementsClause
IsNot Nothing, Me.
ImplementsClause
, SyntaxFactory.ImplementsClause())
8263
Return Me.
ImplementsClause
8307
If attributeLists <> Me.AttributeLists OrElse modifiers <> Me.Modifiers OrElse customKeyword <> Me.CustomKeyword OrElse eventKeyword <> Me.EventKeyword OrElse identifier <> Me.Identifier OrElse parameterList IsNot Me.ParameterList OrElse asClause IsNot Me.AsClause OrElse implementsClause IsNot Me.
ImplementsClause
Then
Symbols\Source\SourceEventSymbol.vb (4)
164
Dim requiresDelegateType As Boolean = syntax.
ImplementsClause
Is Nothing AndAlso Me.IsWindowsRuntimeEvent
251
Dim implementsClause = syntax.
ImplementsClause
726
If eventSyntax.
ImplementsClause
IsNot Nothing Then
728
Dim implementingSyntax = FindImplementingSyntax(Of EventSymbol)(eventSyntax.
ImplementsClause
,
Microsoft.CodeAnalysis.VisualBasic.Features (5)
ExtractInterface\VisualBasicExtractInterfaceService.vb (1)
148
docToRootMap(currentDocId) = currentRoot.ReplaceNode([event], [event].WithImplementsClause(GetUpdatedImplementsClause([event].
ImplementsClause
, qualifiedName)))
Highlighting\KeywordHighlighters\EventBlockHighlighter.vb (2)
34
If .
ImplementsClause
IsNot Nothing Then
35
highlights.Add(.
ImplementsClause
.ImplementsKeyword.Span)
Highlighting\KeywordHighlighters\EventDeclarationHighlighter.vb (2)
34
If .
ImplementsClause
IsNot Nothing Then
35
highlights.Add(.
ImplementsClause
.ImplementsKeyword.Span)
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (1)
Generated\Syntax.Test.xml.Generated.vb (1)
19116
Dim withObj = objectUnderTest.WithAttributeLists(objectUnderTest.AttributeLists).WithModifiers(objectUnderTest.Modifiers).WithCustomKeyword(objectUnderTest.CustomKeyword).WithEventKeyword(objectUnderTest.EventKeyword).WithIdentifier(objectUnderTest.Identifier).WithParameterList(objectUnderTest.ParameterList).WithAsClause(objectUnderTest.AsClause).WithImplementsClause(objectUnderTest.
ImplementsClause
)