#109 Convention for methods with no args

brian Tue 29 Aug 2006

Based on Andy's idea, our new convention is that you NEVER use empty parens to make a method call with no arguments. The simple iron clad rule is that method calls with no arguments should omit the parens.

This complicates the parser's life a little bit because now a single identifer may be a complete statement. This was previously not allowed, but I've enhanced the Parser to handle this case.

Login or Signup to reply.