added branch info and uniqueness check

This commit is contained in:
J.Teeuwissen 2023-06-18 20:00:15 +02:00
parent d10d71cdec
commit fdfa978ca8
No known key found for this signature in database
GPG key ID: DB5F7A1ED8D478AD
3 changed files with 45 additions and 14 deletions

View file

@ -1607,6 +1607,10 @@ pub enum BranchInfo<'a> {
scrutinee: Symbol,
len: u64,
},
Unique {
scrutinee: Symbol,
unique: bool,
},
}
impl<'a> BranchInfo<'a> {