Example #1
0
 public ProgramRefValue(OpCodeList progamRef)
 {
     valueType = ValueTypeID.TYPE_PROGRAMREF;
     val       = progamRef;
 }
Example #2
0
 public FunctionRef(OpCodeList codePart, int numberOfDefinedParameters)
 {
     this.codePart  = codePart;
     this.numParams = numberOfDefinedParameters;
 }