コード例 #1
0
ファイル: ExpressionValue.cs プロジェクト: xuhd/llvmmmix
 public ExpressionValue(ExpressionValue o)
     : this(o._type, o._value)
 {
 }
コード例 #2
0
ファイル: ExpressionBuilder.cs プロジェクト: xuhd/llvmmmix
 internal ArgumentRefNode(ExpressionValue labelRef)
 {
     this._argumentRef = labelRef;
 }
コード例 #3
0
ファイル: ExpressionBuilder.cs プロジェクト: xuhd/llvmmmix
 public static Expression makePointer(long arg)
 {
     return(new LiteralNode(ExpressionValue.makeValue(arg)));
 }
コード例 #4
0
ファイル: ExpressionBuilder.cs プロジェクト: xuhd/llvmmmix
 internal LiteralNode(ExpressionValue labelValue)
 {
     this._value = labelValue;
 }
コード例 #5
0
ファイル: ExpressionValue.cs プロジェクト: xuhd/llvmmmix
 public ExpressionValue(ExpressionValue o)
     : this(o._type, o._value)
 {
 }