mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-02 20:42:49 +00:00
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:
parent
e249717235
commit
e3b569eaac
@ -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;
|
||||
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user