Pop a node from the stack. Caller must check s->count > 0. */
| 48 | |
| 49 | /* Pop a node from the stack. Caller must check s->count > 0. */ |
| 50 | static inline TSNode ts_nstack_pop(TSNodeStack *s) { |
| 51 | return s->items[--s->count]; |
| 52 | } |
| 53 | |
| 54 | /* |
| 55 | * Push all children of `node` so they POP in forward (source) order — a drop-in |
no outgoing calls
no test coverage detected