| 349 | } |
| 350 | |
| 351 | void GraphFunction::renameExecOutput(size_t idx, std::string name) { |
| 352 | // invalidate the cache |
| 353 | module().updateLastEditTime(); |
| 354 | |
| 355 | if (idx < mExecOutputs.size()) { mExecOutputs[idx] = std::move(name); } |
| 356 | updateExits(); |
| 357 | } |
| 358 | |
| 359 | void GraphFunction::updateEntries() { |
| 360 | auto matching = nodesWithType("lang", "entry"); |
no test coverage detected