We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 73ee485 + b848011 commit 0cd4983Copy full SHA for 0cd4983
src/Shared/RoslynUtils/WellKnownTypes.cs
@@ -19,7 +19,6 @@ public static WellKnownTypes GetOrCreate(Compilation compilation) =>
19
20
private readonly INamedTypeSymbol?[] _lazyWellKnownTypes;
21
private readonly Compilation _compilation;
22
- private readonly INamedTypeSymbol _missingTypeSymbol;
23
24
static WellKnownTypes()
25
{
@@ -52,7 +51,6 @@ private WellKnownTypes(Compilation compilation)
52
51
53
_lazyWellKnownTypes = new INamedTypeSymbol?[WellKnownTypeData.WellKnownTypeNames.Length];
54
_compilation = compilation;
55
- _missingTypeSymbol = compilation.GetTypeByMetadataName(typeof(MissingType).FullName!)!;
56
}
57
58
public INamedTypeSymbol Get(SpecialType type)
0 commit comments