jackfiled
5e3ea6303e
重构语法树的部分,使用单独的类来抽象不同的非终结符节点。 **同时**,将`Pascal`语法的定义从测试项目中移动到核心项目中,在项目中只维护一份对于`Pascal`语法的定义。 Reviewed-on: PostGuard/Canon#23
41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
using Canon.Core.Enums;
|
|
|
|
namespace Canon.Core.SyntaxNodes;
|
|
|
|
public class Parameter : NonTerminatedSyntaxNode
|
|
{
|
|
public override NonTerminatorType Type => NonTerminatorType.Parameter;
|
|
|
|
/// <summary>
|
|
/// 是否为引用变量
|
|
/// </summary>
|
|
public bool IsVar { get; private init; }
|
|
|
|
/// <summary>
|
|
/// 声明的变量名称
|
|
/// </summary>
|
|
public ValueParameter ValueParameter =>
|
|
IsVar ? Children[0].Convert<VarParameter>().ValueParameter : Children[0].Convert<ValueParameter>();
|
|
|
|
public static Parameter Create(List<SyntaxNodeBase> children)
|
|
{
|
|
NonTerminatedSyntaxNode node = children[0].Convert<NonTerminatedSyntaxNode>();
|
|
|
|
bool isVar;
|
|
if (node.Type == NonTerminatorType.VarParameter)
|
|
{
|
|
isVar = true;
|
|
}
|
|
else if (node.Type == NonTerminatorType.ValueParameter)
|
|
{
|
|
isVar = false;
|
|
}
|
|
else
|
|
{
|
|
throw new InvalidOperationException();
|
|
}
|
|
|
|
return new Parameter { Children = children, IsVar = isVar };
|
|
}
|
|
}
|