| 251 | } |
| 252 | |
| 253 | void PushListDeps(const CreateList* list_expr, const SourceInfo* source_info, |
| 254 | std::stack<StackRecord>* stack) { |
| 255 | const auto& elements = list_expr->elements(); |
| 256 | for (auto it = elements.rbegin(); it != elements.rend(); ++it) { |
| 257 | const auto& element = *it; |
| 258 | stack->push(StackRecord(&element, source_info)); |
| 259 | } |
| 260 | } |
| 261 | |
| 262 | void PushStructDeps(const CreateStruct* struct_expr, |
| 263 | const SourceInfo* source_info, |