just 1.54.0

🤖 Just a command runner
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use super::*;

#[derive(Clone, PartialEq, Debug)]
pub(crate) struct DependencyArgument<'src> {
  pub(crate) expression: Expression<'src>,
  pub(crate) starred: bool,
}

impl Display for DependencyArgument<'_> {
  fn fmt(&self, f: &mut Formatter) -> fmt::Result {
    if self.starred {
      write!(f, "*")?;
    }
    write!(f, "{}", self.expression)
  }
}