| 102 | } |
| 103 | |
| 104 | bool IsBinary(const YAML::Node& node) { |
| 105 | return node.Tag() == "!!binary" || node.Tag() == "tag:yaml.org,2002:binary"; |
| 106 | } |
| 107 | |
| 108 | absl::StatusOr<std::string> GetBinary(absl::string_view yaml, |
| 109 | const YAML::Node& node) { |
no outgoing calls
no test coverage detected