sexpr_parse
Parser for S-expressions.
Reads a string and parses it into S-expressions of either nodes, atoms, or text.
This crate is specifically designed to parse the S-expressions generated by SpecTec, and it has not been tested on other forms of S-expressions.
Usage
let input = r#"(typ "m" (inst (alias nat)))"#;
let sexprs = parse_sexpr_stream.unwrap;
assert_eq!;