Fix to (115008). ECMA fix - revert to earlier behavior of decompiling

functions created with new Function as "function anonymous (...)".
Now only version 1.2 decompiles to the source for an anonymous
function.
This commit is contained in:
mccabe 1998-04-25 08:37:06 +00:00
parent e249717235
commit e3b569eaac
2 changed files with 8 additions and 6 deletions

View File

@ -1323,9 +1323,10 @@ Function(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
#endif
fun = js_NewFunction(cx, obj, NULL, 0, 0, parent,
(cx->version >= JSVERSION_1_2)
? NULL
: cx->runtime->atomState.anonymousAtom);
(JSVERSION_IS_ECMA(cx->version))
? cx->runtime->atomState.anonymousAtom
: NULL);
if (!fun)
return JS_FALSE;

View File

@ -1323,9 +1323,10 @@ Function(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
#endif
fun = js_NewFunction(cx, obj, NULL, 0, 0, parent,
(cx->version >= JSVERSION_1_2)
? NULL
: cx->runtime->atomState.anonymousAtom);
(JSVERSION_IS_ECMA(cx->version))
? cx->runtime->atomState.anonymousAtom
: NULL);
if (!fun)
return JS_FALSE;