3 instantiations of SynthesizedDelegateValue
Microsoft.CodeAnalysis (1)
Emit\EditAndContinue\SymbolMatcher.cs (1)
130
builder.Add(key, new
SynthesizedDelegateValue
(delegateTypeDef));
Microsoft.CodeAnalysis.CSharp (2)
Emitter\EditAndContinue\PEDeltaAssemblyBuilder.cs (1)
138
var value = new
SynthesizedDelegateValue
(type.GetCciAdapter());
Symbols\AnonymousTypes\AnonymousTypeManager.Templates.cs (1)
679
elementSelector: delegateSymbol => new CodeAnalysis.Emit.
SynthesizedDelegateValue
(delegateSymbol.GetCciAdapter()));
12 references to SynthesizedDelegateValue
Microsoft.CodeAnalysis (6)
Emit\EditAndContinue\SymbolMatcher.cs (3)
122
private ImmutableSegmentedDictionary<SynthesizedDelegateKey,
SynthesizedDelegateValue
> MapAnonymousDelegates(IReadOnlyDictionary<SynthesizedDelegateKey,
SynthesizedDelegateValue
> anonymousDelegates)
124
var builder = ImmutableSegmentedDictionary.CreateBuilder<SynthesizedDelegateKey,
SynthesizedDelegateValue
>();
Emit\EditAndContinue\SynthesizedTypeMaps.cs (3)
12
ImmutableSegmentedDictionary<SynthesizedDelegateKey,
SynthesizedDelegateValue
>? anonymousDelegates,
30
public ImmutableSegmentedDictionary<SynthesizedDelegateKey,
SynthesizedDelegateValue
> AnonymousDelegates { get; }
31
= anonymousDelegates ?? ImmutableSegmentedDictionary<SynthesizedDelegateKey,
SynthesizedDelegateValue
>.Empty;
Microsoft.CodeAnalysis.CSharp (6)
Emitter\EditAndContinue\CSharpSymbolMatcher.cs (2)
354
TryGetAnonymousDelegateValue(delegateTemplate, out
var
value);
473
internal bool TryGetAnonymousDelegateValue(AnonymousTypeManager.AnonymousDelegateTemplateSymbol delegateSymbol, out
SynthesizedDelegateValue
otherDelegateSymbol)
Emitter\EditAndContinue\PEDeltaAssemblyBuilder.cs (2)
120
var anonymousDelegates = ImmutableSegmentedDictionary.CreateBuilder<SynthesizedDelegateKey,
SynthesizedDelegateValue
>();
138
var
value = new SynthesizedDelegateValue(type.GetCciAdapter());
Emitter\Model\PEModuleBuilder.cs (1)
536
internal virtual bool TryGetAnonymousDelegateValue(AnonymousTypeManager.AnonymousDelegateTemplateSymbol template, out
SynthesizedDelegateValue
delegateValue)
Symbols\AnonymousTypes\AnonymousTypeManager.Templates.cs (1)
672
internal ImmutableSegmentedDictionary<CodeAnalysis.Emit.SynthesizedDelegateKey, CodeAnalysis.Emit.
SynthesizedDelegateValue
> GetAnonymousDelegates()