tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit f01a8276c03271ffc7cd0e4587c59cc847995ee0
parent 21911bcc053e1f7d2a411a461260f4eb99ee7c17
Author: Lando <lando@lando.test>
Date:   Fri, 19 Dec 2025 17:02:25 +0000

Bug 1989115: apply code formatting via Lando

# ignore-this-changeset

Diffstat:
Mjs/src/vm/Runtime.cpp | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/js/src/vm/Runtime.cpp b/js/src/vm/Runtime.cpp @@ -394,7 +394,8 @@ static bool InvokeInterruptCallbacks(JSContext* cx) { return stop; } -static bool HandleInterrupt(JSContext* cx, bool invokeCallback, bool oomStackTrace) { +static bool HandleInterrupt(JSContext* cx, bool invokeCallback, + bool oomStackTrace) { MOZ_ASSERT(!cx->zone()->isAtomsZone()); cx->runtime()->gc.gcIfRequested(); @@ -409,7 +410,8 @@ static bool HandleInterrupt(JSContext* cx, bool invokeCallback, bool oomStackTra cx->captureOOMStackTrace(); } - // Don't call the interrupt callback if we only interrupted for GC, Ion, or OOM. + // Don't call the interrupt callback if we only interrupted for GC, Ion, or + // OOM. if (!invokeCallback) { return true; }