You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Write cookie attributes one value per call in stringify (#1350)
* Write cookie attributes one value per call in stringify
Base's varargs write(io, x1, xs...) iterates a heterogeneous tuple and
dispatches each element dynamically, which juliac --trim=safe cannot
statically resolve. Cookie stringify used it in four places; writing one
value per call is byte-identical in output and compiles to direct calls.
The server-side Request rebuild half of this work already landed via
#1349. Found trimming a Servo app on Julia nightly (JuliaCon 2026
workshop); together with #1349 this clears the last HTTP-owned verify
errors there.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
* test: cover cookie stringify in trim builds
---------
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
0 commit comments