1 instantiation of AllowedChildTagDescriptorBuilder
Microsoft.CodeAnalysis.Razor.Compiler (1)
Language\AllowedChildTagDescriptorBuilder_Pooling.cs (1)
11DefaultPool.Create(static () => new AllowedChildTagDescriptorBuilder());
8 references to AllowedChildTagDescriptorBuilder
Microsoft.CodeAnalysis.Razor.Compiler (8)
Language\AllowedChildTagDescriptorBuilder_Pooling.cs (3)
10internal static readonly ObjectPool<AllowedChildTagDescriptorBuilder> Pool = 13internal static AllowedChildTagDescriptorBuilder GetInstance(TagHelperDescriptorBuilder parent) 15var builder = Pool.Get();
Language\TagHelperDescriptorBuilder.cs (5)
101public TagHelperObjectBuilderCollection<AllowedChildTagDescriptor, AllowedChildTagDescriptorBuilder> AllowedChildTags { get; } 102= new(AllowedChildTagDescriptorBuilder.Pool); 110public void AllowChildTag(Action<AllowedChildTagDescriptorBuilder> configure) 117var builder = AllowedChildTagDescriptorBuilder.GetInstance(this);