2024-04-21 22:24:35 +08:00
|
|
|
|
using Canon.Core.CodeGenerators;
|
|
|
|
|
using Canon.Core.Enums;
|
2024-04-07 16:47:28 +08:00
|
|
|
|
|
|
|
|
|
namespace Canon.Core.SyntaxNodes;
|
|
|
|
|
|
|
|
|
|
public class ExpressionList : NonTerminatedSyntaxNode
|
|
|
|
|
{
|
|
|
|
|
public override NonTerminatorType Type => NonTerminatorType.ExpressionList;
|
|
|
|
|
|
|
|
|
|
public bool IsRecursive { get; private init; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 声明的表达式列表
|
|
|
|
|
/// </summary>
|
|
|
|
|
public IEnumerable<Expression> Expressions => GetExpressions();
|
|
|
|
|
|
|
|
|
|
public static ExpressionList Create(List<SyntaxNodeBase> children)
|
|
|
|
|
{
|
|
|
|
|
bool isRecursive;
|
|
|
|
|
|
|
|
|
|
if (children.Count == 1)
|
|
|
|
|
{
|
|
|
|
|
isRecursive = false;
|
|
|
|
|
}
|
|
|
|
|
else if (children.Count == 3)
|
|
|
|
|
{
|
|
|
|
|
isRecursive = true;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
throw new InvalidOperationException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return new ExpressionList { Children = children, IsRecursive = isRecursive };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private IEnumerable<Expression> GetExpressions()
|
|
|
|
|
{
|
|
|
|
|
ExpressionList list = this;
|
|
|
|
|
|
|
|
|
|
while (true)
|
|
|
|
|
{
|
|
|
|
|
if (list.IsRecursive)
|
|
|
|
|
{
|
|
|
|
|
yield return list.Children[2].Convert<Expression>();
|
|
|
|
|
list = list.Children[0].Convert<ExpressionList>();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
yield return list.Children[0].Convert<Expression>();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-04-21 22:24:35 +08:00
|
|
|
|
|
|
|
|
|
public override void GenerateCCode(CCodeBuilder builder)
|
|
|
|
|
{
|
|
|
|
|
//用逗号分隔输出的expression
|
|
|
|
|
using var enumerator = Expressions.GetEnumerator();
|
|
|
|
|
|
|
|
|
|
if (enumerator.MoveNext())
|
|
|
|
|
{
|
|
|
|
|
enumerator.Current.GenerateCCode(builder);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
while (enumerator.MoveNext())
|
|
|
|
|
{
|
|
|
|
|
builder.AddString(", ");
|
|
|
|
|
enumerator.Current.GenerateCCode(builder);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
2024-04-07 16:47:28 +08:00
|
|
|
|
}
|