using Canon.Core.Enums;
namespace Canon.Core.SyntaxNodes;
public class ProgramBody : NonTerminatedSyntaxNode
{
public override NonTerminatorType Type => NonTerminatorType.ProgramBody;
///
/// 常量声明
///
public ConstDeclarations ConstDeclarations => Children[0].Convert();
///
/// 变量声明
///
public VarDeclarations VarDeclarations => Children[1].Convert();
///
/// 子程序声明
///
public SubprogramDeclarations SubprogramDeclarations => Children[2].Convert();
///
/// 语句声明
///
public CompoundStatement CompoundStatement => Children[3].Convert();
public static ProgramBody Create(List children)
{
return new ProgramBody { Children = children };
}
}