namgk / ambienttalk

Automatically exported from code.google.com/p/ambienttalk
0 stars 0 forks source link

Removing semicolons to delimit methods #14

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
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