| 227 | } |
| 228 | |
| 229 | void PushSelectDeps(Select* select_expr, const SourceInfo* source_info, |
| 230 | std::stack<StackRecord>* stack) { |
| 231 | if (select_expr->has_operand()) { |
| 232 | stack->push(StackRecord(select_expr->mutable_operand(), source_info)); |
| 233 | } |
| 234 | } |
| 235 | |
| 236 | void PushCallDeps(Call* call_expr, Expr* expr, const SourceInfo* source_info, |
| 237 | std::stack<StackRecord>* stack) { |
no test coverage detected