pub fn expand_module<C: 'static + InterpreterContext>(
body: Vec<Gc<Value<C>>>,
env: &mut GcLinkedList<(Symbol, Gc<Value<C>>)>,
menv: &mut GcLinkedList<(Symbol, Gc<Value<C>>)>,
) -> Result<Vec<Gc<Value<C>>>, Either<C::RuntimeError, ConvertError<C>>>
Expand description
Performs macro-expansion on a module.