CanonSharp/CanonSharp.Benchmark/Canon.Core/SyntaxNodes/VarParameter.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

27 lines
728 B
C#

using CanonSharp.Benchmark.Canon.Core.Abstractions;
using CanonSharp.Benchmark.Canon.Core.Enums;
namespace CanonSharp.Benchmark.Canon.Core.SyntaxNodes;
public class VarParameter : NonTerminatedSyntaxNode
{
public override NonTerminatorType Type => NonTerminatorType.VarParameter;
public ValueParameter ValueParameter => Children[1].Convert<ValueParameter>();
public override void PreVisit(SyntaxNodeVisitor visitor)
{
visitor.PreVisit(this);
}
public override void PostVisit(SyntaxNodeVisitor visitor)
{
visitor.PostVisit(this);
}
public static VarParameter Create(List<SyntaxNodeBase> children)
{
return new VarParameter { Children = children };
}
}