use crate::nodes::InnerNode;
use crate::nodes::InspectVec;
use crate::Loc;
#[cfg(feature = "compile-with-external-structures")]
use crate::containers::ExternalMaybeLoc;
#[cfg(feature = "compile-with-external-structures")]
type MaybeLoc = ExternalMaybeLoc;
#[cfg(not(feature = "compile-with-external-structures"))]
type MaybeLoc = Option<Loc>;
#[cfg(feature = "compile-with-external-structures")]
use crate::containers::ExternalMaybeStringPtr;
#[cfg(feature = "compile-with-external-structures")]
type MaybeStringPtr = ExternalMaybeStringPtr;
#[cfg(not(feature = "compile-with-external-structures"))]
type MaybeStringPtr = Option<String>;
#[derive(Debug, Clone, PartialEq)]
#[repr(C)]
pub struct Kwrestarg {
pub name: MaybeStringPtr,
pub operator_l: Loc,
pub name_l: MaybeLoc,
pub expression_l: Loc,
}
impl InnerNode for Kwrestarg {
fn expression(&self) -> &Loc {
&self.expression_l
}
fn inspected_children(&self, indent: usize) -> Vec<String> {
let mut result = InspectVec::new(indent);
result.push_maybe_str(&self.name);
result.strings()
}
fn str_type(&self) -> &'static str {
"kwrestarg"
}
fn print_with_locs(&self) {
println!("{}", self.inspect(0));
self.operator_l.print("operator");
self.name_l.as_ref().map(|loc| loc.print("name"));
self.expression_l.print("expression");
}
}