160fafef70
Reviewed-on: PostGuard/Canon#75 Co-authored-by: Lan_G <2911328695@qq.com> Co-committed-by: Lan_G <2911328695@qq.com>
28 lines
723 B
C#
28 lines
723 B
C#
using Canon.Core.Abstractions;
|
|
using Canon.Core.Enums;
|
|
using Canon.Core.LexicalParser;
|
|
|
|
namespace Canon.Core.SyntaxNodes;
|
|
|
|
public class RelationOperator : NonTerminatedSyntaxNode
|
|
{
|
|
public override NonTerminatorType Type => NonTerminatorType.RelationOperator;
|
|
|
|
public SemanticToken OperatorToken => Children[0].Convert<TerminatedSyntaxNode>().Token;
|
|
|
|
public override void PreVisit(SyntaxNodeVisitor visitor)
|
|
{
|
|
visitor.PreVisit(this);
|
|
}
|
|
|
|
public override void PostVisit(SyntaxNodeVisitor visitor)
|
|
{
|
|
visitor.PostVisit(this);
|
|
}
|
|
|
|
public static RelationOperator Create(List<SyntaxNodeBase> children)
|
|
{
|
|
return new RelationOperator { Children = children };
|
|
}
|
|
}
|