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