From: Keith J. <bu...@us...> - 2003-08-07 17:10:00
|
Update of /cvsroot/cup-language/cup/doc In directory sc8-pr-cvs1:/tmp/cvs-serv24091/cup/doc Modified Files: TODO Log Message: Added != (NEQ) and == (EQ). Also finished NOT opcode. Index: TODO =================================================================== RCS file: /cvsroot/cup-language/cup/doc/TODO,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** TODO 23 Aug 2002 20:10:50 -0000 1.4 --- TODO 7 Aug 2003 17:09:56 -0000 1.5 *************** *** 17,21 **** * Indexing l[1] == 1, d["Bob"] == 28752 * Ranging l[1:2] == [1, "doh"], l[:2] == [1, "doh"], l[3:] == [1, 4.5] ! * > < >= <= == != ++ -- * Compile debug info * 'compress' data section (no duplicates): --- 17,21 ---- * Indexing l[1] == 1, d["Bob"] == 28752 * Ranging l[1:2] == [1, "doh"], l[:2] == [1, "doh"], l[3:] == [1, 4.5] ! * > < >= <= ++ -- * Compile debug info * 'compress' data section (no duplicates): *************** *** 47,56 **** * Existing opcodes to complete: ! JMPF/JMPT SET ! ADD/SUB/MUL/DIV/MOD/NEG/NOT EQ * Implement new opcodes for new language functionality (ranges, lists, etc) - * API adherance - 'Built in' functions - 'Built in' variables * parse and use debug info --- 47,52 ---- * Existing opcodes to complete: ! ADD/SUB/MUL/DIV/MOD/NEG * Implement new opcodes for new language functionality (ranges, lists, etc) * parse and use debug info *************** *** 61,63 **** * getopts library, handle long options * clean up windows install (add documentation to start menu, readme, ! instructions, etc) \ No newline at end of file --- 57,59 ---- * getopts library, handle long options * clean up windows install (add documentation to start menu, readme, ! instructions, etc) |