Example #1
0
        public override Runlet ExecuteRunlet(RuntimeEngine runtimeEngine)
        {
            FunctionRunlet f = (FunctionRunlet)runtimeEngine.Pop();

            runtimeEngine.PushReturnAddress(this._next);
            return(f.Call(runtimeEngine));
        }
Example #2
0
 public override Runlet ExecuteRunlet(RuntimeEngine runtimeEngine)
 {
     runtimeEngine.PushReturnAddress(this._next);
     return(this._functionRunlet.Call(runtimeEngine));
 }