just/src/parameter.rs

27 lines
749 B
Rust
Raw Normal View History

use crate::common::*;
2017-11-16 23:30:08 -08:00
/// A single function parameter
2017-11-16 23:30:08 -08:00
#[derive(PartialEq, Debug)]
pub(crate) struct Parameter<'src> {
/// The parameter name
pub(crate) name: Name<'src>,
/// Parameter is variadic
pub(crate) variadic: bool,
/// An optional default expression
pub(crate) default: Option<Expression<'src>>,
2017-11-16 23:30:08 -08:00
}
impl<'src> Display for Parameter<'src> {
fn fmt(&self, f: &mut Formatter) -> Result<(), fmt::Error> {
2017-11-16 23:30:08 -08:00
let color = Color::fmt(f);
if self.variadic {
write!(f, "{}", color.annotation().paint("+"))?;
}
write!(f, "{}", color.parameter().paint(self.name.lexeme()))?;
2017-11-16 23:30:08 -08:00
if let Some(ref default) = self.default {
write!(f, "={}", color.string().paint(&default.to_string()))?;
2017-11-16 23:30:08 -08:00
}
Ok(())
}
}