[Nice-commit] Nice/src/bossa/syntax MonoSymbol.java,1.25,1.26 tools.nice,1.28,1.29
Brought to you by:
bonniot
From: <ar...@us...> - 2003-11-20 01:17:30
|
Update of /cvsroot/nice/Nice/src/bossa/syntax In directory sc8-pr-cvs1:/tmp/cvs-serv30096/F:/nice/src/bossa/syntax Modified Files: MonoSymbol.java tools.nice Log Message: typo's Index: MonoSymbol.java =================================================================== RCS file: /cvsroot/nice/Nice/src/bossa/syntax/MonoSymbol.java,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** MonoSymbol.java 20 Nov 2003 00:32:41 -0000 1.25 --- MonoSymbol.java 20 Nov 2003 01:16:49 -0000 1.26 *************** *** 32,36 **** super(name); this.syntacticType=type; - this.captured = false; } --- 32,35 ---- *************** *** 39,43 **** super(name); this.type = type; - this.captured = false; } --- 38,41 ---- *************** *** 161,165 **** } ! boolean captured; Monotype syntacticType; --- 159,163 ---- } ! boolean captured = false; Monotype syntacticType; Index: tools.nice =================================================================== RCS file: /cvsroot/nice/Nice/src/bossa/syntax/tools.nice,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** tools.nice 20 Nov 2003 00:32:41 -0000 1.28 --- tools.nice 20 Nov 2003 01:16:49 -0000 1.29 *************** *** 50,54 **** return null; ! // no type inference on captured varibles if (sym.captured) return null; --- 50,54 ---- return null; ! // no type inference on captured variables if (sym.captured) return null; |