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