This commit is contained in:
Jeff 2024-05-18 12:00:37 -04:00
parent 109c3f033c
commit 47c1617602

View File

@ -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( prefix(
2, 2,
just(Token::Operator(Operator::Not)), just(Token::Operator(Operator::Not)),
@ -501,7 +501,7 @@ pub fn parser<'src>(
)); ));
choice(( choice((
logic_math_indexes_and_function_calls, logic_math_and_function_calls,
list_index, list_index,
map_index, map_index,
built_in_function_call, built_in_function_call,