First implementation moving over to the new exit matcher class system.

This commit is contained in:
Tom Alexander
2023-04-18 20:33:01 -04:00
parent fcd5c7d3cd
commit 35eff51d1b
8 changed files with 46 additions and 42 deletions

View File

@@ -1,10 +1,11 @@
#[derive(Debug, Copy, Clone)]
pub enum ExitClass {
/// Headlines and sections.
Document,
Document = 1,
/// Elements who take priority over beta elements when matching.
Alpha,
Alpha = 20,
/// Elements who cede priority to alpha elements when matching.
Beta,
Beta = 300,
}