public StackValuePointerVar(StackValuePointerType type, int pointerIndex)
     : this(type)
 {
     PointerIndex = pointerIndex;
 }
示例#2
0
 public StackValuePointerVar(StackValuePointerType type, int pointerIndex)
     : this(type)
 {
     PointerIndex = pointerIndex;
 }
 public StackValuePointerVar(StackValuePointerType type)
 {
     ValueType = StackValueType.Pointer;
     PointerType = type;
 }
示例#4
0
 public StackValuePointerVar(StackValuePointerType type)
 {
     ValueType   = StackValueType.Pointer;
     PointerType = type;
 }