Example #1
0
 public EmitReturnStatement(EmitExpression expression)
 {
     Expression = expression;
 }
Example #2
0
 public EmitCastExpression(EmitExpression operand, EmitType type)
 {
     Operand = operand;
     Type = type;
 }
Example #3
0
 public EmitUnaryExpression(EmitUnaryOperator @operator, EmitExpression operand)
 {
     Operator = @operator;
     Operand  = operand;
 }
Example #4
0
 public EmitUnaryExpression(EmitUnaryOperator @operator, EmitExpression operand)
 {
     Operator = @operator;
     Operand = operand;
 }
Example #5
0
 public EmitCastExpression(EmitExpression operand, EmitType type)
 {
     Operand = operand;
     Type    = type;
 }