CanonSharp/CanonSharp.Benchmark/Canon.Core/SyntaxNodes/IdentifierVarPart.cs
jackfiled 89ce313b77 feat: CanonSharp Benchmark. (#4)
Reviewed-on: https://git.bupt-hpc.cn/jackfiled/CanonSharp/pulls/4
Co-authored-by: jackfiled <xcrenchangjun@outlook.com>
Co-committed-by: jackfiled <xcrenchangjun@outlook.com>
2024-08-19 14:37:34 +08:00

69 lines
1.7 KiB
C#

using CanonSharp.Benchmark.Canon.Core.Abstractions;
using CanonSharp.Benchmark.Canon.Core.Enums;
namespace CanonSharp.Benchmark.Canon.Core.SyntaxNodes;
public class IndexGeneratorEventArgs : EventArgs
{
public required ExpressionList IndexParameters { get; init; }
}
public class IdentifierVarPart : NonTerminatedSyntaxNode
{
public override NonTerminatorType Type => NonTerminatorType.IdVarPart;
/// <summary>
/// 数组索引的个数
/// </summary>
public int IndexCount { get; set; }
/// <summary>
/// 索引中的表达式
/// </summary>
public List<Expression> Expressions { get; } = [];
public override void PreVisit(SyntaxNodeVisitor visitor)
{
visitor.PreVisit(this);
RaiseEvent();
}
public override void PostVisit(SyntaxNodeVisitor visitor)
{
visitor.PostVisit(this);
RaiseEvent();
}
/// <summary>
/// 使用了索引产生式的事件
/// </summary>
public event EventHandler<IndexGeneratorEventArgs>? OnIndexGenerator;
public static IdentifierVarPart Create(List<SyntaxNodeBase> children)
{
IdentifierVarPart result = new() { Children = children };
if (children.Count == 3)
{
ExpressionList expressionList = children[1].Convert<ExpressionList>();
result.Expressions.AddRange(expressionList.Expressions);
}
return result;
}
private void RaiseEvent()
{
if (Children.Count == 3)
{
OnIndexGenerator?.Invoke(this, new IndexGeneratorEventArgs()
{
IndexParameters = Children[1].Convert<ExpressionList>()
});
}
OnIndexGenerator = null;
}
}