Chromium Code Reviews| Index: src/messages.cc |
| diff --git a/src/messages.cc b/src/messages.cc |
| index 432364919bacd6a9c20b1e1a4b012e2be54e9617..990000a32ea84aa4d605562912afb3440c871354 100644 |
| --- a/src/messages.cc |
| +++ b/src/messages.cc |
| @@ -69,10 +69,13 @@ Handle<JSMessageObject> MessageHandler::MakeMessageObject( |
| Handle<String> stack_trace, |
| Handle<JSArray> stack_frames) { |
| Handle<String> type_handle = Factory::LookupAsciiSymbol(type); |
| - Handle<JSArray> arguments_handle = Factory::NewJSArray(args.length()); |
| + Handle<FixedArray> arguments_elements = |
| + Factory::NewFixedArray(args.length()); |
| for (int i = 0; i < args.length(); i++) { |
| - SetElement(arguments_handle, i, args[i]); |
| + arguments_elements->set(i, *args[i]); |
| } |
| + Handle<JSArray> arguments_handle = |
| + Factory::NewJSArrayWithElements(arguments_elements); |
|
Lasse Reichstein
2011/02/08 14:17:56
Is this fixing anything, or is it just a rewrite?
antonm
2011/02/08 14:30:21
It can be omitted, I wrote about that in follow up
|
| int start = 0; |
| int end = 0; |
| @@ -87,7 +90,7 @@ Handle<JSMessageObject> MessageHandler::MakeMessageObject( |
| ? Factory::undefined_value() |
| : Handle<Object>::cast(stack_trace); |
| - Handle<Object> stack_frames_handle = stack_frames.is_null() |
| + Handle<Object> stack_frames_handle = stack_frames.is_null() |
| ? Factory::undefined_value() |
| : Handle<Object>::cast(stack_frames); |