Update of /cvsroot/nice/Nice/src/bossa/parser
In directory sc8-pr-cvs1:/tmp/cvs-serv2218/F:/nice/src/bossa/parser
Modified Files:
Parser.jj
Log Message:
The variable=value and variable=constant patterns are not a valid syntax.
Index: Parser.jj
===================================================================
RCS file: /cvsroot/nice/Nice/src/bossa/parser/Parser.jj,v
retrieving revision 1.184
retrieving revision 1.185
diff -C2 -d -r1.184 -r1.185
*** Parser.jj 14 Jun 2003 16:21:26 -0000 1.184
--- Parser.jj 14 Jun 2003 17:43:45 -0000 1.185
***************
*** 1236,1246 ****
t ="#" tc=typeIdent() { exactlyAt = true; }
|
- t="="
- (
- val=patternLiteral() {loc = val.location(); }
- |
- refName=ident() {loc = refName.location(); }
- )
- |
{} //name only
)
--- 1236,1239 ----
|