mirror of
https://github.com/roc-lang/roc.git
synced 2025-07-16 02:55:00 +00:00

* Add `Num.[f32,f64,dec]_[to,from]_bits` builtins * Update mono tests * Deprecate `Num.[f32,f64]_[to,from]_parts`
56 lines
1.7 KiB
Text
Generated
56 lines
1.7 KiB
Text
Generated
procedure Inspect.273 (Inspect.274, Inspect.272):
|
|
let Inspect.313 : Str = CallByName Num.96 Inspect.272;
|
|
let Inspect.312 : Str = CallByName Inspect.63 Inspect.274 Inspect.313;
|
|
dec Inspect.313;
|
|
ret Inspect.312;
|
|
|
|
procedure Inspect.30 (Inspect.147):
|
|
ret Inspect.147;
|
|
|
|
procedure Inspect.33 (Inspect.152):
|
|
let Inspect.300 : Str = CallByName Inspect.5 Inspect.152;
|
|
let Inspect.299 : Str = CallByName Inspect.64 Inspect.300;
|
|
ret Inspect.299;
|
|
|
|
procedure Inspect.39 (Inspect.296):
|
|
let Inspect.306 : Str = "";
|
|
ret Inspect.306;
|
|
|
|
procedure Inspect.5 (Inspect.150):
|
|
let Inspect.307 : I64 = CallByName Inspect.57 Inspect.150;
|
|
let Inspect.304 : {} = Struct {};
|
|
let Inspect.303 : Str = CallByName Inspect.39 Inspect.304;
|
|
let Inspect.302 : Str = CallByName Inspect.273 Inspect.303 Inspect.307;
|
|
ret Inspect.302;
|
|
|
|
procedure Inspect.57 (Inspect.272):
|
|
let Inspect.308 : I64 = CallByName Inspect.30 Inspect.272;
|
|
ret Inspect.308;
|
|
|
|
procedure Inspect.63 (Inspect.295, Inspect.291):
|
|
let Inspect.315 : Str = CallByName Str.3 Inspect.295 Inspect.291;
|
|
ret Inspect.315;
|
|
|
|
procedure Inspect.64 (Inspect.297):
|
|
ret Inspect.297;
|
|
|
|
procedure Num.19 (#Attr.2, #Attr.3):
|
|
let Num.289 : I64 = lowlevel NumAdd #Attr.2 #Attr.3;
|
|
ret Num.289;
|
|
|
|
procedure Num.96 (#Attr.2):
|
|
let Num.290 : Str = lowlevel NumToStr #Attr.2;
|
|
ret Num.290;
|
|
|
|
procedure Str.3 (#Attr.2, #Attr.3):
|
|
let Str.388 : Str = lowlevel StrConcat #Attr.2 #Attr.3;
|
|
ret Str.388;
|
|
|
|
procedure Test.0 ():
|
|
let Test.4 : I64 = 1i64;
|
|
let Test.1 : I64 = 2i64;
|
|
let Test.2 : Str = CallByName Inspect.33 Test.1;
|
|
dbg Test.2;
|
|
dec Test.2;
|
|
let Test.3 : I64 = CallByName Num.19 Test.4 Test.1;
|
|
ret Test.3;
|