in src/main/java/com/ql/util/express/match/QLPatternNode.java [87:96]
public boolean canMergeDetail() {
return this.matchMode == MatchMode.DETAIL && "ANONY_PATTERN".equals(this.name)
&& this.nodeType.getPatternNode() != null
&& !this.isSkip
&& !this.blame
&& !this.isChildMode
&& !this.isTreeRoot
&& this.minMatchNum == 1
&& this.maxMatchNum == 1;
}