internal OperatorDefinition(string text, TokenType?secondaryTokenType, int precedence, OperandCount operandCount) : this(text, precedence, operandCount) { SecondaryTokenType = secondaryTokenType; }
internal StandardOperatorDefinition(string text, int precedence, OperatorType operatorType, OperandCount operandCount) : base(text, precedence, operandCount) { OperatorType = operatorType; }
internal OperatorDefinition(string text, int precedence, OperandCount operandCount) { Text = text; Precedence = precedence; OperandCount = operandCount; }