1 write to Symbol
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\SemanticEditInfo.cs (1)
52
Symbol
= symbol;
10 references to Symbol
Microsoft.CodeAnalysis.Features (5)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (3)
4150
return s_symbolKeyComparer.Equals(x.
Symbol
, y.
Symbol
);
4154
=> obj.
Symbol
.GetHashCode();
EditAndContinue\EditSession.cs (2)
844
oldResolution = edit.
Symbol
.Resolve(oldCompilation, ignoreAssemblyKey: true, cancellationToken);
855
newResolution = edit.
Symbol
.Resolve(newCompilation, ignoreAssemblyKey: true, cancellationToken);
Microsoft.CodeAnalysis.Features.Test.Utilities (5)
EditAndContinue\EditAndContinueTestVerifier.cs (5)
271
.GroupBy(e => e.
Symbol
, SymbolKey.GetComparer(ignoreCase: false, ignoreAssemblyKeys: true))
314
actualSemanticEdits = actualSemanticEdits.Sort((x, y) => CompareEdits(x.
Symbol
, x.Kind, y.
Symbol
, y.Kind));
325
actualSemanticEdits.Select(e => $"{e.Kind}: {e.
Symbol
.Resolve(e.Kind == SemanticEditKind.Delete ? oldCompilation : newCompilation).Symbol}"),
336
var symbolKey = actualSemanticEdit.
Symbol
;