Add derive key generation for record hashing

This commit is contained in:
Ayaz Hafiz 2022-10-04 14:35:33 -05:00
parent fd421c005d
commit ad4d98be9c
No known key found for this signature in database
GPG key ID: 0E2A37416A25EF58
3 changed files with 97 additions and 10 deletions

View file

@ -10,5 +10,7 @@ pub(crate) fn derive_hash(
key: FlatHashKey,
_def_symbol: Symbol,
) -> DerivedBody {
match key {}
match key {
FlatHashKey::Record(_) => todo!(),
}
}