[fine] Type checking bones

This commit is contained in:
John Doty 2024-01-05 14:59:48 -08:00
parent 5cc9ecc398
commit c0f40aa512
6 changed files with 613 additions and 3 deletions

View file

@ -1,4 +1,5 @@
use fine::parser::SyntaxTree;
use fine::tokens::Lines;
use pretty_assertions::assert_eq;
fn rebase_concrete(source_path: &str, dump: &str) {
@ -83,4 +84,13 @@ fn assert_concrete(tree: &SyntaxTree, expected: &str, source_path: &str) {
}
}
fn assert_type_at(
_tree: &SyntaxTree,
_lines: &Lines,
_pos: usize,
_expected: &str,
_source_path: &str,
) {
}
include!(concat!(env!("OUT_DIR"), "/generated_tests.rs"));