* Return the string representation of this source node. Walks over the tree * and concatenates all the various snippets together to one string.
()
| 2240 | * and concatenates all the various snippets together to one string. |
| 2241 | */ |
| 2242 | toString() { |
| 2243 | let str = ""; |
| 2244 | this.walk(function(chunk) { |
| 2245 | str += chunk; |
| 2246 | }); |
| 2247 | return str; |
| 2248 | } |
| 2249 | |
| 2250 | /** |
| 2251 | * Returns the string representation of this source node along with a source |
no test coverage detected