fixed the $0 parameter not being populated correctly

This commit is contained in:
2026-02-19 14:24:55 -05:00
parent c8fe7b7978
commit 4ea08879a1
12 changed files with 210 additions and 99 deletions

View File

@@ -263,7 +263,7 @@ impl DerefMut for IoFrame {
/// redirection
#[derive(Debug, Default)]
pub struct IoStack {
stack: Vec<IoFrame>,
pub stack: Vec<IoFrame>,
}
impl IoStack {