From 452cb7a654e5b33315ee72321bd14d0abcc764da Mon Sep 17 00:00:00 2001 From: Ava Hahn Date: Tue, 28 Feb 2023 09:59:33 -0800 Subject: [PATCH] fix append func Signed-off-by: Ava Hahn --- src/stl/append.rs | 14 +++++++++----- tests/test_lib_append.rs | 18 ++++++++++++++++++ 2 files changed, 27 insertions(+), 5 deletions(-) diff --git a/src/stl/append.rs b/src/stl/append.rs index 1e46fa2..aacd72d 100644 --- a/src/stl/append.rs +++ b/src/stl/append.rs @@ -15,15 +15,19 @@ */ use crate::segment::{Ctr, Seg}; -use crate::sym::{SymTable}; +use crate::sym::SymTable; -// Some essential operations below pub fn append_callback (ast: &Seg, _syms: &mut SymTable) -> Result { - // if car is a list, append cdr - // otherwise create a list out of all arguments if let Ctr::Seg(ref s) = *ast.car { let mut temp = s.clone(); - temp.append(ast.cdr.clone()); + if let Ctr::Seg(ref list) = *ast.cdr { + list.circuit(&mut |c: &Ctr| -> bool { + temp.append(Box::new(c.clone())); + true + }); + } else { + temp.append(Box::new(*ast.cdr.clone())); + } Ok(Ctr::Seg(temp)) } else { let mut temp = Seg::new(); diff --git a/tests/test_lib_append.rs b/tests/test_lib_append.rs index 236cffa..24f7591 100644 --- a/tests/test_lib_append.rs +++ b/tests/test_lib_append.rs @@ -20,6 +20,24 @@ mod append_lib_tests { } } + #[test] + fn test_multi_append_to_empty_list() { + let document = "(append () 1 'two' 3.4)"; + let result = "(1 'two' 3.4)"; + + let mut syms = SymTable::new(); + static_stdlib(&mut syms).unwrap(); + dynamic_stdlib(false, &mut syms).unwrap(); + + if let Ok(tree) = lex(&document.to_string()) { + if let Ctr::Seg(ref s) = *eval(&tree, &mut syms).unwrap() { + assert_eq!(s.to_string(), result); + } + } else { + assert!(false) + } + } + #[test] fn test_append_to_full_list() { let document = "(append (1 2) 3)";