use crate::nodes::InnerNode;
use crate::nodes::InspectVec;
use crate::source::Range;
#[derive(Debug, Clone, PartialEq)]
pub struct Float {
pub value: String,
pub operator_l: Option<Range>,
pub expression_l: Range,
}
impl InnerNode for Float {
fn expression(&self) -> &Range {
&self.expression_l
}
fn inspected_children(&self, indent: usize) -> Vec<String> {
let mut result = InspectVec::new(indent);
result.push_str(&self.value);
result.strings()
}
fn str_type(&self) -> &'static str {
"float"
}
fn print_with_locs(&self) {
println!("{}", self.inspect(0));
self.expression_l.print("expression");
if let Some(range) = &self.operator_l {
range.print("operator");
}
}
}