* Return the string representation of this source node. Walks over the tree * and concatenates all the various snippets together to one string.
()
| 328 | * and concatenates all the various snippets together to one string. |
| 329 | */ |
| 330 | toString() { |
| 331 | let str = ""; |
| 332 | this.walk(function (chunk) { |
| 333 | str += chunk; |
| 334 | }); |
| 335 | return str; |
| 336 | } |
| 337 | |
| 338 | /** |
| 339 | * Returns the string representation of this source node along with a source |