Lines Matching defs:printer
2 This module provides a regular expression printer for `Ast`.
10 /// A builder for constructing a printer.
12 /// Note that since a printer doesn't have any configuration knobs, this type
35 /// A printer for a regular expression abstract syntax tree.
37 /// A printer converts an abstract syntax tree (AST) to a regular expression
38 /// pattern string. This particular printer uses constant stack space and heap
41 /// This printer will not necessarily preserve the original formatting of the
50 /// Create a new printer.
413 let mut printer = Printer::new();
415 printer.print(&ast, &mut dst).unwrap();