Update of /cvsroot/nice/Nice/src/bossa/syntax
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12366/src/bossa/syntax
Modified Files:
typecheck.nice
Log Message:
Typos.
Index: typecheck.nice
===================================================================
RCS file: /cvsroot/nice/Nice/src/bossa/syntax/typecheck.nice,v
retrieving revision 1.106
retrieving revision 1.107
diff -C2 -d -r1.106 -r1.107
*** typecheck.nice 3 Aug 2004 14:36:05 -0000 1.106
--- typecheck.nice 4 Aug 2004 08:45:45 -0000 1.107
***************
*** 672,676 ****
if (! target.used)
! bossa.util.User.warning(decl, "Unused local variable " + target.name);
?mlsub.typing.Monotype type = target.getMonotype();
--- 672,676 ----
if (! target.used)
! bossa.util.User.warning(decl, "Unused local variable " + target.name);
?mlsub.typing.Monotype type = target.getMonotype();
***************
*** 742,746 ****
if (! target.used)
! bossa.util.User.warning(decl, "Unused local variable " + target.name);
?Expression value = decl.value;
--- 742,746 ----
if (! target.used)
! bossa.util.User.warning(decl, "Unused local variable " + target.name);
?Expression value = decl.value;
***************
*** 783,787 ****
{
if (! notNull(decl.left).used)
! bossa.util.User.warning(decl, " Unused local variable " + notNull(decl.left).name);
typecheck(decl.value);
--- 783,787 ----
{
if (! notNull(decl.left).used)
! bossa.util.User.warning(decl, "Unused local variable " + notNull(decl.left).name);
typecheck(decl.value);
|