Exemplo n.º 1
0
        public override SValue Clone()
        {
            SClosure ret = new SClosure(InnerEnv, Arguments, Body);

            SValue.CopyAttributes(ret, this);
            return(ret);
        }
Exemplo n.º 2
0
        public override SValue Clone()
        {
            SDict ret = new SDict((Dictionary <string, SValue>)Underlying);

            SValue.CopyAttributes(ret, this);
            return(ret);
        }
Exemplo n.º 3
0
        public override SValue Clone()
        {
            SExploded ret = new SExploded(Comps);

            SValue.CopyAttributes(ret, this);
            return(ret);
        }
Exemplo n.º 4
0
        public override SValue Clone()
        {
            SList ret = new SList((List <SValue>)Underlying);

            SValue.CopyAttributes(ret, this);
            return(ret);
        }
Exemplo n.º 5
0
        public override SValue Clone()
        {
            SNumber ret = new SNumber((decimal)Underlying);

            SValue.CopyAttributes(ret, this);
            return(ret);
        }
Exemplo n.º 6
0
        public override SValue Clone()
        {
            SString ret = new SString((string)Underlying);

            SValue.CopyAttributes(ret, this);
            return(ret);
        }
Exemplo n.º 7
0
        public override SValue Clone()
        {
            SBool ret = new SBool((bool)Underlying);

            SValue.CopyAttributes(ret, this);
            return(ret);
        }
Exemplo n.º 8
0
        public override SValue Clone()
        {
            SObject ret = new SObject(Underlying);

            SValue.CopyAttributes(ret, this);
            return(ret);
        }