[Nice-commit] Nice/src/bossa/parser Parser.jj,1.195,1.196
Brought to you by:
bonniot
From: <bo...@us...> - 2003-07-17 23:14:40
|
Update of /cvsroot/nice/Nice/src/bossa/parser In directory sc8-pr-cvs1:/tmp/cvs-serv22373/src/bossa/parser Modified Files: Parser.jj Log Message: Disabled the implication operator for now. It might be reintroduced later as `=>`, if the syntax for anonymous functions is changed. Index: Parser.jj =================================================================== RCS file: /cvsroot/nice/Nice/src/bossa/parser/Parser.jj,v retrieving revision 1.195 retrieving revision 1.196 diff -C2 -d -r1.195 -r1.196 *** Parser.jj 15 Jul 2003 15:03:10 -0000 1.195 --- Parser.jj 17 Jul 2003 23:14:37 -0000 1.196 *************** *** 1811,1816 **** { e1=ConditionalOrExpression() ! ( t="->" e2=ConditionalOrExpression() ! { e1=CallExp.create(symb(t), e1, e2); } )? { return e1; } } --- 1811,1816 ---- { e1=ConditionalOrExpression() ! // ( t="->" e2=ConditionalOrExpression() ! // { e1=CallExp.create(symb(t), e1, e2); } )? { return e1; } } |