Update of /cvsroot/agd/server
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29000
Modified Files:
BUGS ChangeLog NEWS TODO
Log Message:
Added break; and continue;
Index: NEWS
===================================================================
RCS file: /cvsroot/agd/server/NEWS,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- NEWS 21 Mar 2004 13:02:37 -0000 1.6
+++ NEWS 21 Mar 2004 13:26:17 -0000 1.7
@@ -1,4 +1,5 @@
New things in this version (0.0.2-3) that you might find useful:
+ * break; and continue; statements
* New operators: **, **=
* New dfuns: query_ip, query_hostname (use with caution, may block for quite a while),
asctime.
Index: TODO
===================================================================
RCS file: /cvsroot/agd/server/TODO,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- TODO 21 Mar 2004 13:02:37 -0000 1.11
+++ TODO 21 Mar 2004 13:26:17 -0000 1.12
@@ -24,7 +24,6 @@
* !n
Need an intelligent parser for this.
- ! continue; and break;
- allow to define locals inside statements
like: create() { write("\n"); int i; i = 1; int j; j = 2; }
And maybe disable this with #pragma traditional-lpc ?
@@ -56,6 +55,7 @@
- mudlib:
/update command
- better logging system
+ - print time using strftime()
- log using lib's facilities (master::log()?)
- different prefixes have different debuglevels
- save to different files
Index: BUGS
===================================================================
RCS file: /cvsroot/agd/server/BUGS,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- BUGS 21 Mar 2004 10:37:02 -0000 1.6
+++ BUGS 21 Mar 2004 13:26:17 -0000 1.7
@@ -32,5 +32,9 @@
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.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- ChangeLog 21 Mar 2004 13:02:37 -0000 1.12
+++ ChangeLog 21 Mar 2004 13:26:17 -0000 1.13
@@ -1,6 +1,7 @@
0.0.2-3:
----------------------------------------------------------------------------
2004-03-21
+ * added break; and continue;
* new operators: ** (power), **= (x = x ** y)
* debuglevel can now be set with option "-d=x", where x is a number.
* fixed net_send(), was a stupid bug - always sent to this_player.
|