[Nice-commit] Nice/src/bossa/parser Parser.jj,1.282,1.283
Brought to you by:
bonniot
From: Arjan B. <ar...@us...> - 2004-12-15 03:46:08
|
Update of /cvsroot/nice/Nice/src/bossa/parser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2818/F:/nice/src/bossa/parser Modified Files: Parser.jj Log Message: Converted FunType. Index: Parser.jj =================================================================== RCS file: /cvsroot/nice/Nice/src/bossa/parser/Parser.jj,v retrieving revision 1.282 retrieving revision 1.283 diff -C2 -d -r1.282 -r1.283 *** Parser.jj 11 Dec 2004 23:58:00 -0000 1.282 --- Parser.jj 15 Dec 2004 03:45:58 -0000 1.283 *************** *** 693,697 **** codomain = monotype() { ! FunType res = new FunType(domain, codomain); res.nullness = maybe ? res.maybe : res.absent; return res; --- 693,697 ---- codomain = monotype() { ! FunType res = bossa.syntax.dispatch.createFunType(domain, codomain); res.nullness = maybe ? res.maybe : res.absent; return res; *************** *** 733,737 **** else domain = new Monotype[]{ res }; ! res = new FunType(domain, codomain); res.nullness = maybe ? res.maybe : res.absent; } ] --- 733,737 ---- else domain = new Monotype[]{ res }; ! res = bossa.syntax.dispatch.createFunType_(domain, codomain); res.nullness = maybe ? res.maybe : res.absent; } ] |