duplicate_code 0.8.1

A tool for parsing directories scanning all the files within to find duplicate segments of code across files.
1
2
3
4
5
6
7
8
9
10
pub mod duplicate;
pub mod hashed_file;
pub mod indexed_file;
pub mod line_range;
pub mod raw_file;

pub type LineNumber = usize;
pub type Filename = String;
pub type Line = String;
pub type Lines = Vec<Line>;