1 implementation of IPropertySymbolInternal
Microsoft.CodeAnalysis.CSharp (1)
Symbols\PropertySymbol.cs (1)
19
internal abstract partial class PropertySymbol : Symbol,
IPropertySymbolInternal
14 references to IPropertySymbolInternal
Microsoft.CodeAnalysis (10)
DiagnosticAnalyzer\CompilationWithAnalyzers.cs (1)
1120
else if (symbol is
IPropertySymbolInternal
propertySymbol)
Emit\EditAndContinue\DefinitionMap.cs (4)
162
public PropertyDefinitionHandle GetPreviousPropertyHandle(
IPropertySymbolInternal
oldProperty)
201
private PropertyDefinitionHandle GetPreviousPropertyHandle(
IPropertySymbolInternal
oldProperty, out
IPropertySymbolInternal
? peProperty)
212
peProperty = (
IPropertySymbolInternal
?)PreviousSourceToMetadataSymbolMatcher.MapDefinition(oldPropertyDef)?.GetInternalSymbol();
Emit\EditAndContinue\DeltaMetadataWriter.cs (1)
564
else if (deletedMember is
IPropertySymbolInternal
deletedProperty)
Emit\EditAndContinue\SymbolChanges.cs (2)
443
var
newProperty = (
IPropertySymbolInternal
)newMember;
Symbols\IPropertySymbolInternal.cs (2)
9
IPropertySymbolInternal
? PartialImplementationPart { get; }
10
IPropertySymbolInternal
? PartialDefinitionPart { get; }
Microsoft.CodeAnalysis.CSharp (4)
Symbols\PropertySymbol.cs (4)
329
IPropertySymbolInternal
?
IPropertySymbolInternal
.PartialImplementationPart => PartialImplementationPart;
330
IPropertySymbolInternal
?
IPropertySymbolInternal
.PartialDefinitionPart => PartialDefinitionPart;