28 lines
841 B
C#
28 lines
841 B
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Microsoft.AspNetCore.Razor.Language.Intermediate
|
|
{
|
|
public sealed class HtmlContentIRNode : RazorIRNode
|
|
{
|
|
public override ItemCollection Annotations => ReadOnlyItemCollection.Empty;
|
|
|
|
public override RazorIRNodeCollection Children { get; } = new DefaultIRNodeCollection();
|
|
|
|
public override SourceSpan? Source { get; set; }
|
|
|
|
public override void Accept(RazorIRNodeVisitor visitor)
|
|
{
|
|
if (visitor == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(visitor));
|
|
}
|
|
|
|
visitor.VisitHtml(this);
|
|
}
|
|
}
|
|
}
|