| 573 | } |
| 574 | |
| 575 | unsigned TupleObject::sizeOnStack() const |
| 576 | { |
| 577 | unsigned size = 0; |
| 578 | for (auto const& lv: m_lvalues) |
| 579 | if (lv) |
| 580 | size += lv->sizeOnStack(); |
| 581 | return size; |
| 582 | } |
| 583 | |
| 584 | void TupleObject::retrieveValue(SourceLocation const&, bool) const |
| 585 | { |
no outgoing calls
no test coverage detected