| 40 | namespace bytedance::bolt::fuzzer { |
| 41 | |
| 42 | std::string typeToBaseName(const TypePtr& type) { |
| 43 | return boost::algorithm::to_lower_copy(std::string{type->kindName()}); |
| 44 | } |
| 45 | |
| 46 | std::optional<TypeKind> baseNameToTypeKind(const std::string& typeName) { |
| 47 | auto kindName = boost::algorithm::to_upper_copy(typeName); |
no test coverage detected