1 implementation of InferTypes
Microsoft.CodeAnalysis.Workspaces (1)
AbstractTypeInferenceService.cs (1)
81public ImmutableArray<ITypeSymbol> InferTypes(
4 references to InferTypes
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
TypeInferrer\TypeInferrerTestBase.cs (1)
46/// Specifies the test is going to call into <see cref="ITypeInferenceService.InferTypes(SemanticModel, int, string, System.Threading.CancellationToken)"/>.
Microsoft.CodeAnalysis.Workspaces (3)
ExternalAccess\Pythia\Api\PythiaTypeInferenceServiceWrapper.cs (1)
23=> UnderlyingObject.InferTypes(semanticModel, position, name, cancellationToken);
ITypeInferenceServiceExtensions.cs (2)
19=> service.InferTypes(semanticModel, position, nameOpt: null, cancellationToken: cancellationToken); 103var types = typeInferenceService.InferTypes(semanticModel, position, name, cancellationToken);