0
I Use This!
Inactive

Commits : Listings

Analyzed about 4 hours ago. based on code collected about 6 hours ago.
Apr 17, 2023 — Apr 17, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Compiler update: Fixed rounding error in floating point constants by using ldc_2 instead of ldc2_w More... about 14 years ago
Compiler update: Compile float constants. They get rounded though! More... about 14 years ago
Compiler update: Call new instead of factory method when creating int and char It's a few more byte codes but will run faster. Seems cleaner too. More... about 14 years ago
Compiler update: Compile char constants More... about 14 years ago
Compiler update: Optimization: Removed "aconst_null; pop" sequence More... about 14 years ago
Compile update: Can now compile macros More... about 14 years ago
Added line number capture to JarcReader for better error messages. More... about 14 years ago
Compiler update. Can compile if and quote now. More... about 14 years ago
First cut a a compiler! Can compile (def h () (prn "hello")) !! More... about 14 years ago
Fix (coerce #\a 'int) More... about 14 years ago
Parse 0; correctly. More... about 14 years ago
Int and Float should auto-cast to double when calling Java Methods. More... about 14 years ago
Added support for Java objects of type 'byte[]' - needed to use ByteArrayOutputStream. More... about 14 years ago
Added timings to each page fetch in the logs. More... about 14 years ago
Don't hide the causedBy exception. Not that it matters much for these. More... about 14 years ago
Added sref and private Map so that request parameters can be overridden or added to with (= req!foo ...) This is useful for forwarding a request to another method after some preprocessing. More... about 14 years ago
Fixed sref to return the new value stored, not previous value or null More... about 14 years ago
each now works with any Collection, not just List More... about 14 years ago
Auto-coerce to Collection so Arc lists can be passed to any Java method that wants a Collection, like (new java.util.HashSet '(foo bar)) More... about 14 years ago
Added equals() and hashCode() so AbstractTable is comparable and hashable. More... about 14 years ago
Redefining message should go to stderr More... about 14 years ago
Jarc 9 release More... about 14 years ago
Removed 'intern'. Now that methods on java.lang.String automatically apply to Jarc strings, this method was overridden by java.lang.String.intern(). Fortunately, this routine is not needed. It's called "sym" in Arc, which already exists in Jarc also. More... about 14 years ago
Added include and autoinclude to jtml. JarcServlet now forwards requests with dot (.) in them to the default servlet (to handle static files). More... about 14 years ago
Servlet context isn't thread-specific, so don't make it thread local. More... about 14 years ago
Don't put CVS file into the src release zip file. More... about 14 years ago
Bumped to version 8! More... about 14 years ago
Make sure null gets mapped to nil on lookup. Make toString quote strings and any non Arc types (like Date). Added hashCode()! More... about 14 years ago
Finally added access to static fields! Also don't wrap JarcException in JarcError, let it bubble up so that (catch ...) works properly. More... about 14 years ago
Added hashCode(). Need hashCode() to work properly to a hash can be used a a key in another hash. More... about 14 years ago