Removed support for assert keyword. It breaks the parser on legal java

prior to JDK 1.4.
This commit is contained in:
Oliver Burn 2002-01-14 05:07:22 +00:00
parent cb0fdf5428
commit 3af1c99a0c
1 changed files with 1 additions and 1 deletions

View File

@ -636,7 +636,7 @@ statement[int[] aType]
| s:SEMI {#s.setType(EMPTY_STAT);}
// assert statement
| "assert"^ expression (COLON^ expression)? SEMI!
// | "assert"^ expression (COLON^ expression)? SEMI!
;