[Nice-commit] Nice/src/bossa/syntax typecheck.nice,1.51,1.52
Brought to you by:
bonniot
|
From: <bo...@us...> - 2003-03-11 20:14:36
|
Update of /cvsroot/nice/Nice/src/bossa/syntax
In directory sc8-pr-cvs1:/tmp/cvs-serv13462/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.51
retrieving revision 1.52
diff -C2 -d -r1.51 -r1.52
*** typecheck.nice 26 Feb 2003 17:09:24 -0000 1.51
--- typecheck.nice 11 Mar 2003 20:14:26 -0000 1.52
***************
*** 154,158 ****
nullnessInfo(notNull(test.arguments.getExp(1)));
! // If this test is fase, it is because both subtests are.
return (null, combine(notNullIfFalse0, notNullIfFalse1));
}
--- 154,158 ----
nullnessInfo(notNull(test.arguments.getExp(1)));
! // If this test is false, it is because both subtests are.
return (null, combine(notNullIfFalse0, notNullIfFalse1));
}
***************
*** 165,169 ****
nullnessInfo(notNull(test.arguments.getExp(1)));
! // If this test is fase, it is because both subtests are.
return (combine(notNullIfTrue0, notNullIfTrue1), null);
}
--- 165,169 ----
nullnessInfo(notNull(test.arguments.getExp(1)));
! // If this test is true, it is because both subtests are.
return (combine(notNullIfTrue0, notNullIfTrue1), null);
}
***************
*** 174,178 ****
else if (test.isCallTo("!="))
isAlwaysNull = false;
! else /// give up
return (null, null);
--- 174,178 ----
else if (test.isCallTo("!="))
isAlwaysNull = false;
! else // Give up.
return (null, null);
|