Get the S-expression representation of this node.
()
| 1159 | } |
| 1160 | /** Get the S-expression representation of this node. */ |
| 1161 | toString() { |
| 1162 | marshalNode(this); |
| 1163 | const address = C._ts_node_to_string_wasm(this.tree[0]); |
| 1164 | const result = C.AsciiToString(address); |
| 1165 | C._free(address); |
| 1166 | return result; |
| 1167 | } |
| 1168 | }; |
| 1169 | |
| 1170 | // src/marshal.ts |
no test coverage detected