hoster 0.1.1

Small parser and lexer library for Hosts file format
Documentation
1
2
3
4
5
6
use crate::cst::CstNode;


pub trait CstVisitor {
    fn visit(&mut self, i: usize, node: &CstNode) -> Option<()>;
}