| 379 | } |
| 380 | |
| 381 | NamedDataType GraphFunction::localVariableFromName(boost::string_view name) const { |
| 382 | for (auto local : mLocalVariables) { |
| 383 | if (local.name == name) { return local; } |
| 384 | } |
| 385 | |
| 386 | return {}; |
| 387 | } |
| 388 | |
| 389 | NamedDataType GraphFunction::getOrCreateLocalVariable(std::string name, DataType type, |
| 390 | bool* inserted) { |
no outgoing calls
no test coverage detected