[pypy-commit] lang-js default: stack in ExecutionContext is virtualizable2

stepahn noreply at buildbot.pypy.org
Fri Dec 28 11:32:01 CET 2012


Author: Stephan <stephan at stzal.com>
Branch: 
Changeset: r106:beea1c49e2d7
Date: 2011-07-04 15:57 +0200
http://bitbucket.org/pypy/lang-js/changeset/beea1c49e2d7/

Log:	stack in ExecutionContext is virtualizable2

diff --git a/js/jsobj.py b/js/jsobj.py
--- a/js/jsobj.py
+++ b/js/jsobj.py
@@ -574,6 +574,7 @@
         return 'W_List(%s)' % (self.list_w,)
 
 class ExecutionContext(StackMixin):
+    _virtualizable2_ = ['stack[*]', 'stack_pointer']
     def __init__(self, scope, this=None, variable=None,
                     debug=False, jsproperty=None):
         assert scope is not None


More information about the pypy-commit mailing list