Re: Complete ECMAScript 5th edition implementation

2010-04-09 Thread David Herman
I think this discussion is getting off-topic. We're happy to have accepted your initial announcement, but this list is here to discuss the language standardization and design. Discussions relevant only to a specific implementation belong elsewhere. Regards, Dave On Apr 8, 2010, at 11:39 PM,

Re: Complete ECMAScript 5th edition implementation

2010-04-09 Thread Dmitry A. Soshnikov
On 09.04.2010 10:39, Benjamin Jan Alexander Rosseaux wrote: Dmitry A. Soshnikov schrieb: var x = 10; alert(delete x); // true, should be false (for [[Configurable]]) alert(x); // undefined But identifier resolution for x binding (which should be resolved in the global object since it isn't

Re: Complete ECMAScript 5th edition implementation

2010-04-08 Thread Benjamin Jan Alexander Rosseaux
I've moved BESEN to Sourceforge now, so the new URL is now http://besen.sourceforge.net/ for better 24/7 reachability of the sources. Benjamin ___ es-discuss mailing list es-discuss@mozilla.org https://mail.mozilla.org/listinfo/es-discuss

Complete ECMAScript 5th edition implementation

2010-04-07 Thread Benjamin Jan Alexander Rosseaux
Hello, I've implemented a complete ECMAScript 5th edition implementation with a Context-Threaded JIT, Subroutine-Call-Threaded-Fallback-Bytecode-Interpreter, Property Inline Caching, Constant Folding, Dead code elimination, Type inference, Incremental praise/exact mark-and-sweep garbage

Re: Complete ECMAScript 5th edition implementation

2010-04-07 Thread Mark S. Miller
On Wed, Apr 7, 2010 at 7:12 AM, Benjamin Jan Alexander Rosseaux benja...@rosseaux.de wrote: Hello, I've implemented a complete ECMAScript 5th edition implementation with a Context-Threaded JIT, Subroutine-Call-Threaded-Fallback-Bytecode-Interpreter, Property Inline Caching, Constant Folding

Re: Complete ECMAScript 5th edition implementation

2010-04-07 Thread Benjamin Jan Alexander Rosseaux
Mark S. Miller schrieb: Since it is open source, I have no objection to your posting the link. Please do. Okay good to know, the URL is http://vserver.rosseaux.net/projects/BESEN/ And my other question is, does exist an another ES5-feature-complete implementation already (for

Re: Complete ECMAScript 5th edition implementation

2010-04-07 Thread Brendan Eich
On Apr 7, 2010, at 8:52 AM, Benjamin Jan Alexander Rosseaux wrote: Mark S. Miller schrieb: Since it is open source, I have no objection to your posting the link. Please do. Okay good to know, the URL is http://vserver.rosseaux.net/projects/BESEN/ Hi Benjamin, Have you runt the ES5

Re: Complete ECMAScript 5th edition implementation

2010-04-07 Thread Benjamin Jan Alexander Rosseaux
Brendan Eich schrieb: Have you runt the ES5 tests yet? http://es5conform.codeplex.com/ Yeah I've fix bugs in BESEN in the last night now, so that BESEN passes mostly all bugfree testcases (against the ES5 final spec pdf checked) from this testset now, but some many testcases are buggy