Пример #1
0
 public BuiltinDelegate(BuiltinDelegate oldCopy)
     : base(oldCopy)
 {
     Name = oldCopy.Name;
 }
Пример #2
0
 public BuiltinDelegate(BuiltinDelegate oldCopy) : base(oldCopy)
 {
     Name = oldCopy.Name;
 }
Пример #3
0
        public override void Execute(SharedObjects shared)
        {
            string name = PopValueAssert(shared).ToString();
               AssertArgBottomAndConsume(shared);

               ReturnValue = new BuiltinDelegate(shared.Cpu, name);
        }