396397398399400401402403404405406
@Override String asDiff() { JsopBuilder diff = new JsopBuilder(); diff.tag('^').key(PathUtils.concat(nodePath, propName)); if (propValue != null) { diff.encodedValue(propValue); } else { diff.value(null); } return diff.toString(); }