MCPcopy Index your code
hub / github.com/apache/groovy / toString

Method toString

src/main/java/org/codehaus/groovy/syntax/CSTNode.java:423–429  ·  view source on GitHub ↗

Returns a formatted string representation of this node and its children. @return the formatted node tree as a string

()

Source from the content-addressed store, hash-verified

421 * @return the formatted node tree as a string
422 */
423 @Override
424 public String toString() {
425 Writer string = new StringBuilderWriter();
426 write(new PrintWriter(string));
427
428 return string.toString();
429 }
430
431 /**
432 * Writes a formatted representation of this node to the specified writer.

Callers

nothing calls this directly

Calls 2

writeMethod · 0.95
toStringMethod · 0.95

Tested by

no test coverage detected