2024-04-26 10:18:49 +08:00
|
|
|
|
using Canon.Core.Abstractions;
|
2024-04-21 22:24:35 +08:00
|
|
|
|
using Canon.Core.Enums;
|
2024-04-07 16:47:28 +08:00
|
|
|
|
|
|
|
|
|
namespace Canon.Core.SyntaxNodes;
|
|
|
|
|
|
|
|
|
|
public class CompoundStatement : NonTerminatedSyntaxNode
|
|
|
|
|
{
|
|
|
|
|
public override NonTerminatorType Type => NonTerminatorType.CompoundStatement;
|
|
|
|
|
|
2024-04-30 14:43:14 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否为主函数部分
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool IsMain;
|
|
|
|
|
|
2024-04-26 10:18:49 +08:00
|
|
|
|
public override void PreVisit(SyntaxNodeVisitor visitor)
|
|
|
|
|
{
|
|
|
|
|
visitor.PreVisit(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void PostVisit(SyntaxNodeVisitor visitor)
|
|
|
|
|
{
|
|
|
|
|
visitor.PostVisit(this);
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-07 16:47:28 +08:00
|
|
|
|
public static CompoundStatement Create(List<SyntaxNodeBase> children)
|
|
|
|
|
{
|
|
|
|
|
return new CompoundStatement { Children = children };
|
|
|
|
|
}
|
|
|
|
|
}
|