From c59b35f9c6126edbd4550b92a452a429f6b9b902 Mon Sep 17 00:00:00 2001 From: Dennis Ranke Date: Sat, 7 May 2022 23:59:40 +0200 Subject: [PATCH] fix #<= and #>= not parsing --- src/parser.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/parser.rs b/src/parser.rs index ac67b1f..9d9a3d5 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -324,14 +324,14 @@ fn lexer() -> impl Parser, Error = LexerError> { just("<<"), just(">>"), just("#>>"), - just("#<"), - just("#>"), just(">="), just("<="), just("=="), just("!="), just("#>="), just("#<="), + just("#<"), + just("#>"), just("->"), just(":="), ))