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