| 232 | } |
| 233 | |
| 234 | static bool node_contains(TSNode outer, TSNode inner) { |
| 235 | return !ts_node_is_null(outer) && !ts_node_is_null(inner) && |
| 236 | ts_node_start_byte(outer) <= ts_node_start_byte(inner) && |
| 237 | ts_node_end_byte(outer) >= ts_node_end_byte(inner); |
| 238 | } |
| 239 | |
| 240 | static bool vhdl_forward_callee_wrapper(TSNode node) { |
| 241 | const char *kind = ts_node_type(node); |
no outgoing calls
no test coverage detected