25 references to ImplementsClause
Microsoft.CodeAnalysis.VisualBasic (17)
Generated\Syntax.xml.Main.Generated.vb (2)
2293
Dim newImplementsClause = DirectCast(Visit(node.
ImplementsClause
), ImplementsClauseSyntax)
2294
If node.
ImplementsClause
IsNot newImplementsClause Then anyChanges = True
Generated\Syntax.xml.Syntax.Generated.vb (11)
8655
return Update(attributeLists, Me.Modifiers, Me.PropertyKeyword, Me.Identifier, Me.ParameterList, Me.AsClause, Me.Initializer, Me.
ImplementsClause
)
8699
return Update(Me.AttributeLists, modifiers, Me.PropertyKeyword, Me.Identifier, Me.ParameterList, Me.AsClause, Me.Initializer, Me.
ImplementsClause
)
8725
return Update(Me.AttributeLists, Me.Modifiers, propertyKeyword, Me.Identifier, Me.ParameterList, Me.AsClause, Me.Initializer, Me.
ImplementsClause
)
8743
return Update(Me.AttributeLists, Me.Modifiers, Me.PropertyKeyword, identifier, Me.ParameterList, Me.AsClause, Me.Initializer, Me.
ImplementsClause
)
8773
return Update(Me.AttributeLists, Me.Modifiers, Me.PropertyKeyword, Me.Identifier, parameterList, Me.AsClause, Me.Initializer, Me.
ImplementsClause
)
8804
return Update(Me.AttributeLists, Me.Modifiers, Me.PropertyKeyword, Me.Identifier, Me.ParameterList, asClause, Me.Initializer, Me.
ImplementsClause
)
8826
return Update(Me.AttributeLists, Me.Modifiers, Me.PropertyKeyword, Me.Identifier, Me.ParameterList, Me.AsClause, initializer, Me.
ImplementsClause
)
8852
Dim _child = If(Me.
ImplementsClause
IsNot Nothing, Me.
ImplementsClause
, SyntaxFactory.ImplementsClause())
8884
Return Me.
ImplementsClause
8928
If attributeLists <> Me.AttributeLists OrElse modifiers <> Me.Modifiers OrElse propertyKeyword <> Me.PropertyKeyword OrElse identifier <> Me.Identifier OrElse parameterList IsNot Me.ParameterList OrElse asClause IsNot Me.AsClause OrElse initializer IsNot Me.Initializer OrElse implementsClause IsNot Me.
ImplementsClause
Then
Symbols\Source\SourcePropertySymbol.vb (4)
1004
If propertySyntax IsNot Nothing AndAlso propertySyntax.
ImplementsClause
IsNot Nothing Then
1006
Dim implementingSyntax = FindImplementingSyntax(Of PropertySymbol)(propertySyntax.
ImplementsClause
,
1105
If syntax.
ImplementsClause
IsNot Nothing Then
1114
Return ProcessImplementsClause(Of PropertySymbol)(syntax.
ImplementsClause
,
Microsoft.CodeAnalysis.VisualBasic.Features (5)
ExtractInterface\VisualBasicExtractInterfaceService.vb (1)
154
docToRootMap(currentDocId) = currentRoot.ReplaceNode(prop, prop.WithImplementsClause(GetUpdatedImplementsClause(prop.
ImplementsClause
, qualifiedName)))
Highlighting\KeywordHighlighters\PropertyBlockHighlighter.vb (2)
33
If .
ImplementsClause
IsNot Nothing Then
34
highlights.Add(.
ImplementsClause
.ImplementsKeyword.Span)
Highlighting\KeywordHighlighters\PropertyDeclarationHighlighter.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)
19134
Dim withObj = objectUnderTest.WithAttributeLists(objectUnderTest.AttributeLists).WithModifiers(objectUnderTest.Modifiers).WithPropertyKeyword(objectUnderTest.PropertyKeyword).WithIdentifier(objectUnderTest.Identifier).WithParameterList(objectUnderTest.ParameterList).WithAsClause(objectUnderTest.AsClause).WithInitializer(objectUnderTest.Initializer).WithImplementsClause(objectUnderTest.
ImplementsClause
)
Microsoft.CodeAnalysis.VisualBasic.Workspaces (2)
CodeGeneration\VisualBasicSyntaxGenerator.vb (2)
1229
Return DirectCast(declaration, PropertyBlockSyntax).PropertyStatement.
ImplementsClause
1231
Return DirectCast(declaration, PropertyStatementSyntax).
ImplementsClause