You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.NET9 added a new overload for the TimeSpan.FromSeconds which expects int64. This overload is missing from the library implementation. However, fable client code compilation doesn't fail. However, during runtime this message is generated by JS:
TypeError: can't convert BigInt to number
Repro code
TimeSpan.FromSeconds 1L
Expected and actual results
Expected: execute correctly
Actual: a JS exception is thrown
Related information
Fable version: 4.24.0
Operating system: MacOs, Linux
The text was updated successfully, but these errors were encountered:
Description
.NET9 added a new overload for the
TimeSpan.FromSeconds
which expectsint64
. This overload is missing from the library implementation. However, fable client code compilation doesn't fail. However, during runtime this message is generated by JS:Repro code
Expected and actual results
Expected: execute correctly
Actual: a JS exception is thrown
Related information
The text was updated successfully, but these errors were encountered: