script-runtime: use ArrayList

Co-authored-by: Karl Seguin <karlseguin@users.noreply.github.com>
This commit is contained in:
Adrià Arrufat
2026-06-29 08:05:05 +02:00
committed by GitHub
parent 023c3c25a7
commit c6e4715032

View File

@@ -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,