1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
//! Defines how rules can process and mutate Lua nodes.

#[cfg(test)]
mod node_counter;
mod node_processor;
mod visitors;

#[cfg(test)]
pub use node_counter::NodeCounter;
pub use node_processor::NodeProcessor;
pub use visitors::{DefaultVisitor, NodeVisitor};