| 133 | } |
| 134 | |
| 135 | bool |
| 136 | supports_commas() const |
| 137 | { |
| 138 | if (m_wks_idx >= 0) { |
| 139 | return (hdrtoken_index_to_flags(m_wks_idx) & HTIF_COMMAS); |
| 140 | } |
| 141 | return true; // by default, assume supports commas |
| 142 | } |
| 143 | |
| 144 | /// @return The name of @a this field. |
| 145 | std::string_view name_get() const; |
no test coverage detected