| 35 | } |
| 36 | |
| 37 | StringView Directives::Entry::string(Shared const& parent) const { |
| 38 | StringView result = parent.string; |
| 39 | result = result.utf8().substr(begin, length); |
| 40 | return result; |
| 41 | } |
| 42 | |
| 43 | bool Directives::Shared::empty() const { |
| 44 | return entries.empty(); |
no test coverage detected