dicts are only 3 words on the stack

This commit is contained in:
Folkert 2021-02-20 04:16:09 +01:00
parent 951914c315
commit 1a39fa201c

View file

@ -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;