コード例 #1
0
 public void Copy(_u u)
 {
     this.ind.Copy(u.ind);
     this.info = u.info;
     this.nval = u.nval;
     this.ival = u.ival;
 }
コード例 #2
0
ファイル: Expr.cs プロジェクト: smorey2/feaserver
        public ITable pZombieTab;     // List of Table objects to delete after code gen
#endif
        #endregion

        public void CopyFrom(Expr cf)
        {
            op              = cf.op;
            affinity        = cf.affinity;
            flags           = cf.flags;
            u               = cf.u;
            pColl           = (cf.pColl == null ? null : cf.pColl.Copy());
            iTable          = cf.iTable;
            iColumn         = cf.iColumn;
            pAggInfo        = (cf.pAggInfo == null ? null : cf.pAggInfo.Copy());
            iAgg            = cf.iAgg;
            iRightJoinTable = cf.iRightJoinTable;
            flags2          = cf.flags2;
            pTab            = (cf.pTab == null ? null : cf.pTab);
#if SQLITE_MAX_EXPR_DEPTH
            nHeight    = cf.nHeight;
            pZombieTab = cf.pZombieTab;
#endif
            pLeft     = (cf.pLeft == null ? null : cf.pLeft.Copy());
            pRight    = (cf.pRight == null ? null : cf.pRight.Copy());
            x.pList   = (cf.x.pList == null ? null : cf.x.pList.Copy());
            x.pSelect = (cf.x.pSelect == null ? null : cf.x.pSelect.Copy());
        }
コード例 #3
0
ファイル: lparser.cs プロジェクト: niuniuzhu/KopiLua
 public void Copy(_u u)
 {
     this.s.Copy(u.s);
     this.nval = u.nval;
 }
コード例 #4
0
 public void Copy(_u u)
 {
     this.s.Copy(u.s);
     this.nval = u.nval;
 }
コード例 #5
0
ファイル: Expr.cs プロジェクト: JiujiangZhu/feaserver
        public ITable pZombieTab;      // List of Table objects to delete after code gen
#endif
        #endregion

        public void CopyFrom(Expr cf)
        {
            op = cf.op;
            affinity = cf.affinity;
            flags = cf.flags;
            u = cf.u;
            pColl = (cf.pColl == null ? null : cf.pColl.Copy());
            iTable = cf.iTable;
            iColumn = cf.iColumn;
            pAggInfo = (cf.pAggInfo == null ? null : cf.pAggInfo.Copy());
            iAgg = cf.iAgg;
            iRightJoinTable = cf.iRightJoinTable;
            flags2 = cf.flags2;
            pTab = (cf.pTab == null ? null : cf.pTab);
#if SQLITE_MAX_EXPR_DEPTH
            nHeight = cf.nHeight;
            pZombieTab = cf.pZombieTab;
#endif
            pLeft = (cf.pLeft == null ? null : cf.pLeft.Copy());
            pRight = (cf.pRight == null ? null : cf.pRight.Copy());
            x.pList = (cf.x.pList == null ? null : cf.x.pList.Copy());
            x.pSelect = (cf.x.pSelect == null ? null : cf.x.pSelect.Copy());
        }