Exemplo n.º 1
0
            public override Cell Evaluate(SpoolSpace Memory)
            {
                this.CheckParameters();
                Cell x = this._Children[0].Evaluate(Memory);

                return(new Cell(CellSerializer.DiskSize(x)));
            }
Exemplo n.º 2
0
 public override int SizeOf()
 {
     if (this._Host.Spools.Exists(this._sName) && this._Host.Spools[this._sName].Exists(this._vName))
     {
         return(CellSerializer.DiskSize(this._Host.Spools[this._sName].Get(this._vName)));
     }
     return(base.SizeOf());
 }
Exemplo n.º 3
0
 public override int SizeOf()
 {
     return(CellSerializer.DiskSize(this._value));
 }