| 210 | } |
| 211 | |
| 212 | void PushListDeps(const ListExpr* list_expr, std::stack<StackRecord>* stack) { |
| 213 | const auto& elements = list_expr->elements(); |
| 214 | for (auto it = elements.rbegin(); it != elements.rend(); ++it) { |
| 215 | const auto& element = *it; |
| 216 | stack->push(StackRecord(&element.expr())); |
| 217 | } |
| 218 | } |
| 219 | |
| 220 | void PushStructDeps(const StructExpr* struct_expr, |
| 221 | std::stack<StackRecord>* stack) { |
no test coverage detected