jackfiled
5e3ea6303e
重构语法树的部分,使用单独的类来抽象不同的非终结符节点。 **同时**,将`Pascal`语法的定义从测试项目中移动到核心项目中,在项目中只维护一份对于`Pascal`语法的定义。 Reviewed-on: PostGuard/Canon#23
29 lines
811 B
C#
29 lines
811 B
C#
using Canon.Core.Enums;
|
|
|
|
namespace Canon.Core.SyntaxNodes;
|
|
|
|
public class SubprogramBody : NonTerminatedSyntaxNode
|
|
{
|
|
public override NonTerminatorType Type => NonTerminatorType.SubprogramBody;
|
|
|
|
/// <summary>
|
|
/// 常量声明部分
|
|
/// </summary>
|
|
public ConstDeclarations ConstDeclarations => Children[0].Convert<ConstDeclarations>();
|
|
|
|
/// <summary>
|
|
/// 变量声明部分
|
|
/// </summary>
|
|
public VarDeclarations VarDeclarations => Children[1].Convert<VarDeclarations>();
|
|
|
|
/// <summary>
|
|
/// 语句声明部分
|
|
/// </summary>
|
|
public CompoundStatement CompoundStatement => Children[2].Convert<CompoundStatement>();
|
|
|
|
public static SubprogramBody Create(List<SyntaxNodeBase> children)
|
|
{
|
|
return new SubprogramBody() { Children = children };
|
|
}
|
|
}
|