diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2010-04-23 12:05:36 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2010-04-23 12:05:36 -0700 |
commit | e72b7b8002c487d32f3a651687acca13f2009b99 (patch) | |
tree | 81a6aacbf385709a83cd095c04ec7ba44bb754bc /deps/v8/src/factory.h | |
parent | 7a34afba773a09c7862759872905657ec9629351 (diff) | |
download | node-new-e72b7b8002c487d32f3a651687acca13f2009b99.tar.gz |
Upgrade V8 to 2.2.4.2
Diffstat (limited to 'deps/v8/src/factory.h')
-rw-r--r-- | deps/v8/src/factory.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/deps/v8/src/factory.h b/deps/v8/src/factory.h index 4307289dbd..0f2ae86b56 100644 --- a/deps/v8/src/factory.h +++ b/deps/v8/src/factory.h @@ -47,7 +47,9 @@ class Factory : public AllStatic { PretenureFlag pretenure = NOT_TENURED); // Allocate a new fixed array with non-existing entries (the hole). - static Handle<FixedArray> NewFixedArrayWithHoles(int size); + static Handle<FixedArray> NewFixedArrayWithHoles( + int size, + PretenureFlag pretenure = NOT_TENURED); static Handle<NumberDictionary> NewNumberDictionary(int at_least_space_for); |