| Index: src/factory.cc
|
| ===================================================================
|
| --- src/factory.cc (revision 6580)
|
| +++ src/factory.cc (working copy)
|
| @@ -755,6 +755,24 @@
|
| }
|
|
|
|
|
| +Handle<JSMessageObject> Factory::NewJSMessageObject(
|
| + Handle<String> type,
|
| + Handle<JSArray> arguments,
|
| + int start_position,
|
| + int end_position,
|
| + Handle<Object> script,
|
| + Handle<Object> stack_trace,
|
| + Handle<Object> stack_frames) {
|
| + CALL_HEAP_FUNCTION(Heap::AllocateJSMessageObject(*type,
|
| + *arguments,
|
| + start_position,
|
| + end_position,
|
| + *script,
|
| + *stack_trace,
|
| + *stack_frames),
|
| + JSMessageObject);
|
| +}
|
| +
|
| Handle<SharedFunctionInfo> Factory::NewSharedFunctionInfo(Handle<String> name) {
|
| CALL_HEAP_FUNCTION(Heap::AllocateSharedFunctionInfo(*name),
|
| SharedFunctionInfo);
|
|
|