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
Our current parser implementation does not support the increment (++) and decrement (--) operators. As they are very common, supporting them would make it easier for users.
Also, currently our parser does not provide a meaningful error message in case that a increment/decrement operator was found. For example:
for (int i = 0; i < 22; i++) ...
unknown file: Failure
stdout:
> C++ exception with description "Syntax error: Expected '=' on Line 4, position 88" thrown in the test body.
The text was updated successfully, but these errors were encountered:
Our current parser implementation does not support the increment (
++
) and decrement (--
) operators. As they are very common, supporting them would make it easier for users.Also, currently our parser does not provide a meaningful error message in case that a increment/decrement operator was found. For example:
The text was updated successfully, but these errors were encountered: