peekValue property

int? peekValue

Implementation

int? get peekValue{
  switch(oType){
    case OperandType.large:
    case OperandType.small:
      return rawValue;
    case OperandType.variable:
      return Z.engine.peekVariable(rawValue);
    default:
      return 0;
  }
}