Returns the root token of this node. By convention, all nodes have a Token as their root element (at index 0), which indicates the syntactic type of the node. @return the root token, or null if the node is empty
()
| 289 | * @return the root token, or {@code null} if the node is empty |
| 290 | */ |
| 291 | public abstract Token getRoot(); |
| 292 | |
| 293 | /** |
| 294 | * Returns the root token of this node, returning {@link Token#NULL} if |
no outgoing calls
no test coverage detected