fix: smallest type selection

This commit is contained in:
Shunsuke Shibayama 2023-04-01 08:58:30 +09:00
parent b0959b13e7
commit 7c9970f140
7 changed files with 141 additions and 94 deletions

View file

@ -353,6 +353,8 @@ const OP_NEG: &str = "__neg__";
const FUNDAMENTAL_CALL: &str = "__call__";
const FUNDAMENTAL_NAME: &str = "__name__";
const FUNDAMENTAL_STR: &str = "__str__";
const FUNDAMENTAL_HASH: &str = "__hash__";
const FUNDAMENTAL_INT: &str = "__int__";
const FUNDAMENTAL_ITER: &str = "__iter__";
const FUNDAMENTAL_MODULE: &str = "__module__";
const FUNDAMENTAL_SIZEOF: &str = "__sizeof__";