(first: Token, second: Token)
| 28 | } |
| 29 | |
| 30 | fn space_before(first: Token, second: Token) -> bool { |
| 31 | // CSS demands it |
| 32 | first.needs_separator_for(second) |
| 33 | // It's a kind which might like some space around it. |
| 34 | || (second != Kind::Whitespace && (first == SPACE_AFTER_KINDSET || first == '>' || first == '<' || first == '+' || first == '-')) |
| 35 | } |
| 36 | |
| 37 | fn space_after(first: Token, second: Token) -> bool { |
| 38 | // It's a kind which might like some space around it. |
nothing calls this directly
no test coverage detected