mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 13:59:08 +00:00
dicts are only 3 words on the stack
This commit is contained in:
parent
951914c315
commit
1a39fa201c
1 changed files with 1 additions and 1 deletions
|
@ -877,7 +877,7 @@ impl<'a> Builtin<'a> {
|
|||
|
||||
/// Number of machine words in an empty one of these
|
||||
pub const STR_WORDS: u32 = 2;
|
||||
pub const DICT_WORDS: u32 = 6;
|
||||
pub const DICT_WORDS: u32 = 3;
|
||||
pub const SET_WORDS: u32 = Builtin::DICT_WORDS; // Set is an alias for Dict with {} for value
|
||||
pub const LIST_WORDS: u32 = 2;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue