[pypy-commit] lang-js default: wip... compiles with jit

2012-12-28 Thread stepahn
Author: Stephan Branch: Changeset: r271:1783ca154ffd Date: 2012-08-03 17:41 +0200 http://bitbucket.org/pypy/lang-js/changeset/1783ca154ffd/ Log:wip... compiles with jit diff --git a/js/builtins_global.py b/js/builtins_global.py --- a/js/builtins_global.py +++ b/js/builtins_global.py @@ -88,

[pypy-commit] lang-js default: wip

2012-12-28 Thread stepahn
Author: Stephan Branch: Changeset: r270:4ef704b2d955 Date: 2012-07-29 00:11 +0200 http://bitbucket.org/pypy/lang-js/changeset/4ef704b2d955/ Log:wip diff --git a/js/bench/v8/v1/run.js b/js/bench/v8/v1/run.js --- a/js/bench/v8/v1/run.js +++ b/js/bench/v8/v1/run.js @@ -29,9 +29,9 @@ load('bas

[pypy-commit] lang-js default: wip

2012-12-28 Thread stepahn
Author: Stephan Branch: Changeset: r268:46fc449b38b2 Date: 2012-06-29 20:36 +0200 http://bitbucket.org/pypy/lang-js/changeset/46fc449b38b2/ Log:wip diff --git a/js/builtins.py b/js/builtins.py --- a/js/builtins.py +++ b/js/builtins.py @@ -12,9 +12,8 @@ from pypy.rlib import jit -def ne

[pypy-commit] lang-js default: wip

2012-12-28 Thread stepahn
Author: Stephan Branch: Changeset: r203:6c882d751d8b Date: 2012-05-22 16:34 +0200 http://bitbucket.org/pypy/lang-js/changeset/6c882d751d8b/ Log:wip diff --git a/js/jsobj.py b/js/jsobj.py --- a/js/jsobj.py +++ b/js/jsobj.py @@ -23,7 +23,6 @@ return self def ToObject(self): -

[pypy-commit] lang-js default: wip

2012-12-28 Thread stepahn
Author: Stephan Branch: Changeset: r202:085d0ac59e45 Date: 2012-05-22 15:20 +0200 http://bitbucket.org/pypy/lang-js/changeset/085d0ac59e45/ Log:wip diff --git a/js/astbuilder.py b/js/astbuilder.py --- a/js/astbuilder.py +++ b/js/astbuilder.py @@ -355,15 +355,18 @@ pos = self.get_po

[pypy-commit] lang-js default: wip

2012-12-28 Thread stepahn
Author: Stephan Branch: Changeset: r188:17080c32e143 Date: 2012-05-19 11:10 +0200 http://bitbucket.org/pypy/lang-js/changeset/17080c32e143/ Log:wip diff --git a/js/baseop.py b/js/baseop.py --- a/js/baseop.py +++ b/js/baseop.py @@ -189,7 +189,7 @@ r = x.ToNumber() == y.ToNumber()

[pypy-commit] lang-js default: wip

2012-12-28 Thread stepahn
Author: Stephan Branch: Changeset: r191:48038111f307 Date: 2012-05-21 12:04 +0200 http://bitbucket.org/pypy/lang-js/changeset/48038111f307/ Log:wip diff --git a/js/astbuilder.py b/js/astbuilder.py --- a/js/astbuilder.py +++ b/js/astbuilder.py @@ -683,6 +683,6 @@ def parse_to_ast(code):

[pypy-commit] lang-js default: wip

2012-12-28 Thread stepahn
Author: Stephan Branch: Changeset: r190:cdde097cbad2 Date: 2012-05-21 11:03 +0200 http://bitbucket.org/pypy/lang-js/changeset/cdde097cbad2/ Log:wip diff --git a/js/builtins_number.py b/js/builtins_number.py --- a/js/builtins_number.py +++ b/js/builtins_number.py @@ -76,6 +76,7 @@ elif

[pypy-commit] lang-js default: wip

2012-12-28 Thread stepahn
Author: Stephan Branch: Changeset: r183:6e2544c27edd Date: 2012-05-09 20:48 +0200 http://bitbucket.org/pypy/lang-js/changeset/6e2544c27edd/ Log:wip diff --git a/js/builtins_global.py b/js/builtins_global.py --- a/js/builtins_global.py +++ b/js/builtins_global.py @@ -104,7 +104,14 @@

[pypy-commit] lang-js default: wip

2012-12-28 Thread stepahn
Author: Stephan Branch: Changeset: r187:255df334ee16 Date: 2012-05-12 20:40 +0200 http://bitbucket.org/pypy/lang-js/changeset/255df334ee16/ Log:wip diff --git a/js/astbuilder.py b/js/astbuilder.py --- a/js/astbuilder.py +++ b/js/astbuilder.py @@ -8,98 +8,12 @@ def _get_root_map(): ret

[pypy-commit] lang-js default: wip

2012-12-28 Thread stepahn
Author: Stephan Branch: Changeset: r186:77f1751dd1f3 Date: 2012-05-10 15:24 +0200 http://bitbucket.org/pypy/lang-js/changeset/77f1751dd1f3/ Log:wip diff --git a/js/functions.py b/js/functions.py new file mode 100644 --- /dev/null +++ b/js/functions.py @@ -0,0 +1,241 @@ +from js.opcodes impo

[pypy-commit] lang-js default: wip

2012-12-28 Thread stepahn
Author: Stephan Branch: Changeset: r185:78c4a300e000 Date: 2012-05-10 15:24 +0200 http://bitbucket.org/pypy/lang-js/changeset/78c4a300e000/ Log:wip diff --git a/js/baseop.py b/js/baseop.py --- a/js/baseop.py +++ b/js/baseop.py @@ -215,17 +215,6 @@ return x == y -def commonnew(ctx,

[pypy-commit] lang-js default: wip

2012-12-28 Thread stepahn
Author: Stephan Branch: Changeset: r184:ef92b18137ba Date: 2012-05-09 23:15 +0200 http://bitbucket.org/pypy/lang-js/changeset/ef92b18137ba/ Log:wip diff --git a/js/execution.py b/js/execution.py --- a/js/execution.py +++ b/js/execution.py @@ -23,17 +23,24 @@ self.exception = except