()
| 2176 | // infinite loop on invalid input. |
| 2177 | #[test] |
| 2178 | fn test_infinite_loop() { |
| 2179 | let source = "[1"; |
| 2180 | lex_invalid(source, Mode::Module); |
| 2181 | } |
| 2182 | |
| 2183 | /// Emoji identifiers are a non-standard python feature and are not supported by our lexer. |
| 2184 | #[test] |
nothing calls this directly
no test coverage detected