use super::*; pub(crate) trait CommandExt { fn export( &mut self, settings: &Settings, dotenv: &BTreeMap, scope: &Scope, unexports: &HashSet, ); fn export_scope(&mut self, settings: &Settings, scope: &Scope, unexports: &HashSet); } impl CommandExt for Command { fn export( &mut self, settings: &Settings, dotenv: &BTreeMap, scope: &Scope, unexports: &HashSet, ) { for (name, value) in dotenv { self.env(name, value); } if let Some(parent) = scope.parent() { self.export_scope(settings, parent, unexports); } } fn export_scope(&mut self, settings: &Settings, scope: &Scope, unexports: &HashSet) { if let Some(parent) = scope.parent() { self.export_scope(settings, parent, unexports); } for unexport in unexports { self.env_remove(unexport); } for binding in scope.bindings() { if settings.export || binding.export { self.env(binding.name.lexeme(), &binding.value); } } } }