| 248 | } |
| 249 | |
| 250 | Yield getYield(const std::string& function) const { |
| 251 | const auto i = functions.find(function); |
| 252 | if (i != functions.end()) |
| 253 | return i->second.yield; |
| 254 | return Yield::NO_YIELD; |
| 255 | } |
| 256 | |
| 257 | const std::string& getReturnType(const std::string& function) const { |
| 258 | const auto i = functions.find(function); |