valkyrie-ast 0.1.12

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

#[cfg(feature = "lispify")]
impl Lispify for ProgramRoot {
    type Output = Lisp;

    fn lispify(&self) -> Self::Output {
        todo!()
    }
}