| Index: src/v8natives.js
|
| diff --git a/src/v8natives.js b/src/v8natives.js
|
| index 9843635866323d5c5495edf0ffbdb9d12400f01e..0eb07090d0c5d44514ed765ae4b16ed214ee7e65 100644
|
| --- a/src/v8natives.js
|
| +++ b/src/v8natives.js
|
| @@ -1,4 +1,4 @@
|
| -// Copyright 2006-2008 the V8 project authors. All rights reserved.
|
| +// Copyright 2011 the V8 project authors. All rights reserved.
|
| // Redistribution and use in source and binary forms, with or without
|
| // modification, are permitted provided that the following conditions are
|
| // met:
|
| @@ -1415,7 +1415,9 @@ function FunctionSourceString(func) {
|
| }
|
| }
|
|
|
| - var name = %FunctionGetName(func);
|
| + var name = %FunctionNameShouldPrintAsAnonymous(func)
|
| + ? 'anonymous'
|
| + : %FunctionGetName(func);
|
| return 'function ' + name + source;
|
| }
|
|
|
| @@ -1510,7 +1512,7 @@ function NewFunction(arg1) { // length == 1
|
| // The call to SetNewFunctionAttributes will ensure the prototype
|
| // property of the resulting function is enumerable (ECMA262, 15.3.5.2).
|
| var f = %CompileString(source)();
|
| - %FunctionSetName(f, "anonymous");
|
| + %FunctionMarkNameShouldPrintAsAnonymous(f);
|
| return %SetNewFunctionAttributes(f);
|
| }
|
|
|
|
|