You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Optimize the memory structure of environments so that they use less heap space.
Currently, token variable environments are represented as scala Lists
containing Binding elements.
It is possible to reduce space overhead by making each Binding element instead
contain a pointer to an environment, using the Bindings directly as a linked
list structure.
This may increase code complexity in multiple places, especially those
involving closure creation. The reduction in heap usage may not be worth the
increase in complexity and the potential for errors.
Original issue reported on code.google.com by dkitc...@gmail.com on 16 Nov 2011 at 11:14
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
dkitc...@gmail.com
on 16 Nov 2011 at 11:14The text was updated successfully, but these errors were encountered: