Spidermonkey and JSC don't implement this function. How do they run the language shootout?
http://codereview.chromium.org/113810/diff/1/2 File src/d8.cc (right): http://codereview.chromium.org/113810/diff/1/2#newcode166 Line 166: Handle<Value> Shell::Write(const Arguments& args) { This duplicates code. I would change ::Print to call ::Write. http://codereview.chromium.org/113810/diff/1/2#newcode170 Line 170: if (first) { Simpler to use 'if (i == 0) ...' (::Print should have done the same). http://codereview.chromium.org/113810 --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
