| 202 | } |
| 203 | |
| 204 | static bool node_contains(TSNode outer, TSNode inner) { |
| 205 | return !ts_node_is_null(outer) && !ts_node_is_null(inner) && |
| 206 | ts_node_start_byte(outer) <= ts_node_start_byte(inner) && |
| 207 | ts_node_end_byte(outer) >= ts_node_end_byte(inner); |
| 208 | } |
| 209 | |
| 210 | static bool vhdl_forward_callee_wrapper(TSNode node) { |
| 211 | const char *kind = ts_node_type(node); |
no outgoing calls
no test coverage detected