in sarif/src/main/java/com/jetbrains/qodana/sarif/model/LogicalLocation.java [192:229]
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(LogicalLocation.class.getName()).append('@').append(Integer.toHexString(System.identityHashCode(this))).append('[');
sb.append("name");
sb.append('=');
sb.append(((this.name == null) ? "<null>" : this.name));
sb.append(',');
sb.append("index");
sb.append('=');
sb.append(((this.index == null) ? "<null>" : this.index));
sb.append(',');
sb.append("fullyQualifiedName");
sb.append('=');
sb.append(((this.fullyQualifiedName == null) ? "<null>" : this.fullyQualifiedName));
sb.append(',');
sb.append("decoratedName");
sb.append('=');
sb.append(((this.decoratedName == null) ? "<null>" : this.decoratedName));
sb.append(',');
sb.append("parentIndex");
sb.append('=');
sb.append(((this.parentIndex == null) ? "<null>" : this.parentIndex));
sb.append(',');
sb.append("kind");
sb.append('=');
sb.append(((this.kind == null) ? "<null>" : this.kind));
sb.append(',');
sb.append("properties");
sb.append('=');
sb.append(((this.properties == null) ? "<null>" : this.properties));
sb.append(',');
if (sb.charAt((sb.length() - 1)) == ',') {
sb.setCharAt((sb.length() - 1), ']');
} else {
sb.append(']');
}
return sb.toString();
}