| 1636 | } |
| 1637 | |
| 1638 | static const CBMLexicalScope *usage_lexical_scope(const WalkState *state, uint32_t id) { |
| 1639 | return state && id > 0 && id <= (uint32_t)state->lexical_scope_count |
| 1640 | ? &state->lexical_scopes[id - 1U] |
| 1641 | : NULL; |
| 1642 | } |
| 1643 | |
| 1644 | static uint32_t active_lexical_scope_id(const WalkState *state) { |
| 1645 | if (!state) { |
no outgoing calls
no test coverage detected