Type Alias PreprocessorError

Source
pub type PreprocessorError = Node<PreprocessorErrorData>;
Expand description

Type alias for Node<PreprocessorErrorData>.

Aliased Type§

struct PreprocessorError {
    pub content: PreprocessorErrorData,
    pub span: Option<NodeSpan>,
}

Fields§

§content: PreprocessorErrorData

Contents of this syntax node

§span: Option<NodeSpan>

Span in the input this node was parsed from

Trait Implementations§

Source§

impl Host for PreprocessorError

Source§

fn visit<V>(&self, visitor: &mut V)
where V: Visitor,

Visit an AST node.
Source§

impl HostMut for PreprocessorError

Source§

fn visit_mut<V>(&mut self, visitor: &mut V)
where V: VisitorMut,

Visit an AST node.