30 lines
709 B
C#
30 lines
709 B
C#
using Canon.Core.Abstractions;
|
|
using Canon.Core.Enums;
|
|
|
|
namespace Canon.Core.SyntaxNodes;
|
|
|
|
public class CompoundStatement : NonTerminatedSyntaxNode
|
|
{
|
|
public override NonTerminatorType Type => NonTerminatorType.CompoundStatement;
|
|
|
|
/// <summary>
|
|
/// 是否为主函数部分
|
|
/// </summary>
|
|
public bool IsMain { get; set; }
|
|
|
|
public override void PreVisit(SyntaxNodeVisitor visitor)
|
|
{
|
|
visitor.PreVisit(this);
|
|
}
|
|
|
|
public override void PostVisit(SyntaxNodeVisitor visitor)
|
|
{
|
|
visitor.PostVisit(this);
|
|
}
|
|
|
|
public static CompoundStatement Create(List<SyntaxNodeBase> children)
|
|
{
|
|
return new CompoundStatement { Children = children };
|
|
}
|
|
}
|