Maxime Mangel

Results 1077 comments of Maxime Mangel

Hello @forki, I think you have this problem because of a bug in async prior to Fable [5.0.0-alpha.11](https://github.com/fable-compiler/Fable/releases/tag/5.0.0-alpha.11). Before that version, the exception inside of async were not propagated correctly....

I could back port the fix to Fable 4, would this work for you?

@forki Sorry took me sometime to make the release because of a bug with .NET 9 being available now... This issue should be fixed in Fable 4.25.0

That's strange perhaps I didn't back-port the complete fixes 🤔

I was taking a look again at this issue, and I think it is "normal" that Fable 4.25.0 didn't fix the issue reported by @forki. This is because 4.25.0 fixes...

It is also important to note that `[| .. |]` can lead to generated TypeArray like `Int32Array`. In general, for interop `ResizeArray` is recommended because you are guaranteed to get...

Coincidentally, we (F# community) are working on a similar project for F# APIs. I wanted to point it how, because it looks like DNDocs is considering that all package published...

It seems like the following works: ```cs [Import("create", "./js/fossilDelta.js")] [Inline("$import($origin, $target)")] public static byte[] Create(byte[] origin, byte[] target) { } ```

> I usually try to do minimal reproductions using the script [`master`/tests/WebSharper.Tests/ASTTests.fsx](https://github.com/dotnet-websharper/core/blob/master/tests/WebSharper.Tests/ASTTests.fsx?rgh-link-date=2025-10-20T13%3A21%3A24.000Z) > It needs some setup, run `./build WS-BuildRelease` first, then it should have all the references it needs...

@Jand42 I have a hard time trying to make a reproduction code. Would you be open to have a call together to try to diagnose the problem as you are...