Get the position where this node ends.
()
| 741 | } |
| 742 | /** Get the position where this node ends. */ |
| 743 | get endPosition() { |
| 744 | marshalNode(this); |
| 745 | C._ts_node_end_point_wasm(this.tree[0]); |
| 746 | return unmarshalPoint(TRANSFER_BUFFER); |
| 747 | } |
| 748 | /** Get the string content of this node. */ |
| 749 | get text() { |
| 750 | return getText(this.tree, this.startIndex, this.endIndex, this.startPosition); |
nothing calls this directly
no test coverage detected