diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2011-02-02 11:44:25 -0800 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2011-02-02 11:44:25 -0800 |
commit | ee092f62caeae1acd088e2707fe15e18b992d17c (patch) | |
tree | a002983ec7742dd7eabe3e6e86ba17eb8b0c768a /deps/v8/src/factory.h | |
parent | f86ec1366f71f33f3b39b769238076ca898fc619 (diff) | |
download | node-ee092f62caeae1acd088e2707fe15e18b992d17c.tar.gz |
Upgrade V8 to 3.1.1
Diffstat (limited to 'deps/v8/src/factory.h')
-rw-r--r-- | deps/v8/src/factory.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/deps/v8/src/factory.h b/deps/v8/src/factory.h index a5e159123..ba2b181a3 100644 --- a/deps/v8/src/factory.h +++ b/deps/v8/src/factory.h @@ -365,6 +365,15 @@ class Factory : public AllStatic { Handle<SerializedScopeInfo> scope_info); static Handle<SharedFunctionInfo> NewSharedFunctionInfo(Handle<String> name); + static Handle<JSMessageObject> NewJSMessageObject( + Handle<String> type, + Handle<JSArray> arguments, + int start_position, + int end_position, + Handle<Object> script, + Handle<Object> stack_trace, + Handle<Object> stack_frames); + static Handle<NumberDictionary> DictionaryAtNumberPut( Handle<NumberDictionary>, uint32_t key, |