Exemple #1
0
 public GearsObjBoundMethod(GearsValue receiver, GearsObjFunction method)
 {
     Receiver = receiver;
     Method   = method;
 }
Exemple #2
0
 public GearsCallFrame(GearsObjFunction function, int ip = 0, int bp = 0)
 {
     IP       = ip;
     BP       = bp;
     Function = function;
 }