Ejemplo n.º 1
0
        internal override AssignmentTarget CopyTarget(Dictionary <SequenceVariable, SequenceVariable> originalToCopy, IGraphProcessingEnvironment procEnv)
        {
            AssignmentTargetAttribute copy = (AssignmentTargetAttribute)MemberwiseClone();

            copy.DestVar = DestVar.Copy(originalToCopy, procEnv);
            return(copy);
        }
 protected AssignmentTargetAttribute(AssignmentTargetAttribute that, Dictionary <SequenceVariable, SequenceVariable> originalToCopy, IGraphProcessingEnvironment procEnv)
     : base(that)
 {
     DestVar       = that.DestVar.Copy(originalToCopy, procEnv);
     AttributeName = that.AttributeName;
 }