From: Timothy J. H. <tim...@us...> - 2002-04-06 22:38:08
|
Update of /cvsroot/jscheme/jscheme In directory usw-pr-cvs1:/tmp/cvs-serv19787 Modified Files: mainwebpage.html Log Message: tweaking website, testing CVS email notification |
From: Timothy J. H. <tim...@us...> - 2002-04-06 23:29:59
|
Update of /cvsroot/jscheme/jscheme/src/build In directory usw-pr-cvs1:/tmp/cvs-serv22639 Added Files: make-webapp make-webapp.bat Log Message: added script for creating jars for the jscheme webapp |
From: Timothy J. H. <tim...@us...> - 2002-04-08 16:44:25
|
Update of /cvsroot/jscheme/jscheme In directory usw-pr-cvs1:/tmp/cvs-serv12966 Modified Files: README Log Message: testing CVS |
From: Ken A. <kan...@us...> - 2002-04-08 22:01:22
|
Update of /cvsroot/jscheme/jscheme/src/build In directory usw-pr-cvs1:/tmp/cvs-serv14252 Modified Files: bootstrap.bat Log Message: Now works from toplevel directory. |
From: Ken A. <kan...@us...> - 2002-04-08 22:11:43
|
Update of /cvsroot/jscheme/jscheme/src/build In directory usw-pr-cvs1:/tmp/cvs-serv17853 Modified Files: bootstrap Log Message: Now works from toplevel directory. |
From: Ken A. <kan...@us...> - 2002-04-08 22:30:05
|
Update of /cvsroot/jscheme/jscheme/doc In directory usw-pr-cvs1:/tmp/cvs-serv20190 Modified Files: userman.html Log Message: Now works from toplevel directory. |
From: Timothy J. H. <tim...@us...> - 2002-04-13 15:12:27
|
Update of /cvsroot/jscheme/jscheme/doc In directory usw-pr-cvs1:/tmp/cvs-serv14173/doc Modified Files: javadot.html userman.html Log Message: added to documentation on using the compiler and fixed bug in jlib example |
From: Timothy J. H. <tim...@us...> - 2002-04-13 15:56:11
|
Update of /cvsroot/jscheme/jscheme/src/jscheme In directory usw-pr-cvs1:/tmp/cvs-serv25904/jscheme Modified Files: SchemeTests.scm Log Message: modified parser/printer so bytes, shorts, floats can be specified with b,s,f suffixes resp. Also, bytes,shorts,longs, and floats are now printed with a B,S,L,F respectively to indicate the value type Also, removed automatic type widenning/narrowing for numeric types as it complicates the dynamic method lookup |
From: Timothy H. <tim...@ma...> - 2002-04-13 16:29:19
|
We have removed the partial attempt we had made at adding automatic narrowing and widenning for numeric types in the dynamic dispatch of jscheme. The goal was to make it easy to use methods and fields whose types are numeric values that are not the default types (integer or double). We have opted instead to introduce new syntax for numeric literals so that bytes, shorts, ints, longs, floats, and doubles can all be expressed directly as literals and can be distinguished by their printed form. Thus the following is now legal Jscheme: > (Byte. 5b) 5B > (Byte. 5B) 5B > (Short. 7s) 7S > (Short. 7S) 7S > (Integer. 12) 12 > (Long. 4L) 4L > (Long. 4l) 4L > (Float. 5F) 5.0F > (Float. 5f) 5.0F > (Double 9.0) 9.0 Currently the arithmetic operators follow the java model and convert floats to doubles and bytes and shorts to ints before doing any arithmetic. Thus you must use (.byteValue N) (.shortValue N) or (.floatValue N) expressions of Numeric type to return values of type byte,short, or float . ---Tim--- |
From: Timothy J. H. <tim...@us...> - 2002-04-13 15:56:11
|
Update of /cvsroot/jscheme/jscheme/src/jsint In directory usw-pr-cvs1:/tmp/cvs-serv25904/jsint Modified Files: InputPort.java Invoke.java JavaField.java U.java Log Message: modified parser/printer so bytes, shorts, floats can be specified with b,s,f suffixes resp. Also, bytes,shorts,longs, and floats are now printed with a B,S,L,F respectively to indicate the value type Also, removed automatic type widenning/narrowing for numeric types as it complicates the dynamic method lookup |
From: Ken A. <kan...@us...> - 2002-04-20 00:03:39
|
Update of /cvsroot/jscheme/jscheme/src/jsint In directory usw-pr-cvs1:/tmp/cvs-serv453/src/jsint Modified Files: JavaMethod.java Listener.java Listener11.java Listener11swing.java Scheme.java Log Message: scheme-init.el more relistic example. SchemTests.scm Tests for bug found by Clint Hyde. JavaMethod.java Fix bug ound by Clint Hyde. Scheme.java Make an ARGS variable so that init.scm can control everything. Add a URL to the version. |
From: Ken A. <kan...@us...> - 2002-04-20 00:03:40
|
Update of /cvsroot/jscheme/jscheme/src/jscheme In directory usw-pr-cvs1:/tmp/cvs-serv453/src/jscheme Modified Files: SchemeTests.scm Log Message: scheme-init.el more relistic example. SchemTests.scm Tests for bug found by Clint Hyde. JavaMethod.java Fix bug ound by Clint Hyde. Scheme.java Make an ARGS variable so that init.scm can control everything. Add a URL to the version. |
From: Ken A. <kan...@us...> - 2002-04-20 00:03:42
|
Update of /cvsroot/jscheme/jscheme/src/emacs In directory usw-pr-cvs1:/tmp/cvs-serv453/src/emacs Modified Files: scheme-init.el Log Message: scheme-init.el more relistic example. SchemTests.scm Tests for bug found by Clint Hyde. JavaMethod.java Fix bug ound by Clint Hyde. Scheme.java Make an ARGS variable so that init.scm can control everything. Add a URL to the version. |
From: Ken A. <kan...@us...> - 2002-04-20 03:47:06
|
Update of /cvsroot/jscheme/jscheme/src/jscheme In directory usw-pr-cvs1:/tmp/cvs-serv19302/src/jscheme Modified Files: SchemeException.java Log Message: Remove the uninformative #null if there is no content. |
From: Ken A. <kan...@us...> - 2002-04-22 17:22:13
|
Update of /cvsroot/jscheme/jscheme/lib In directory usw-pr-cvs1:/tmp/cvs-serv17857 Modified Files: servlet.jar Log Message: Add -kb and new servlet.jar from Tomcat. |
From: Ken A. <kan...@us...> - 2002-04-23 15:00:59
|
Update of /cvsroot/jscheme/jscheme/src/elf In directory usw-pr-cvs1:/tmp/cvs-serv20980/src/elf Modified Files: classpath.scm html-gen.scm iterate.scm util.scm Log Message: Move filter crack separate and flatten, which i use all the time, to iterate.scm Redo how jscheme builds itself. |
From: Ken A. <kan...@us...> - 2002-04-23 15:00:59
|
Update of /cvsroot/jscheme/jscheme/src/jlib/demo In directory usw-pr-cvs1:/tmp/cvs-serv20980/src/jlib/demo Modified Files: ClassBrowser.scm Log Message: Move filter crack separate and flatten, which i use all the time, to iterate.scm Redo how jscheme builds itself. |
From: Ken A. <kan...@us...> - 2002-04-23 15:00:59
|
Update of /cvsroot/jscheme/jscheme/src/build In directory usw-pr-cvs1:/tmp/cvs-serv20980/src/build Modified Files: bootstrap bootstrap.bat bootstrap.scm compile.scm compiler-bootstrap.scm jscheme-bootstrap.scm Log Message: Move filter crack separate and flatten, which i use all the time, to iterate.scm Redo how jscheme builds itself. |
From: Ken A. <kan...@us...> - 2002-04-23 15:01:01
|
Update of /cvsroot/jscheme/jscheme/src/jsint In directory usw-pr-cvs1:/tmp/cvs-serv20980/src/jsint Modified Files: listener.scm primitives.scm Log Message: Move filter crack separate and flatten, which i use all the time, to iterate.scm Redo how jscheme builds itself. |
From: Ken A. <kan...@us...> - 2002-04-23 17:03:50
|
Update of /cvsroot/jscheme/jscheme/src/build In directory usw-pr-cvs1:/tmp/cvs-serv32342a/src/build Modified Files: bootstrap bootstrap.bat jscheme-bootstrap.scm Log Message: In REPL, mention enough classes so jscheme can build itself with the same two line bootstrap script. |
From: Ken A. <kan...@us...> - 2002-04-23 17:03:51
|
Update of /cvsroot/jscheme/jscheme/src/jsint In directory usw-pr-cvs1:/tmp/cvs-serv32342a/src/jsint Modified Files: Import.java Listener11swing.java listener.scm Log Message: In REPL, mention enough classes so jscheme can build itself with the same two line bootstrap script. |
From: Ken A. <kan...@us...> - 2002-04-23 17:03:51
|
Update of /cvsroot/jscheme/jscheme/src/jscheme In directory usw-pr-cvs1:/tmp/cvs-serv32342a/src/jscheme Modified Files: REPL.java Log Message: In REPL, mention enough classes so jscheme can build itself with the same two line bootstrap script. |
From: Ken A. <kan...@us...> - 2002-04-24 02:59:09
|
Update of /cvsroot/jscheme/jscheme/src/build In directory usw-pr-cvs1:/tmp/cvs-serv8424 Removed Files: compiler-bootstrap.scm Log Message: Removed. |
From: Ken A. <kan...@us...> - 2002-04-28 19:39:25
|
Update of /cvsroot/jscheme/jscheme/src/webapp/jscheme/WEB-INF/scheme In directory usw-pr-cvs1:/tmp/cvs-serv26756/src/webapp/jscheme/WEB-INF/scheme Modified Files: snlp.sss Log Message: Generate applet.jar and jscheme.jar |
From: Timothy J. H. <tim...@us...> - 2002-04-28 19:44:51
|
Update of /cvsroot/jscheme/jscheme/src/jlib/demo In directory usw-pr-cvs1:/tmp/cvs-serv16643 Modified Files: jschemeint.scm Log Message: used same front end as jsint/compiler/Compiler.scm for the interpreter |