Inheritance: kOS.Suffixed.SpecialValue
Example #1
0
 public override void Execute(SharedObjects shared)
 {
     string bodyName = PopValueAssert(shared).ToString();
     AssertArgBottomAndConsume(shared);
     var result = new BodyTarget(bodyName, shared);
     ReturnValue = result;
 }
Example #2
0
 public override void Execute(SharedObjects shared)
 {
     string bodyName = shared.Cpu.PopValue().ToString();
     var result = new BodyTarget(bodyName, shared);
     shared.Cpu.PushStack(result);
 }
Example #3
0
 protected bool Equals(BodyTarget other)
 {
     return Body.Equals(other.Body);
 }
Example #4
0
 protected bool Equals(BodyTarget other)
 {
     return(Body.Equals(other.Body));
 }