(byte: u8)
| 2586 | } |
| 2587 | |
| 2588 | fn is_ascii_word_byte(byte: u8) -> bool { |
| 2589 | byte.is_ascii_alphanumeric() || byte == b'_' |
| 2590 | } |
| 2591 | |
| 2592 | fn contains_ascii_word(code: &str, word: &str) -> bool { |
| 2593 | let bytes = code.as_bytes(); |
no outgoing calls
no test coverage detected