File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ interface js-runtime {
14
14
instance-of : func (value : borrow <js-abi-value >, klass : borrow <js-abi-value >) -> bool ;
15
15
global-this : func () -> js-abi-value ;
16
16
int-to-js-number : func (value : s32 ) -> js-abi-value ;
17
- float-to-js-number : func (value : float64 ) -> js-abi-value ;
17
+ float-to-js-number : func (value : f64 ) -> js-abi-value ;
18
18
string-to-js-string : func (value : string ) -> js-abi-value ;
19
19
bool-to-js-bool : func (value : bool ) -> js-abi-value ;
20
20
proc-to-js-function : func () -> js-abi-value ;
@@ -23,7 +23,7 @@ interface js-runtime {
23
23
js-value-to-string : func (value : borrow <js-abi-value >) -> string ;
24
24
25
25
variant raw-integer {
26
- as-float (float64 ),
26
+ as-float (f64 ),
27
27
bignum (string ),
28
28
}
29
29
You can’t perform that action at this time.
0 commit comments