[EMAIL PROTECTED] wrote:
>
> {WS}"."{WS} means concatenation (as in $P0 . $P1)
> {WS}"." means concatenation (as in $P0 .$P1)
> "."{WS} means concatenation (as in $P0. $P1)
> "." means method call (as in $P0.$P1)

You can simplify even further and make these two syntax errors:

 {WS}"." means concatenation (as in $P0 .$P1)
 "."{WS} means concatenation (as in $P0. $P1)

Allison

Reply via email to