42 references to ImplementsClause
Microsoft.CodeAnalysis.VisualBasic (20)
Generated\Syntax.xml.Main.Generated.vb (2)
2133
Dim newImplementsClause = DirectCast(Visit(node.
ImplementsClause
), ImplementsClauseSyntax)
2134
If node.
ImplementsClause
IsNot newImplementsClause Then anyChanges = True
Generated\Syntax.xml.Syntax.Generated.vb (12)
6638
return Update(Me.Kind, attributeLists, Me.Modifiers, Me.SubOrFunctionKeyword, Me.Identifier, Me.TypeParameterList, Me.ParameterList, Me.AsClause, Me.HandlesClause, Me.
ImplementsClause
)
6682
return Update(Me.Kind, Me.AttributeLists, modifiers, Me.SubOrFunctionKeyword, Me.Identifier, Me.TypeParameterList, Me.ParameterList, Me.AsClause, Me.HandlesClause, Me.
ImplementsClause
)
6708
return Update(Me.Kind, Me.AttributeLists, Me.Modifiers, subOrFunctionKeyword, Me.Identifier, Me.TypeParameterList, Me.ParameterList, Me.AsClause, Me.HandlesClause, Me.
ImplementsClause
)
6726
return Update(Me.Kind, Me.AttributeLists, Me.Modifiers, Me.SubOrFunctionKeyword, identifier, Me.TypeParameterList, Me.ParameterList, Me.AsClause, Me.HandlesClause, Me.
ImplementsClause
)
6748
return Update(Me.Kind, Me.AttributeLists, Me.Modifiers, Me.SubOrFunctionKeyword, Me.Identifier, typeParameterList, Me.ParameterList, Me.AsClause, Me.HandlesClause, Me.
ImplementsClause
)
6783
return Update(Me.Kind, Me.AttributeLists, Me.Modifiers, Me.SubOrFunctionKeyword, Me.Identifier, Me.TypeParameterList, parameterList, Me.AsClause, Me.HandlesClause, Me.
ImplementsClause
)
6814
return Update(Me.Kind, Me.AttributeLists, Me.Modifiers, Me.SubOrFunctionKeyword, Me.Identifier, Me.TypeParameterList, Me.ParameterList, asClause, Me.HandlesClause, Me.
ImplementsClause
)
6835
return Update(Me.Kind, Me.AttributeLists, Me.Modifiers, Me.SubOrFunctionKeyword, Me.Identifier, Me.TypeParameterList, Me.ParameterList, Me.AsClause, handlesClause, Me.
ImplementsClause
)
6866
Dim _child = If(Me.
ImplementsClause
IsNot Nothing, Me.
ImplementsClause
, SyntaxFactory.ImplementsClause())
6902
Return Me.
ImplementsClause
6952
If kind <> Me.Kind OrElse attributeLists <> Me.AttributeLists OrElse modifiers <> Me.Modifiers OrElse subOrFunctionKeyword <> Me.SubOrFunctionKeyword OrElse identifier <> Me.Identifier OrElse typeParameterList IsNot Me.TypeParameterList OrElse parameterList IsNot Me.ParameterList OrElse asClause IsNot Me.AsClause OrElse handlesClause IsNot Me.HandlesClause OrElse implementsClause IsNot Me.
ImplementsClause
Then
Symbols\Source\SourceMemberMethodSymbol.vb (4)
347
Return syntax IsNot Nothing AndAlso syntax.
ImplementsClause
IsNot Nothing
364
If (syntax IsNot Nothing) AndAlso (syntax.
ImplementsClause
IsNot Nothing) Then
392
(syntax.
ImplementsClause
IsNot Nothing) Then
405
Return ProcessImplementsClause(Of MethodSymbol)(syntax.
ImplementsClause
, Me, DirectCast(ContainingType, SourceMemberContainerTypeSymbol), binder, diagBag)
Symbols\Source\SourceMethodSymbol.vb (2)
1163
If methodSyntax IsNot Nothing AndAlso methodSyntax.
ImplementsClause
IsNot Nothing AndAlso containingSourceType IsNot Nothing Then
1165
Dim implementingSyntax = FindImplementingSyntax(methodSyntax.
ImplementsClause
,
Microsoft.CodeAnalysis.VisualBasic.CodeStyle.Fixes (3)
VisualBasicConvertToAsyncFunctionCodeFixProvider.vb (1)
99
methodNode.
ImplementsClause
) _
VisualBasicMakeMethodAsynchronousCodeFixProvider.vb (1)
123
subStatement.
ImplementsClause
)
VisualBasicMakeMethodSynchronousCodeFixProvider.vb (1)
75
functionStatement.
ImplementsClause
)
Microsoft.CodeAnalysis.VisualBasic.Features (8)
ExtractInterface\VisualBasicExtractInterfaceService.vb (1)
142
docToRootMap(currentDocId) = currentRoot.ReplaceNode(method, method.WithImplementsClause(GetUpdatedImplementsClause(method.
ImplementsClause
, qualifiedName)))
Highlighting\KeywordHighlighters\MethodDeclarationHighlighter.vb (2)
43
If .
ImplementsClause
IsNot Nothing Then
44
highlights.Add(.
ImplementsClause
.ImplementsKeyword.Span)
ReplaceMethodWithProperty\VisualBasicReplaceMethodWithPropertyService.vb (2)
84
getMethodStatement.AsClause, initializer:=Nothing, implementsClause:=getMethodStatement.
ImplementsClause
)
99
getMethodStatement.AsClause, initializer:=Nothing, implementsClause:=getMethodStatement.
ImplementsClause
)
VisualBasicConvertToAsyncFunctionCodeFixProvider.vb (1)
99
methodNode.
ImplementsClause
) _
VisualBasicMakeMethodAsynchronousCodeFixProvider.vb (1)
123
subStatement.
ImplementsClause
)
VisualBasicMakeMethodSynchronousCodeFixProvider.vb (1)
75
functionStatement.
ImplementsClause
)
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests (1)
Compilation\SemanticModelAPITests.vb (1)
1905
Dim implementsClause = methodDecl.
ImplementsClause
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (3)
Generated\Syntax.Test.xml.Generated.vb (2)
19045
Dim withObj = objectUnderTest.WithAttributeLists(objectUnderTest.AttributeLists).WithModifiers(objectUnderTest.Modifiers).WithSubOrFunctionKeyword(objectUnderTest.SubOrFunctionKeyword).WithIdentifier(objectUnderTest.Identifier).WithTypeParameterList(objectUnderTest.TypeParameterList).WithParameterList(objectUnderTest.ParameterList).WithAsClause(objectUnderTest.AsClause).WithHandlesClause(objectUnderTest.HandlesClause).WithImplementsClause(objectUnderTest.
ImplementsClause
)
19054
Dim withObj = objectUnderTest.WithAttributeLists(objectUnderTest.AttributeLists).WithModifiers(objectUnderTest.Modifiers).WithSubOrFunctionKeyword(objectUnderTest.SubOrFunctionKeyword).WithIdentifier(objectUnderTest.Identifier).WithTypeParameterList(objectUnderTest.TypeParameterList).WithParameterList(objectUnderTest.ParameterList).WithAsClause(objectUnderTest.AsClause).WithHandlesClause(objectUnderTest.HandlesClause).WithImplementsClause(objectUnderTest.
ImplementsClause
)
TestSyntaxNodes.vb (1)
1168
node.
ImplementsClause
)
Microsoft.CodeAnalysis.VisualBasic.Workspaces (5)
CodeCleanup\AsyncOrIteratorFunctionReturnTypeFixer.vb (1)
26
func.TypeParameterList, parameterListOpt, asClauseOpt, func.HandlesClause, func.
ImplementsClause
)
CodeGeneration\VisualBasicSyntaxGenerator.vb (4)
1224
Return DirectCast(declaration, MethodBlockSyntax).SubOrFunctionStatement.
ImplementsClause
1227
Return DirectCast(declaration, MethodStatementSyntax).
ImplementsClause
2395
ss.
ImplementsClause
)
2480
implementsClause:=ms.
ImplementsClause
)
Microsoft.VisualStudio.LanguageServices.VisualBasic (2)
CodeModel\VisualBasicCodeModelService.vb (2)
3213
implementsClause:=methodStatement.
ImplementsClause
)
3229
implementsClause:=methodStatement.
ImplementsClause
)