1 2 3 4 5 6 7 8 9 10 11 12 13
use crate::records::find_node::FindNode; use luaur_ast::records::position::Position; #[cfg(any())] impl FindNode { pub fn new(pos: Position, document_end: Position) -> Self { Self { pos, document_end, best: core::ptr::null_mut(), } } }