Example #1
0
 public ExpressionValue(ExpressionValue o)
     : this(o._type, o._value)
 {
 }
Example #2
0
 internal ArgumentRefNode(ExpressionValue labelRef)
 {
     this._argumentRef = labelRef;
 }
Example #3
0
 public static Expression makePointer(long arg)
 {
     return(new LiteralNode(ExpressionValue.makeValue(arg)));
 }
Example #4
0
 internal LiteralNode(ExpressionValue labelValue)
 {
     this._value = labelValue;
 }
Example #5
0
 public ExpressionValue(ExpressionValue o)
     : this(o._type, o._value)
 {
 }