2 overrides of GetISymbolInternalOrNull
Microsoft.CodeAnalysis.CSharp (1)
Emitter\EditAndContinue\CSharpSymbolChanges.cs (1)
18
protected override ISymbolInternal?
GetISymbolInternalOrNull
(ISymbol symbol)
Microsoft.CodeAnalysis.VisualBasic (1)
Emit\EditAndContinue\VisualBasicSymbolChanges.vb (1)
17
Protected Overrides Function
GetISymbolInternalOrNull
(symbol As ISymbol) As ISymbolInternal
7 references to GetISymbolInternalOrNull
Microsoft.CodeAnalysis (7)
Emit\EditAndContinue\SymbolChanges.cs (7)
59
if (
GetISymbolInternalOrNull
(type) is not { } typeSymbol)
95
if (
GetISymbolInternalOrNull
(symbol) is { } internalSymbol)
101
var internalPropertySymbol =
GetISymbolInternalOrNull
(propertySymbol);
112
var internalEventSymbol =
GetISymbolInternalOrNull
(eventSymbol);
343
var internalSymbol =
GetISymbolInternalOrNull
(symbol);
408
var namespaceTypeDef = (
GetISymbolInternalOrNull
(symbol)?.GetCciAdapter() as ITypeDefinition)?.AsNamespaceTypeDefinition(context);
597
return
GetISymbolInternalOrNull
(associatedSymbol)?.GetCciAdapter() as IDefinition;