jackfiled
89ce313b77
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>
32 lines
886 B
C#
32 lines
886 B
C#
using CanonSharp.Benchmark.Canon.Core.Abstractions;
|
|
using CanonSharp.Benchmark.Canon.Core.Enums;
|
|
using CanonSharp.Benchmark.Canon.Core.LexicalParser;
|
|
|
|
namespace CanonSharp.Benchmark.Canon.Core.SyntaxNodes;
|
|
|
|
public class ProgramHead : NonTerminatedSyntaxNode
|
|
{
|
|
public override NonTerminatorType Type => NonTerminatorType.ProgramHead;
|
|
|
|
/// <summary>
|
|
/// 程序名称
|
|
/// </summary>
|
|
public IdentifierSemanticToken ProgramName
|
|
=> (IdentifierSemanticToken)Children[1].Convert<TerminatedSyntaxNode>().Token;
|
|
|
|
public override void PreVisit(SyntaxNodeVisitor visitor)
|
|
{
|
|
visitor.PreVisit(this);
|
|
}
|
|
|
|
public override void PostVisit(SyntaxNodeVisitor visitor)
|
|
{
|
|
visitor.PostVisit(this);
|
|
}
|
|
|
|
public static ProgramHead Create(List<SyntaxNodeBase> children)
|
|
{
|
|
return new ProgramHead { Children = children };
|
|
}
|
|
}
|