[Nice-commit] Nice/src/bossa/parser Parser.jj,1.145,1.146
Brought to you by:
bonniot
|
From: <bo...@us...> - 2003-03-06 12:40:06
|
Update of /cvsroot/nice/Nice/src/bossa/parser
In directory sc8-pr-cvs1:/tmp/cvs-serv22314/src/bossa/parser
Modified Files:
Parser.jj
Log Message:
Allow ?(T[]) syntax for optional arrays, as an alternative to T[?].
Index: Parser.jj
===================================================================
RCS file: /cvsroot/nice/Nice/src/bossa/parser/Parser.jj,v
retrieving revision 1.145
retrieving revision 1.146
diff -C2 -d -r1.145 -r1.146
*** Parser.jj 25 Feb 2003 20:08:00 -0000 1.145
--- Parser.jj 6 Mar 2003 12:29:07 -0000 1.146
***************
*** 794,798 ****
new TypeParameters(tp),
loc);
! res.nullness = maybe ? res.maybe : res.sure;
}
]
--- 794,798 ----
new TypeParameters(tp),
loc);
! res.nullness = maybe ? res.maybe : res.absent;
}
]
|