1use super::*; 2 3#[derive(Clone, PartialEq, Serialize, Deserialize)] 4pub struct Bool { 5 pub value: bool, 6 pub span: Span, 7} 8 9impl_node!(Bool);