1use super::*; 2 3#[derive(Clone, PartialEq, Serialize, Deserialize)] 4pub struct Int { 5 pub value: String, 6 pub type_: Option<ScalarType>, 7 pub span: Span, 8} 9 10impl_node!(Int);