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