Another solution that should work is to use the "rhino_1_8" git branch
(without -opt -1).
https://github.com/mozilla/rhino/tree/rhino_1_8
That branch is able to split up very long object literals into
multiple java methods to circumvent the 64k java method size limit.
I've implemented this for coffeescript which had same problem and now
works in compiled mode on rhino_1_8.
Of course it might still fail for you if you really have one huge
object literal (versus one that is composed of multiple nested
object/array literals). If you try please let me know if it works!
Hannes
2012/2/3 Jacob Beard <jbe...@cs.mcgill.ca>:
Thanks again,
Jake