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)
1122
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)
578
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)
327
IPropertySymbolInternal
?
IPropertySymbolInternal
.PartialImplementationPart => PartialImplementationPart;
328
IPropertySymbolInternal
?
IPropertySymbolInternal
.PartialDefinitionPart => PartialDefinitionPart;