|
Burak edited on 2003-09-12 12:17:12.0
|
This pattern parses as...
case PT(@_(a, []))
@_ is a valid operator ident. [spec,p.11]
and as (binary) operators in patterns are turned to constructors...
the second argument is missing, so the empty sequence is
assumed, which in its abbreviated form I do not allow as second argument.
I will change the text of the error message though.
|
|
Burak edited on 2003-09-12 15:32:32.0
|
|
|
|
Matthias edited on 2003-09-16 14:27:10.0
|
|
I just restricted operator parsing in the scanner. Now, operators never contain the character '_'.
|