mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-08-09 13:28:19 +00:00
Introduce Salsa enums
They are of the form: ``` enum Enum { Input(Input), Interned(Interned), ... } ```
This commit is contained in:
parent
6478406cd9
commit
6134aaf2b5
27 changed files with 722 additions and 184 deletions
|
@ -84,6 +84,12 @@ where
|
|||
|
||||
tracing::debug!("{database_key_index:?}: read_upgrade: result.revisions = {revisions:#?}");
|
||||
|
||||
self.insert_memo(zalsa, id, Memo::new(Some(value), revision_now, revisions))
|
||||
let memo_ingredient_index = self.memo_ingredient_index(zalsa, id);
|
||||
self.insert_memo(
|
||||
zalsa,
|
||||
id,
|
||||
Memo::new(Some(value), revision_now, revisions),
|
||||
memo_ingredient_index,
|
||||
)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue