The code below is the result of formatting several lines where x is prefixed by a sequence of unary operators (+ and \star). In the input, there was no white space between the operators. JuliaFormatter seems to misinterpret the unary operators as binary operators.
++ + x == 0
++ ++ x == 0
⋆⋆x == 0
⋆⋆ ⋆ x == 0
⋆⋆ ⋆ ⋆x == 0
The code below is the result of formatting several lines where
xis prefixed by a sequence of unary operators (+and\star). In the input, there was no white space between the operators. JuliaFormatter seems to misinterpret the unary operators as binary operators.