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