diff options
author | Martok <martok@martoks-place.de> | 2022-07-01 12:53:23 +0200 |
---|---|---|
committer | Martok <martok@martoks-place.de> | 2022-07-01 20:25:01 +0200 |
commit | 4bf20fc91ed7517339f0cedec98ca2db6aff9f8f (patch) | |
tree | 0dc8779e78c9faf532535e112b44758fef3d8b4a /dom | |
parent | 2a10574d760200c3095b70595edec11e6002ad6a (diff) | |
download | uxp-4bf20fc91ed7517339f0cedec98ca2db6aff9f8f.tar.gz |
Issue #1952 - m-c 1383775: Clean up function toString/toSource code, remove remnants of source decompiler
Diffstat (limited to 'dom')
-rw-r--r-- | dom/bindings/BindingUtils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dom/bindings/BindingUtils.cpp b/dom/bindings/BindingUtils.cpp index 512b9f8173..879db27a49 100644 --- a/dom/bindings/BindingUtils.cpp +++ b/dom/bindings/BindingUtils.cpp @@ -682,7 +682,7 @@ DefineUnforgeableAttributes(JSContext* cx, JS::Handle<JSObject*> obj, // funToString ObjectOps member for interface objects. JSString* InterfaceObjectToString(JSContext* aCx, JS::Handle<JSObject*> aObject, - unsigned /* indent */) + bool /* isToSource */) { const js::Class* clasp = js::GetObjectClass(aObject); MOZ_ASSERT(IsDOMIfaceAndProtoClass(clasp)); |