Files
2026-08-27 10:56:38 -06:00

39 lines
972 B
C#

using System.Diagnostics;
using Microsoft.CodeAnalysis.CSharp.Symbols;
namespace Microsoft.CodeAnalysis.CSharp;
internal sealed class BoundLabelStatement : BoundStatement
{
public LabelSymbol Label { get; }
public BoundLabelStatement(SyntaxNode syntax, LabelSymbol label, bool hasErrors)
: base(BoundKind.LabelStatement, syntax, hasErrors)
{
Label = label;
}
public BoundLabelStatement(SyntaxNode syntax, LabelSymbol label)
: base(BoundKind.LabelStatement, syntax)
{
Label = label;
}
[DebuggerStepThrough]
public override BoundNode? Accept(BoundTreeVisitor visitor)
{
return visitor.VisitLabelStatement(this);
}
public BoundLabelStatement Update(LabelSymbol label)
{
if (!SymbolEqualityComparer.ConsiderEverything.Equals(label, Label))
{
BoundLabelStatement boundLabelStatement = new BoundLabelStatement(Syntax, label, base.HasErrors);
boundLabelStatement.CopyAttributes(this);
return boundLabelStatement;
}
return this;
}
}