From 47c161760214986391288eef4c60bd6b7887a7fd Mon Sep 17 00:00:00 2001 From: Jeff Date: Sat, 18 May 2024 12:00:37 -0400 Subject: [PATCH] Clean up --- dust-lang/src/parser.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dust-lang/src/parser.rs b/dust-lang/src/parser.rs index 9b2cff2..18596f7 100644 --- a/dust-lang/src/parser.rs +++ b/dust-lang/src/parser.rs @@ -365,7 +365,7 @@ pub fn parser<'src>( ), )); - let logic_math_indexes_and_function_calls = atom.pratt(( + let logic_math_and_function_calls = atom.pratt(( prefix( 2, just(Token::Operator(Operator::Not)), @@ -501,7 +501,7 @@ pub fn parser<'src>( )); choice(( - logic_math_indexes_and_function_calls, + logic_math_and_function_calls, list_index, map_index, built_in_function_call,