| 15785 | } |
| 15786 | |
| 15787 | tl::expected<std::string, errors> url_pattern_init::process_password( |
| 15788 | std::string_view value, process_type type) { |
| 15789 | // If type is "pattern" then return value. |
| 15790 | if (type == process_type::pattern) { |
| 15791 | return std::string(value); |
| 15792 | } |
| 15793 | // Return the result of running canonicalize a password given value. |
| 15794 | return url_pattern_helpers::canonicalize_password(value); |
| 15795 | } |
| 15796 | |
| 15797 | tl::expected<std::string, errors> url_pattern_init::process_hostname( |
| 15798 | std::string_view value, process_type type) { |
nothing calls this directly
no test coverage detected