()
| 1891 | } |
| 1892 | |
| 1893 | final public void PreDecrementExpression() throws ParseException { |
| 1894 | Token t = null; |
| 1895 | t = jj_consume_token(DECR); |
| 1896 | PrimaryExpression(); |
| 1897 | BSHUnaryExpression jjtn001 = new BSHUnaryExpression(JJTUNARYEXPRESSION); |
| 1898 | boolean jjtc001 = true; |
| 1899 | jjtree.openNodeScope(jjtn001); |
| 1900 | jjtreeOpenNodeScope(jjtn001); |
| 1901 | try { |
| 1902 | jjtree.closeNodeScope(jjtn001, 1); |
| 1903 | jjtc001 = false; |
| 1904 | jjtreeCloseNodeScope(jjtn001); |
| 1905 | jjtn001.kind = t.kind; |
| 1906 | } finally { |
| 1907 | if (jjtc001) { |
| 1908 | jjtree.closeNodeScope(jjtn001, 1); |
| 1909 | jjtreeCloseNodeScope(jjtn001); |
| 1910 | } |
| 1911 | } |
| 1912 | } |
| 1913 | |
| 1914 | final public void UnaryExpressionNotPlusMinus() throws ParseException { |
| 1915 | Token t = null; |
no test coverage detected