| 281 | } |
| 282 | |
| 283 | void Function::addAggregate(unique_ptr<AggregateValue> &&a) { |
| 284 | aggregates.emplace_back(std::move(a)); |
| 285 | } |
| 286 | |
| 287 | void Function::addInput(unique_ptr<Value> &&i) { |
| 288 | assert(dynamic_cast<Input *>(i.get()) || |
no outgoing calls
no test coverage detected