You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
445 B
20 lines
445 B
4 years ago
|
use super::expression::Expression;
|
||
|
use super::shell::Shell;
|
||
|
use std::fmt::Write;
|
||
|
use std::marker::PhantomData;
|
||
|
|
||
|
#[derive(Debug)]
|
||
|
pub(crate) struct Nothing<S: Shell> {
|
||
|
shell: PhantomData<S>,
|
||
|
}
|
||
|
|
||
|
pub(crate) fn empty_shell_script<S: Shell>(_s: &S) -> Nothing<S> {
|
||
|
Nothing { shell: PhantomData }
|
||
|
}
|
||
|
|
||
|
impl<S: Shell> Expression<S> for Nothing<S> {
|
||
|
fn write_shell(&self, _writer: &mut impl Write) -> std::fmt::Result {
|
||
|
Ok(())
|
||
|
}
|
||
|
}
|