Status: New
Owner: ----

New issue 2229 by [email protected]: Inline array builtins
http://code.google.com/p/v8/issues/detail?id=2229

Could methods like

var res = array.map(function(x) { return x * 2; });

be inlined to

var _res = [];
for (var _i = 0; _i < array.length ; _i++) {
  _res[_i] = array[_i] * 2;
}
var res = _res;

?

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to