3 overrides of GetExpression
Microsoft.CodeAnalysis.VisualBasic (3)
Syntax\ArgumentSyntax.vb (3)
46Public NotOverridable Overrides Function GetExpression() As ExpressionSyntax 61Public NotOverridable Overrides Function GetExpression() As ExpressionSyntax 76Public NotOverridable Overrides Function GetExpression() As ExpressionSyntax
23 references to GetExpression
Microsoft.CodeAnalysis.VisualBasic (2)
Binding\Binder_Delegates.vb (2)
105expressionSyntax = argumentSyntax.GetExpression() 177expressionSyntax = argumentSyntax.GetExpression()
Microsoft.CodeAnalysis.VisualBasic.CodeStyle (1)
ArgumentSyntaxExtensions.vb (1)
85Return argument.GetExpression()
Microsoft.CodeAnalysis.VisualBasic.CodeStyle.Fixes (5)
VisualBasicAddExplicitCastCodeFixProvider.vb (3)
68If argument IsNot Nothing AndAlso argument.GetExpression.Equals(spanNode) Then 135Dim argumentExpression = arguments(i).GetExpression 192mutablePotentialConversionTypes.Add((targetArgument.GetExpression(), conversionType))
VisualBasicUseCollectionInitializerCodeFixProvider.vb (2)
79newExpression = arguments(0).GetExpression() 83arguments.Select(Function(a) a.GetExpression()),
Microsoft.CodeAnalysis.VisualBasic.Features (9)
ChangeSignature\UnifiedArgumentSyntax.vb (1)
48Create(SyntaxFactory.SimpleArgument(SyntaxFactory.NameColonEquals(SyntaxFactory.IdentifierName(name)), _argument.GetExpression())))
ChangeSignature\VisualBasicChangeSignatureService.vb (1)
552lastArgumentExpression = argumentList.Arguments.LastOrDefault()?.GetExpression()
Completion\CompletionProviders\InternalsVisibleToCompletionProvider.vb (1)
52Return If(arguments.Count > 0, arguments(0).GetExpression(), Nothing)
ReplaceMethodWithProperty\VisualBasicReplaceMethodWithPropertyService.vb (1)
208invocationExpression.ArgumentList.Arguments(0).GetExpression())
VisualBasicAddExplicitCastCodeFixProvider.vb (3)
68If argument IsNot Nothing AndAlso argument.GetExpression.Equals(spanNode) Then 135Dim argumentExpression = arguments(i).GetExpression 192mutablePotentialConversionTypes.Add((targetArgument.GetExpression(), conversionType))
VisualBasicUseCollectionInitializerCodeFixProvider.vb (2)
79newExpression = arguments(0).GetExpression() 83arguments.Select(Function(a) a.GetExpression()),
Microsoft.CodeAnalysis.VisualBasic.Symbol.UnitTests (1)
SymbolDisplay\SymbolDisplayTests.vb (1)
5275Dim escapedThis = invocation.ArgumentList.Arguments(0).GetExpression()
Microsoft.CodeAnalysis.VisualBasic.Workspaces (2)
ArgumentSyntaxExtensions.vb (1)
85Return argument.GetExpression()
Extensions\SemanticModelExtensions.vb (1)
100argument.GetExpression(), capitalize:=False, cancellationToken:=cancellationToken)
Microsoft.VisualStudio.LanguageServices.VisualBasic (3)
CodeModel\SyntaxExtensions.vb (1)
18Return argument.GetExpression()
CodeModel\VisualBasicCodeModelService.CodeModelEventCollector.vb (2)
265Dim oldExpression = oldArgument.GetExpression() 266Dim newExpression = newArgument.GetExpression()