2 writes to TypeSymbol
Microsoft.VisualStudio.LanguageServices (2)
ChangeSignature\AddParameterDialogViewModel.cs (2)
192TypeSymbol = null; 199TypeSymbol = Document.SemanticModel.GetSpeculativeTypeInfo(PositionForTypeBinding, languageService.GetTypeNode(typeName), SpeculativeBindingOption.BindAsTypeOrNamespace).Type;
7 references to TypeSymbol
Microsoft.VisualStudio.LanguageServices (7)
ChangeSignature\AddParameterDialogViewModel.cs (6)
54public string? TypeName => TypeSymbol?.ToDisplayString(s_symbolDisplayFormat); 56public bool TypeBinds => !TypeSymbol!.IsErrorType(); 135if (TypeSymbol == null || !IsParameterTypeSyntacticallyValid(VerbatimTypeName)) 201if (TypeSymbol is { SpecialType: SpecialType.System_Void }) 209else if (!IsParameterTypeSyntacticallyValid(typeName) || TypeSymbol == null) 218var parameterTypeBinds = DoesTypeFullyBind(TypeSymbol);
ChangeSignature\ChangeSignatureDialog.xaml.cs (1)
170addParameterViewModel.TypeSymbol,