fix #<= and #>= not parsing

This commit is contained in:
2022-05-07 23:59:40 +02:00
parent 2cf47085c1
commit c59b35f9c6

View File

@@ -324,14 +324,14 @@ fn lexer() -> impl Parser<char, Vec<(Token, Span)>, Error = LexerError> {
just("<<"),
just(">>"),
just("#>>"),
just("#<"),
just("#>"),
just(">="),
just("<="),
just("=="),
just("!="),
just("#>="),
just("#<="),
just("#<"),
just("#>"),
just("->"),
just(":="),
))