1
2
3
4
5
6
7
8
/// Source files (stored together with a name).
pub mod source_file;
/// Code spans (which reference to a source file)
pub mod span;

/// Character classes describe sets of characters
/// (with ranges, or actual sets, or logical relations between sets).
pub mod character_class;