(c: char)
| 265 | } |
| 266 | |
| 267 | fn is_word(c: char) -> bool { |
| 268 | c.is_alphanumeric() || c == '_' |
| 269 | } |
| 270 | |
| 271 | /* Predefined class predicates lean on std, so Unicode needs no tables. */ |
| 272 | fn item_match(item: &ClassItem, c: char) -> bool { |
no outgoing calls
no test coverage detected