valkyrie-ast 0.0.5

Strong typed abstract syntax tree of valkyrie language
Documentation
1
2
3
4
5
6
7
8
9
10
11
use super::*;

impl<E: Display> Display for GenericCall<E> {
    fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result {
        write!(f, "{}", self.base)?;
        write!(f, "")?;
        comma_terms(f, &self.terms)?;
        write!(f, "")?;
        Ok(())
    }
}