Chromium Code Reviews| Index: src/v8natives.js |
| diff --git a/src/v8natives.js b/src/v8natives.js |
| index 00d8a88d7342222a04357665c0b4ae9f11c0501b..b75d760499466566647cc9407b347e99940185c5 100644 |
| --- a/src/v8natives.js |
| +++ b/src/v8natives.js |
| @@ -1767,7 +1767,10 @@ function FunctionSourceString(func) { |
| var name = %FunctionNameShouldPrintAsAnonymous(func) |
| ? 'anonymous' |
| : %FunctionGetName(func); |
| - var head = %FunctionIsGenerator(func) ? 'function* ' : 'function '; |
| + |
| + var head = %FunctionIsConciseMethod(func) |
| + ? '' |
|
rossberg
2014/08/22 09:34:31
Hm, does this need another case for IsConcise && I
arv (Not doing code reviews)
2014/08/22 23:16:02
Eventually. Adding a todo for now.
|
| + : %FunctionIsGenerator(func) ? 'function* ' : 'function '; |
| return head + name + source; |
| } |