* Edit the syntax tree to keep it in sync with source code that has been * edited. * * You must describe the edit both in terms of byte offsets and in terms of * row/column coordinates.
(edit)
| 269 | * row/column coordinates. |
| 270 | */ |
| 271 | edit(edit) { |
| 272 | marshalEdit(edit); |
| 273 | C._ts_tree_edit_wasm(this[0]); |
| 274 | } |
| 275 | /** Create a new {@link TreeCursor} starting from the root of the tree. */ |
| 276 | walk() { |
| 277 | return this.rootNode.walk(); |
nothing calls this directly
no test coverage detected