1 2 3 4 5 6 7 8 9
use crate::{ASTElement, AST}; impl AST { pub fn parser(input: &str) -> AST { AST { root: ASTElement::parser(input.trim()).1, } } }