| 56 | } |
| 57 | |
| 58 | std::istringstream workflow_buffer(const engine::io::json::Value & object, const std::string & key) { |
| 59 | const auto str = workflow_string(object, key); |
| 60 | return std::istringstream(str); |
| 61 | } |
| 62 | |
| 63 | std::string workflow_string_or( |
| 64 | const engine::io::json::Value & object, |
| 65 | const std::string & key, |
| 66 | std::string fallback) { |
| 67 | const auto * value = object.find(key); |
no test coverage detected