Using semicolons to terminate method definitions is ugly. The parser should be
smart enough to
see that for:
def m() { ... }
def n() { ... }
the '}' token is the delimiter for between the two def statements. Currently,
one needs to write:
def m() { ... };
def n() { ... }
Original issue reported on code.google.com by tvcut...@gmail.com on 16 Sep 2008 at 1:37
Original issue reported on code.google.com by
tvcut...@gmail.com
on 16 Sep 2008 at 1:37