From c6e4715032429de1cc6a09f8d02b7e8d7ae6b6ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A0=20Arrufat?= <1671644+arrufat@users.noreply.github.com> Date: Mon, 29 Jun 2026 08:05:05 +0200 Subject: [PATCH] script-runtime: use ArrayList Co-authored-by: Karl Seguin --- src/script/Runtime.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script/Runtime.zig b/src/script/Runtime.zig index b7c49e1d6..911b5d60a 100644 --- a/src/script/Runtime.zig +++ b/src/script/Runtime.zig @@ -43,7 +43,7 @@ console_data: [std.enums.values(ConsoleMethod).len]ConsoleData, /// of colliding with the indicator; the line still goes to stdout/stderr. console_observer: ?ConsoleObserver = null, /// In-flight async `goto`s; emptied before each `runSource` returns. -pending_gotos: std.ArrayListUnmanaged(PendingGoto), +pending_gotos: std.ArrayList(PendingGoto), /// Restarted per `runSource`; backs `PendingGoto.deadline_ms`. run_timer: std.time.Timer,