On parsing the following test case with javalang it wasn't able to detect the unary (prefix) operator ++.
The issue is prevalent for other unary operators as well, such as +, -, ++ (postfix), !
class Test
{
Test()
{
x = ++y;
}
}
Output on parsing above test file : issue_output
The operator has no entry in the output ( test file is being parsed successfully ).
On parsing the following test case with javalang it wasn't able to detect the unary (prefix) operator
++
. The issue is prevalent for other unary operators as well, such as+, -, ++ (postfix), !
Output on parsing above test file : issue_output The operator has no entry in the output ( test file is being parsed successfully ).