Update of /cvsroot/nice/Nice/src/bossa/syntax
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27561/F:/nice/src/bossa/syntax
Modified Files:
break.nice
Log Message:
Added missing toString() in LabeledStmt.
Index: break.nice
===================================================================
RCS file: /cvsroot/nice/Nice/src/bossa/syntax/break.nice,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** break.nice 28 Jul 2004 14:40:33 -0000 1.1
--- break.nice 11 Aug 2004 13:36:09 -0000 1.2
***************
*** 93,97 ****
block = null;
return res;
! }
}
--- 93,99 ----
block = null;
return res;
! }
!
! toString() = this.name() + ":\n" + statement;
}
|