0
I Use This!
Inactive

Commits : Listings

Analyzed about 19 hours ago. based on code collected about 24 hours ago.
Apr 24, 2023 — Apr 24, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Include testsrc/**.js and **.jstest files in distribution zip file. More... almost 13 years ago
Set prototype and parent scope for JavaAdapters extending ScriptableObject. More... almost 13 years ago
Fix JSON.parse() for negative index keys. More... about 13 years ago
Make JSON.parse use the same logic for property name to index conversion as object literals. This fixes cases like JSON.parse('{"00": 1}') or JSON.parse('{" ": 1}') where the key should not be converted to an index. See http://groups.google.com/group/mozilla-rhino/browse_frm/thread/5350e704b40d761d and bug #537483. More... about 13 years ago
Enable location info in errors when shell is run with -debug flag. More... about 13 years ago
Bump version string to 1.7R3 (dropping the "prerelease") More... about 13 years ago
Protect against endless loop caused by int overflow in ScriptableObject.readObject() More... about 13 years ago
Recommitting file to hopefully get it fixed More... about 13 years ago
Removing file with bogus version. More... about 13 years ago
Move missing test file. More... about 13 years ago
Move commonjs/module tests to o.m.j.tests, fix a few details to make sure they run properly - Rename Java test classes from *Tests to *Test to match ant file pattern - Update testRelativeId.js to no longer rely on module.id for relative require - Convert to Unix line breaks More... about 13 years ago
Move commonjs/module tests to o.m.j.tests, fix a few details to make sure they run properly - Rename Java test classes from *Tests to *Test to match ant file pattern - Update testRelativeId.js to no longer rely on module.id for relative require - Convert to Unix line breaks More... about 13 years ago
Add CommonJS module options to Rhino shell. More... about 13 years ago
Make CommonJS module implementation work with more real world code patterns. This includes loading modules outside the module path, replacing the exports object via module.exports, and lenient handling of module ids and file extensions. More... about 13 years ago
Convert to Unix line breaks. More... about 13 years ago
Allow keywords as proeprty identifiers. Fixes bug 423557. More... about 13 years ago
Allow use of reserved keywords as identifiers by default, following most modern JS engines. More... about 13 years ago
Unify indentation + minor fixes More... about 13 years ago
Fix redundant slot fetching and possible NullPointerException in ScriptableObject.checkValidPropertyDefinition() More... about 13 years ago
Improve regexp performance by avoiding conversion of input to char[]. More... about 13 years ago
Fix for source location in the error constructed by ScriptRuntime.throwError More... about 13 years ago
Add serialVersionUID to TopLevel class More... about 13 years ago
Fix formatting More... about 13 years ago
Optimize hash performance on empty slots query More... about 13 years ago
Significantly improve ScriptableObject hash performance Changes include: * Limit slot table size to powers of 2 so we can use bitwise and instead of modulo for index calculation * Remove optimizations that don't carry their weight anymore such as cachingn of last accessed property slot * Split up large methods like accessSlot, putImpl and getImpl into smaller pieces More... about 13 years ago
Patch for bug 637587 - Functionality of built-in classes is exposed to changes in global object More... about 13 years ago
Fix bug 630111 - Codegen optimizer fails with Unsupported major.minor version 0.0 on JDK7 More... about 13 years ago
Fix Bug 531600 - "while(true) continue;" will never trigger observeInstructionCount More... about 13 years ago
Fix bug 520545 - ScriptableObject.defineClass fails if method is defined both static and non-static More... about 13 years ago
Fix Bug 565361 - VariableDeclaration toSource missing semicolon More... about 13 years ago