1796179717981799180018011802
List<Operand> strPieces = new ArrayList<Operand>(); for (Node n : dregexpNode.childNodes()) { strPieces.add(dynamicPiece(n, s)); } return copyAndReturnValue(s, new Regexp(new CompoundString(strPieces), dregexpNode.getOptions())); }
1805180618071808180918101811
List<Operand> strPieces = new ArrayList<Operand>(); for (Node n : dstrNode.childNodes()) { strPieces.add(dynamicPiece(n, s)); } return copyAndReturnValue(s, new CompoundString(strPieces, dstrNode.getEncoding())); }
1814181518161817181818191820
List<Operand> strPieces = new ArrayList<Operand>(); for (Node n : node.childNodes()) { strPieces.add(dynamicPiece(n, s)); } return copyAndReturnValue(s, new DynamicSymbol(new CompoundString(strPieces, node.getEncoding()))); }