8 references to IsWeaklyTyped
Microsoft.CodeAnalysis.Razor.Compiler (6)
Language\Components\ComponentBindLoweringPass.cs (3)
576
valueNode.TypeName = valueAttribute?.
IsWeaklyTyped
== false ? valueAttribute.TypeName : null;
599
changeNode.TypeName = changeAttribute?.
IsWeaklyTyped
== false ? changeAttribute.TypeName : null;
626
expressionNode.TypeName = expressionAttribute.
IsWeaklyTyped
? null : expressionAttribute.TypeName;
Language\Components\ComponentRuntimeNodeWriter.cs (1)
796
return n.BoundAttribute != null && !n.BoundAttribute.
IsWeaklyTyped
;
Language\Intermediate\ComponentAttributeIntermediateNode.cs (2)
86
TypeName = propertyNode.BoundAttribute.
IsWeaklyTyped
? null : propertyNode.BoundAttribute.TypeName;
104
TypeName = node.BoundAttribute.
IsWeaklyTyped
Microsoft.CodeAnalysis.Razor.UnitTests (2)
EventHandlerTagHelperProducerTest.cs (2)
103
Assert.True(attribute.
IsWeaklyTyped
);
237
Assert.True(attribute.
IsWeaklyTyped
);