1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//! Types that control how whitespace is trimmed.
use crate::parser::ast::Node;

/// State that indicates how whitespace should be trimmed
/// from the node being rendered.
#[derive(Clone, Copy, Default, Debug)]
pub struct TrimState {
    /// Whether the leading whitespace should be removed
    /// from the current output.
    pub start: bool,
    /// Whether the trailing whitespace should be removed
    /// from the current output.
    pub end: bool,
}

impl<'a> From<(&'a Node<'a>, &'a Node<'a>)> for TrimState {
    fn from(nodes: (&'a Node<'a>, &'a Node<'a>)) -> Self {
        let (previous, next) = nodes;
        Self {
            start: previous.trim().after,
            end: next.trim().before,
        }
    }
}

impl From<(bool, bool)> for TrimState {
    fn from(values: (bool, bool)) -> Self {
        Self {
            start: values.0,
            end: values.1,
        }
    }
}

/// Hint that indicates how whitespace should be trimmed
/// for nodes before and after the current node.
#[derive(Clone, Copy, Default, Debug)]
pub struct TrimHint {
    /// Whether the previous node should have trailing whitespace removed.
    pub before: bool,
    /// Whether the next node should have leading whitespace removed.
    pub after: bool,
}