14 lines
352 B
C#
14 lines
352 B
C#
|
using Canon.Core.Enums;
|
|||
|
|
|||
|
namespace Canon.Core.SyntaxNodes;
|
|||
|
|
|||
|
public class RelationOperator : NonTerminatedSyntaxNode
|
|||
|
{
|
|||
|
public override NonTerminatorType Type => NonTerminatorType.RelationOperator;
|
|||
|
|
|||
|
public static RelationOperator Create(List<SyntaxNodeBase> children)
|
|||
|
{
|
|||
|
return new RelationOperator { Children = children };
|
|||
|
}
|
|||
|
}
|