2 instantiations of BindEntry
Microsoft.CodeAnalysis.Razor.Compiler (2)
Language\Components\ComponentBindLoweringPass.cs (2)
82bindEntries.Add(new(parent, node), new BindEntry(reference)); 109bindEntries.Add(key, new BindEntry(parameterReference));
6 references to BindEntry
Microsoft.CodeAnalysis.Razor.Compiler (6)
Language\Components\ComponentBindLoweringPass.cs (6)
73using var _ = DictionaryPool<BindEntryKey, BindEntry>.GetPooledObject(out var bindEntries); 107if (!bindEntries.TryGetValue(key, out var existingEntry)) 136if (!bindEntries.TryGetValue(key, out var entry)) 380private static ImmutableArray<IntermediateNode> RewriteUsage(IntermediateNode parent, BindEntry bindEntry) 669private static bool TryParseBindAttribute(BindEntry bindEntry, out string? valueAttributeName) 691BindEntry bindEntry,