[fine] New parser usurps old parser

This commit is contained in:
John Doty 2024-01-05 11:22:45 -08:00
parent 120bd43652
commit 5cc9ecc398
6 changed files with 1433 additions and 1433 deletions

View file

@ -44,7 +44,7 @@ fn generate_test_for_file(path: PathBuf) -> String {
let name = format_ident!("{}", path.file_stem().unwrap().to_string_lossy());
let test_method = quote! {
fn #name() {
let (_tree, _lines) = fine::parser::concrete::parse_concrete(#contents);
let (_tree, _lines) = fine::parser::parse(#contents);
#concrete_comparison;
}
};