Mono.CSharp.Linq.AQueryClause.CloneTo C# (CSharp) Méthode

CloneTo() protected méthode

protected CloneTo ( CloneContext clonectx, Expression target ) : void
clonectx CloneContext
target Expression
Résultat void
		protected override void CloneTo (CloneContext clonectx, Expression target)
		{
			base.CloneTo (clonectx, target);

			AQueryClause t = (AQueryClause) target;

			if (block != null)
				t.block = (QueryBlock) clonectx.LookupBlock (block);

			if (next != null)
				t.next = (AQueryClause) next.Clone (clonectx);
		}