| File: Language\Extensions\PreallocatedTagHelperPropertyIntermediateNode.cs | Web Access |
| Project: src\roslyn\src\Razor\src\Compiler\Microsoft.CodeAnalysis.Razor.Compiler\src\Microsoft.CodeAnalysis.Razor.Compiler.csproj (Microsoft.CodeAnalysis.Razor.Compiler) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. #nullable disable using System; using Microsoft.AspNetCore.Razor.Language.CodeGeneration; using Microsoft.AspNetCore.Razor.Language.Intermediate; namespace Microsoft.AspNetCore.Razor.Language.Extensions; internal sealed class PreallocatedTagHelperPropertyIntermediateNode : ExtensionIntermediateNode { public PreallocatedTagHelperPropertyIntermediateNode() { } public PreallocatedTagHelperPropertyIntermediateNode(DefaultTagHelperPropertyIntermediateNode propertyNode) { if (propertyNode == null) { throw new ArgumentNullException(nameof(propertyNode)); } AttributeName = propertyNode.AttributeName; AttributeStructure = propertyNode.AttributeStructure; BoundAttribute = propertyNode.BoundAttribute; FieldName = propertyNode.FieldName; IsIndexerNameMatch = propertyNode.IsIndexerNameMatch; PropertyName = propertyNode.PropertyName; Source = propertyNode.Source; } public override IntermediateNodeCollection Children => IntermediateNodeCollection.ReadOnly; public string AttributeName { get; set; } public AttributeStructure AttributeStructure { get; set; } public BoundAttributeDescriptor BoundAttribute { get; set; } public string FieldName { get; set; } public bool IsIndexerNameMatch { get; set; } public string PropertyName { get; set; } public TagHelperDescriptor TagHelper => BoundAttribute.Parent; public string VariableName { get; set; } public override void Accept(IntermediateNodeVisitor visitor) { if (visitor == null) { throw new ArgumentNullException(nameof(visitor)); } AcceptExtensionNode<PreallocatedTagHelperPropertyIntermediateNode>(this, visitor); } public override void WriteNode(CodeTarget target, CodeRenderingContext context) { if (target == null) { throw new ArgumentNullException(nameof(target)); } if (context == null) { throw new ArgumentNullException(nameof(context)); } var extension = target.GetExtension<IPreallocatedAttributeTargetExtension>(); if (extension == null) { ReportMissingCodeTargetExtension<IPreallocatedAttributeTargetExtension>(context); return; } extension.WriteTagHelperProperty(context, this); } public override void FormatNode(IntermediateNodeFormatter formatter) { formatter.WriteContent(AttributeName); formatter.WriteProperty(nameof(AttributeName), AttributeName); formatter.WriteProperty(nameof(AttributeStructure), AttributeStructure.ToString()); formatter.WriteProperty(nameof(BoundAttribute), BoundAttribute?.DisplayName); formatter.WriteProperty(nameof(FieldName), FieldName); formatter.WriteProperty(nameof(IsIndexerNameMatch), IsIndexerNameMatch.ToString()); formatter.WriteProperty(nameof(PropertyName), PropertyName); formatter.WriteProperty(nameof(TagHelper), TagHelper?.DisplayName); formatter.WriteProperty(nameof(VariableName), VariableName); } }