[Nice-commit] Nice/src/bossa/parser Parser.jj,1.154,1.155
Brought to you by:
bonniot
|
From: <bo...@us...> - 2003-04-24 19:13:48
|
Update of /cvsroot/nice/Nice/src/bossa/parser
In directory sc8-pr-cvs1:/tmp/cvs-serv14913/src/bossa/parser
Modified Files:
Parser.jj
Log Message:
Deleted some commented out parts, that won't probably ever be used.
Index: Parser.jj
===================================================================
RCS file: /cvsroot/nice/Nice/src/bossa/parser/Parser.jj,v
retrieving revision 1.154
retrieving revision 1.155
diff -C2 -d -r1.154 -r1.155
*** Parser.jj 24 Apr 2003 13:35:31 -0000 1.154
--- Parser.jj 24 Apr 2003 19:13:44 -0000 1.155
***************
*** 111,116 ****
| < LBRACE: "{" >
| < RBRACE: "}" >
- // | < LPRAGMA: "<*" >
- // | < RPRAGMA: "*>" >
| < DOT: "." >
| < COLON: ":" >
--- 111,114 ----
***************
*** 634,638 ****
void atomics(List res):
! // if init is null, we just want lookahead
{
AtomicConstraint k;
--- 632,636 ----
void atomics(List res):
! // if res is null, we just want lookahead
{
AtomicConstraint k;
***************
*** 858,875 ****
}
- /*
- TypeParameters typeParameters():
- {
- List res=new ArrayList();
- Monotype t;
- }
- {
- ( "<"
- t=monotype() { res.add(t); }
- ( "," t=monotype() { res.add(t); } )*
- ">" )
- { return new TypeParameters(res); }
- }
- */
/***********************************************************************/
/* Classes */
--- 856,859 ----
|