Example #1
0
 public void WritePostfixInaryOperator(PostfixUnaryOperatorKind op)
 {
     Write(PostfixUnaryOperators[op]);
 }
Example #2
0
 internal static PostfixUnaryExpression PostfixUnary(Expression operand, PostfixUnaryOperatorKind postfixOperator)
 => new PostfixUnaryExpression(operand, postfixOperator);
Example #3
0
 internal PostfixUnaryExpression(Expression operand, PostfixUnaryOperatorKind postfixOperator)
 {
     Operand  = operand;
     Operator = postfixOperator;
 }
Example #4
0
 public PostfixUnaryOperatorToken(PostfixUnaryOperatorKind unaryOperator, byte precedence)
     : base(precedence)
 {
     Operator = unaryOperator;
 }