Chromium Code Reviews| Index: src/runtime/runtime-function.cc |
| diff --git a/src/runtime/runtime-function.cc b/src/runtime/runtime-function.cc |
| index 757424df0cabdf911c2d551624f82c16de2b1017..fd55066823522824ce0e3b7d2c3e935e0cf72137 100644 |
| --- a/src/runtime/runtime-function.cc |
| +++ b/src/runtime/runtime-function.cc |
| @@ -39,7 +39,7 @@ RUNTIME_FUNCTION(Runtime_FunctionSetName) { |
| name = String::Flatten(name); |
| f->shared()->set_name(*name); |
| - return isolate->heap()->undefined_value(); |
| + return *f; |
|
adamk
2016/07/13 18:38:22
I think you won't need this change after you chang
neis
2016/07/14 10:28:24
Done.
|
| } |