| 9935 | |
| 9936 | template <url_pattern_encoding_callback F> |
| 9937 | bool url_pattern_parser<F>::consume_required_token(token_type type) { |
| 9938 | ada_log("url_pattern_parser::consume_required_token called with type=", |
| 9939 | to_string(type)); |
| 9940 | // Let result be the result of running try to consume a token given parser and |
| 9941 | // type. |
| 9942 | return try_consume_token(type) != nullptr; |
| 9943 | } |
| 9944 | |
| 9945 | template <url_pattern_encoding_callback F> |
| 9946 | std::optional<errors> |
no test coverage detected