| 241 | bool startPatternHasStd{}; |
| 242 | |
| 243 | Action getAction(const std::string& function) const { |
| 244 | const auto i = functions.find(function); |
| 245 | if (i != functions.end()) |
| 246 | return i->second.action; |
| 247 | return Action::NO_ACTION; |
| 248 | } |
| 249 | |
| 250 | Yield getYield(const std::string& function) const { |
| 251 | const auto i = functions.find(function); |