10 references to IsGenericTypedComponent
Microsoft.CodeAnalysis.Razor.Compiler (8)
Language\Components\ComponentDesignTimeNodeWriter.cs (1)
535if (!node.Component.IsGenericTypedComponent())
Language\Components\ComponentDiagnosticFactory.cs (2)
249Debug.Assert(component.Component.IsGenericTypedComponent()); 266Debug.Assert(component.Component.IsGenericTypedComponent());
Language\Components\ComponentGenericTypePass.cs (1)
50if (node.Component.IsGenericTypedComponent())
Language\Components\ComponentLoweringPass.cs (4)
160var genericCandidates = candidates.Where(c => c.IsGenericTypedComponent()).ToList(); 161var nonGenericCandidates = candidates.Where(c => !c.IsGenericTypedComponent()).ToList(); 259if (tagHelper.IsGenericTypedComponent()) 714if (node.TagHelper.IsGenericTypedComponent() && node.BoundAttribute.IsTypeParameterProperty())
Microsoft.CodeAnalysis.Razor.UnitTests (1)
ComponentTagHelperProducerTest.cs (1)
170Assert.True(component.IsGenericTypedComponent());
Microsoft.CodeAnalysis.Razor.Workspaces (1)
Formatting\Passes\CSharpFormattingPass.CSharpDocumentGenerator.cs (1)
279descriptor.IsGenericTypedComponent() &&