sketch of StrToNum

This commit is contained in:
Folkert 2021-12-01 15:33:16 +01:00
parent d37ddeb162
commit 69fc1ad7e7
7 changed files with 60 additions and 0 deletions

View file

@ -38,6 +38,7 @@ pub fn decode_low_level<'a>(
StrEndsWith => return BuiltinCall(bitcode::STR_ENDS_WITH),
StrSplit => return NotImplemented, // needs Array
StrCountGraphemes => return NotImplemented, // test needs Array
StrToNum => return NotImplemented, // choose builtin based on storage size
StrFromInt => return NotImplemented, // choose builtin based on storage size
StrFromUtf8 => return NotImplemented, // needs Array
StrTrimLeft => return BuiltinCall(bitcode::STR_TRIM_LEFT),