diff options
Diffstat (limited to 'js/src/jsapi.cpp')
-rw-r--r-- | js/src/jsapi.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/js/src/jsapi.cpp b/js/src/jsapi.cpp index 3901a0e63c..d16df26ba7 100644 --- a/js/src/jsapi.cpp +++ b/js/src/jsapi.cpp @@ -4438,7 +4438,7 @@ JS::CompileFunction(JSContext* cx, AutoObjectVector& envChain, } JS_PUBLIC_API(JSString*) -JS_DecompileScript(JSContext* cx, HandleScript script, const char* name, unsigned indent) +JS_DecompileScript(JSContext* cx, HandleScript script) { MOZ_ASSERT(!cx->runtime()->isAtomsCompartment(cx->compartment())); @@ -4447,7 +4447,7 @@ JS_DecompileScript(JSContext* cx, HandleScript script, const char* name, unsigne script->ensureNonLazyCanonicalFunction(); RootedFunction fun(cx, script->functionNonDelazifying()); if (fun) - return JS_DecompileFunction(cx, fun, indent); + return JS_DecompileFunction(cx, fun); bool haveSource = script->scriptSource()->hasSourceData(); if (!haveSource && !JSScript::loadSource(cx, script->scriptSource(), &haveSource)) return nullptr; @@ -4456,13 +4456,13 @@ JS_DecompileScript(JSContext* cx, HandleScript script, const char* name, unsigne } JS_PUBLIC_API(JSString*) -JS_DecompileFunction(JSContext* cx, HandleFunction fun, unsigned indent) +JS_DecompileFunction(JSContext* cx, HandleFunction fun) { MOZ_ASSERT(!cx->runtime()->isAtomsCompartment(cx->compartment())); AssertHeapIsIdle(cx); CHECK_REQUEST(cx); assertSameCompartment(cx, fun); - return FunctionToString(cx, fun, !(indent & JS_DONT_PRETTY_PRINT)); + return FunctionToString(cx, fun, /* isToSource = */ false); } MOZ_NEVER_INLINE static bool |