瀏覽代碼

EAGLESIX-3008: Sets the tag on shallow copies.

Scott Munday 11 年之前
父節點
當前提交
d5879bbccd
共有 1 個文件被更改,包括 5 次插入0 次删除
  1. 5 0
      lib/pipeline/matcher/NorMatchExpression.js

+ 5 - 0
lib/pipeline/matcher/NorMatchExpression.js

@@ -73,6 +73,11 @@ proto.shallowClone = function shallowClone(){
 	for (var i = 0; i < this.numChildren(); i++) {
 		e.add(this.getChild(i).shallowClone());
 	}
+
+	if (this.getTag()) {
+		e.setTag(this.getTag().clone());
+	}
+
 	return e;
 };