From: Peep P. <so...@us...> - 2004-03-21 14:17:05
|
Update of /cvsroot/agd/server In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4008 Modified Files: BUGS ChangeLog NEWS TODO Log Message: Added for(). Index: NEWS =================================================================== RCS file: /cvsroot/agd/server/NEWS,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- NEWS 21 Mar 2004 13:26:17 -0000 1.7 +++ NEWS 21 Mar 2004 14:06:35 -0000 1.8 @@ -1,4 +1,5 @@ New things in this version (0.0.2-3) that you might find useful: + * for() * break; and continue; statements * New operators: **, **= * New dfuns: query_ip, query_hostname (use with caution, may block for quite a while), Index: TODO =================================================================== RCS file: /cvsroot/agd/server/TODO,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- TODO 21 Mar 2004 13:43:23 -0000 1.13 +++ TODO 21 Mar 2004 14:06:35 -0000 1.14 @@ -13,7 +13,7 @@ - inheritance - better error recovery for lpc.y ! arrays (T_ARRAY) - ! for(), foreach(), switch() + ! foreach(), switch() ! all of the operators (/doc/lpc/operators) - ',' - this takes some serious grammar-hacking - mixed type Index: BUGS =================================================================== RCS file: /cvsroot/agd/server/BUGS,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- BUGS 21 Mar 2004 13:26:17 -0000 1.7 +++ BUGS 21 Mar 2004 14:06:35 -0000 1.8 @@ -32,9 +32,5 @@ string s; s = s + "abc"; will result in "0abc" - - lexical tie-ins stay activated on errors: - while(abcdef) { } - break; continue; - Only gives errors for "undeclared identifier 'abcdef'", but not for the break and continue. - continue from here.. Index: ChangeLog =================================================================== RCS file: /cvsroot/agd/server/ChangeLog,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- ChangeLog 21 Mar 2004 13:26:17 -0000 1.13 +++ ChangeLog 21 Mar 2004 14:06:35 -0000 1.14 @@ -1,6 +1,7 @@ 0.0.2-3: ---------------------------------------------------------------------------- 2004-03-21 + * for() statement * added break; and continue; * new operators: ** (power), **= (x = x ** y) * debuglevel can now be set with option "-d=x", where x is a number. |