3 writes to TypeSymbol
Microsoft.VisualStudio.LanguageServices (2)
ChangeSignature\AddParameterDialogViewModel.cs (2)
187
TypeSymbol
= null;
194
TypeSymbol
= _semanticModel.GetSpeculativeTypeInfo(PositionForTypeBinding, languageService.GetTypeNode(typeName), SpeculativeBindingOption.BindAsTypeOrNamespace).Type;
Microsoft.VisualStudio.LanguageServices.UnitTests (1)
ChangeSignature\AddParameterViewModelTests.vb (1)
328
viewModel.
TypeSymbol
= Nothing
6 references to TypeSymbol
Microsoft.VisualStudio.LanguageServices (6)
ChangeSignature\AddParameterDialogViewModel.cs (5)
58
public string? TypeName =>
TypeSymbol
?.ToDisplayString(s_symbolDisplayFormat);
60
public bool TypeBinds => !
TypeSymbol
!.IsErrorType();
131
if (
TypeSymbol
== null || !IsParameterTypeSyntacticallyValid(VerbatimTypeName))
197
if (!typeParses ||
TypeSymbol
== null)
206
var parameterTypeBinds = DoesTypeFullyBind(
TypeSymbol
);
ChangeSignature\ChangeSignatureDialog.xaml.cs (1)
169
addParameterViewModel.
TypeSymbol
,