53
I Use This!
Moderate Activity

Commits : Listings

Analyzed about 24 hours ago. based on code collected 1 day ago.
Apr 18, 2023 — Apr 18, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Apparently the "classic" compiler is not only deprecated in JDK 1.4, but it also has a significant regression introduced in it. The default compiler not only works, but also is noticably faster. Ant takes care of the selection of the compiler automatically based on the JDK level, so the following patch should make things better all around. More... over 22 years ago
Remove deprecated class. More... over 22 years ago
Remove deprecated FlattenedObject. More... over 22 years ago
Fix 104493: More... over 22 years ago
Fix name of function in error message More... over 22 years ago
Fix for problem: More... over 22 years ago
Fix for the following problem: More... over 22 years ago
Patch from Igor: More... over 22 years ago
Fix bug: More... over 22 years ago
Patch from Igor: More... over 22 years ago
More javadoc More... over 22 years ago
Move serialization classes to separate package. More... over 22 years ago
Move serialization classes to new package. More... over 22 years ago
Move serialization files to separate package. More... over 22 years ago
Remove obsolete comment about serialization. More... over 22 years ago
Add new serialization API classes. More... over 22 years ago
Add docs for serialization. More... over 22 years ago
Remove obsolete files (perhaps re-added by mistake?) More... over 22 years ago
Patches from Igor: Note form omj/Parser.java: More... over 22 years ago
Patch from Igor: More... over 22 years ago
Add support for serialization and deserialization. More... over 22 years ago
Patch from Igor: More... over 22 years ago
Currently omj/TokenStream and omj/optimizer/Optimizer.java both contain code to convert number value to a wrapper object of smallest size. The attached patch moves this wrapping to Node constructor to avoid code duplication and eliminate special treatment of exact integers in Optimizer.java. More... over 22 years ago
Remove obsolete class. More... over 22 years ago
Fix bug: More... over 22 years ago
Patch from Igor: More... over 22 years ago
Patch from Igor: More... over 22 years ago
Patch from Igor: Currently Rhino source has quite a few places with code like (String)node.getDatum() or ((Number)node.getDatum()).doubleValue(). The patch changes this usage to call node.getString() or node.getDouble(). More... over 22 years ago
Patch from Igor: Currently in the interpreter mode all number literals are stored in InterpreterData.itsICode as an index to InterpreterData.itsNumberTable which holds the actual value. More... over 22 years ago
Patch from Igor: Hi, Norris! More... over 22 years ago