-------------------------------------------------------------
| 432 | |
| 433 | // ------------------------------------------------------------- |
| 434 | bool |
| 435 | ArrayVariable::is_visible_local(const Block* blk) const |
| 436 | { |
| 437 | const Block* b = blk; |
| 438 | while (b) { |
| 439 | if (b == parent) { |
| 440 | return true; |
| 441 | } |
| 442 | b = b->parent; |
| 443 | } |
| 444 | return false; |
| 445 | } |
| 446 | |
| 447 | bool |
| 448 | ArrayVariable::no_loop_initializer(void) const |
nothing calls this directly
no outgoing calls
no test coverage detected