use crate::lexing::position::Position;
#[derive(Debug, Clone)]
pub struct BreakNode {
pub pos_start: Option<Position>,
pub pos_end: Option<Position>,
}
impl BreakNode {
pub fn new(pos_start: Option<Position>, pos_end: Option<Position>) -> Self {
Self {
pos_start,
pos_end,
}
}
}