Chromium Code Reviews| Index: src/debug.cc |
| =================================================================== |
| --- src/debug.cc (revision 9511) |
| +++ src/debug.cc (working copy) |
| @@ -2158,8 +2158,8 @@ |
| const int argc = 3; |
| Object** argv[argc] = { exec_state.location(), |
| exception.location(), |
| - uncaught ? factory->true_value().location() : |
| - factory->false_value().location()}; |
| + reinterpret_cast<Object**>(uncaught ? factory->true_value().location() : |
|
Vyacheslav Egorov (Chromium)
2011/10/04 11:00:51
line is too long, also consider making Factory::To
fschneider
2011/10/04 11:28:16
Done.
|
| + factory->false_value().location())}; |
| return MakeJSObject(CStrVector("MakeExceptionEvent"), |
| argc, argv, caught_exception); |
| } |
| @@ -2185,8 +2185,8 @@ |
| const int argc = 3; |
| Object** argv[argc] = { exec_state.location(), |
| script_wrapper.location(), |
| - before ? factory->true_value().location() : |
| - factory->false_value().location() }; |
| + reinterpret_cast<Object**>(before ? factory->true_value().location() : |
|
Vyacheslav Egorov (Chromium)
2011/10/04 11:00:51
line is too long, also consider making Factory::To
fschneider
2011/10/04 11:28:16
Done.
|
| + factory->false_value().location()) }; |
| return MakeJSObject(CStrVector("MakeCompileEvent"), |
| argc, |