1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
use crate::common::*;

#[derive(Debug)]
pub(crate) enum Setting<'src> {
  Shell(Shell<'src>),
}

#[derive(Debug, PartialEq)]
pub(crate) struct Shell<'src> {
  pub(crate) command:   StringLiteral<'src>,
  pub(crate) arguments: Vec<StringLiteral<'src>>,
}