()
| 5449 | |
| 5450 | #[test] |
| 5451 | fn test_lexer_variable_length_pattern() { |
| 5452 | let result = crate::ast::lexer::tokenize("-[:NEXT]{1,3}->"); |
| 5453 | assert!(result.is_ok(), "Variable-length pattern should tokenize"); |
| 5454 | } |
| 5455 | |
| 5456 | #[test] |
| 5457 | fn test_parser_match_user_return() { |
nothing calls this directly
no test coverage detected