コード例 #1
0
 internal OperatorDefinition(string text, TokenType?secondaryTokenType, int precedence, OperandCount operandCount) : this(text, precedence, operandCount)
 {
     SecondaryTokenType = secondaryTokenType;
 }
コード例 #2
0
 internal StandardOperatorDefinition(string text, int precedence, OperatorType operatorType, OperandCount operandCount) : base(text, precedence, operandCount)
 {
     OperatorType = operatorType;
 }
コード例 #3
0
 internal OperatorDefinition(string text, int precedence, OperandCount operandCount)
 {
     Text         = text;
     Precedence   = precedence;
     OperandCount = operandCount;
 }