1 instantiation of ConstructorEdit
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (1)
4846
constructorEdits.Add(newType, constructorEdit = new
ConstructorEdit
(oldType));
9 references to ConstructorEdit
Microsoft.CodeAnalysis.Features (9)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (9)
2427
PooledDictionary<INamedTypeSymbol,
ConstructorEdit
>? instanceConstructorEdits = null;
2428
PooledDictionary<INamedTypeSymbol,
ConstructorEdit
>? staticConstructorEdits = null;
4831
ref PooledDictionary<INamedTypeSymbol,
ConstructorEdit
>? instanceConstructorEdits,
4832
ref PooledDictionary<INamedTypeSymbol,
ConstructorEdit
>? staticConstructorEdits)
4834
Dictionary<INamedTypeSymbol,
ConstructorEdit
> constructorEdits;
4837
constructorEdits = staticConstructorEdits ??= PooledDictionary<INamedTypeSymbol,
ConstructorEdit
>.GetInstance();
4841
constructorEdits = instanceConstructorEdits ??= PooledDictionary<INamedTypeSymbol,
ConstructorEdit
>.GetInstance();
4844
if (!constructorEdits.TryGetValue(newType, out
var
constructorEdit))
4856
IReadOnlyDictionary<INamedTypeSymbol,
ConstructorEdit
> updatedTypes,