started on Str.toNum

This commit is contained in:
Anton-4 2021-12-01 15:15:30 +01:00
parent 68e2701948
commit eaf4e57759
7 changed files with 29 additions and 0 deletions

View file

@ -22,6 +22,7 @@ pub enum LowLevel {
StrTrim,
StrTrimLeft,
StrTrimRight,
StrToNum,
ListLen,
ListGetUnsafe,
ListSet,
@ -194,6 +195,7 @@ impl LowLevel {
Symbol::STR_TRIM => Some(StrTrim),
Symbol::STR_TRIM_LEFT => Some(StrTrimLeft),
Symbol::STR_TRIM_RIGHT => Some(StrTrimRight),
Symbol::STR_TO_NUM => Some(StrToNum),
Symbol::LIST_LEN => Some(ListLen),
Symbol::LIST_GET => None,
Symbol::LIST_SET => None,