| 1666 | } |
| 1667 | |
| 1668 | static const CBMLexicalScope *usage_lexical_scope(const WalkState *state, uint32_t id) { |
| 1669 | return state && id > 0 && id <= (uint32_t)state->lexical_scope_count |
| 1670 | ? &state->lexical_scopes[id - 1U] |
| 1671 | : NULL; |
| 1672 | } |
| 1673 | |
| 1674 | static uint32_t active_lexical_scope_id(const WalkState *state) { |
| 1675 | if (!state) { |
no outgoing calls
no test coverage detected