Tomas Leko

Results 17 comments of Tomas Leko

> > Can't we call the failing test(s) with `fableIgnore` so they're ignored from the JS test-runner? > > @ThisFunctionalTom, wouldn't this be an accepted solution? Yes, of course this...

@TysonMN Do you think it would be possible to use [trampoline](https://github.com/fable-compiler/Fable/blob/23df0e56af535818c8103cdb60f7eecaaa07b232/src/Fable.Transforms/MonadicTrampoline.fs) for TCO in fable? I think fable uses it for [async CE](https://github.com/fable-compiler/Fable/blob/2523793ecf8746db8f9c445df863f68e70edefb1/tests/Main/AsyncTests.fs#L326). We could still guard the implementation with...

I am on holidays this week. I hope I can find some time next week to look into it. On Wed, 14 Jun 2023, 19:57 François-David Collin, ***@***.***> wrote: >...

So, I had an idea how to remove all the dependencies of the framework version (by using `dotnet list package --include-transitive`). The load script generation part works but something strange...

> Hi Tom, > > I took a peek at your fork earlier today. And I have some open questions (also for @vzarytovskii): Reading other comments here I just realized...

I created the smallest repro in fable REPL: ```fsharp open System let actual = decimal -1I let expected = -1M printfn $"Actual: {actual} Expected: {expected}" ``` https://fable.io/repl/#?code=PTAEHUCcEsBcFNQGMD2ATRLKgDYoIZqj6gDO+AtgA46IBmkKFZ0GARvpALABQKV8AHagAygE9SCCr161YxJLACu+HKAC8oDEmgVVoALQBGAJKz48+AA8Bi+EU3GAsryoxBsOsIAkAIgCCiio4AFygAN74QaoAvqAAPAB8oACiNvB2aGHh1rYIaDG+MjxAA&html=Q&css=Q

I followed the rabbit into the hole and I believe that the problem is in `toDecimal` function in the BigInt.js file in fable-library. ```fsharp export function toDecimal(x) { const low...