[Nice-commit] Nice/src/bossa/syntax statement.nice,1.2,1.3
Brought to you by:
bonniot
|
From: Daniel B. <bo...@us...> - 2005-02-22 16:57:31
|
Update of /cvsroot/nice/Nice/src/bossa/syntax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19762/src/bossa/syntax Modified Files: statement.nice Log Message: Avoid to set an imprecise bytecode location when a more precise one is available. Index: statement.nice =================================================================== RCS file: /cvsroot/nice/Nice/src/bossa/syntax/statement.nice,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** statement.nice 14 Jan 2005 16:41:27 -0000 1.2 --- statement.nice 22 Feb 2005 16:57:21 -0000 1.3 *************** *** 54,58 **** } ! if (s.location() != null) s.location().write(res[i]); } --- 54,58 ---- } ! if (s.location() != null && ! res[i].hasLocation()) s.location().write(res[i]); } |