Canon/Canon.Core/SyntaxNodes/VarDeclaration.cs
jackfiled 5e3ea6303e refact: syntax-node (#23)
重构语法树的部分,使用单独的类来抽象不同的非终结符节点。
**同时**,将`Pascal`语法的定义从测试项目中移动到核心项目中,在项目中只维护一份对于`Pascal`语法的定义。

Reviewed-on: PostGuard/Canon#23
2024-04-07 16:47:28 +08:00

48 lines
1.2 KiB
C#

using Canon.Core.Enums;
namespace Canon.Core.SyntaxNodes;
public class VarDeclaration : NonTerminatedSyntaxNode
{
public override NonTerminatorType Type => NonTerminatorType.VarDeclaration;
public bool IsRecursive { get; private init; }
/// <summary>
/// 声明的变量
/// </summary>
public (IdentifierList, TypeSyntaxNode) Variable => GetVariable();
private (IdentifierList, TypeSyntaxNode) GetVariable()
{
if (IsRecursive)
{
return (Children[2].Convert<IdentifierList>(), Children[4].Convert<TypeSyntaxNode>());
}
else
{
return (Children[0].Convert<IdentifierList>(), Children[2].Convert<TypeSyntaxNode>());
}
}
public static VarDeclaration Create(List<SyntaxNodeBase> children)
{
bool isRecursive;
if (children.Count == 3)
{
isRecursive = false;
}
else if (children.Count == 5)
{
isRecursive = true;
}
else
{
throw new InvalidOperationException();
}
return new VarDeclaration { Children = children, IsRecursive = isRecursive };
}
}