You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The parser does not remove unary operators which are redundant. For example :- Parsing SET S= +++-++-+(4+1) results in set S = + + + - + + - +(4 + 1) whereas parsing SET S= +++-++-+4 produces set S = 4.
Reproduction Steps
The issue can be reproduced by adding a test case to the parser tests.
The text was updated successfully, but these errors were encountered:
Overview of the Issue
The parser does not remove unary operators which are redundant. For example :- Parsing
SET S= +++-++-+(4+1)
results inset S = + + + - + + - +(4 + 1)
whereas parsingSET S= +++-++-+4
producesset S = 4
.Reproduction Steps
The issue can be reproduced by adding a test case to the parser tests.
The text was updated successfully, but these errors were encountered: