8 writes to AttributeName
Microsoft.CodeAnalysis.Razor.Compiler (8)
Language\Components\ComponentBindLoweringPass.cs (3)
573valueNode.AttributeName = valueAttributeName; 596changeNode.AttributeName = changeAttributeName; 623expressionNode.AttributeName = expressionAttributeName;
Language\Components\ComponentFormNameLoweringPass.cs (1)
59AttributeName = node.OriginalAttributeName,
Language\Intermediate\ComponentAttributeIntermediateNode.cs (4)
65AttributeName = attributeNode.AttributeName; 86AttributeName = attributeName; 104AttributeName = node.AttributeName; 124AttributeName = node.AttributeNameWithoutParameter;
12 references to AttributeName
Microsoft.CodeAnalysis.Razor.Compiler (12)
Language\Components\ComponentChildContentDiagnosticPass.cs (2)
38if (attribute.AttributeName == childContent.AttributeName) 42attribute.AttributeName));
Language\Components\ComponentEventHandlerLoweringPass.cs (1)
111componentAttribute.AttributeName == eventHandler.AttributeName)
Language\Components\ComponentLoweringPass.cs (1)
399if (child is ComponentAttributeIntermediateNode attributeNode && attributeName == attributeNode.AttributeName)
Language\Components\ComponentMarkupDiagnosticPass.cs (4)
78if (child is ComponentAttributeIntermediateNode attribute && attribute.AttributeName != null) 80if (_attributes.TryGetValue(attribute.AttributeName, out var other)) 109_attributes[attribute.AttributeName] = (attribute.AttributeName, attribute);
Language\Components\ComponentNodeWriter.cs (1)
401context.CodeWriter.WriteStringLiteral(attribute.AttributeName);
Language\Intermediate\ComponentAttributeIntermediateNode.cs (3)
179formatter.WriteContent(AttributeName); 181formatter.WriteProperty(nameof(AttributeName), AttributeName);