Maxime Mangel
Maxime Mangel
For reference, are you saying that there is a bug when doing something like this? ```fs let myMap = Map.ofList [ {| Key = "1"|}, "Value 1" {| Key =...
@dbrattli I didn't try my example. My goal was to confirm with @PawelStadnicki if this was the code that caused problem to him. My message was unclear sorry. @PawelStadnicki Could...
Hello @gmono, We don't have a manual for this repository however, I made a F# Amplifying [session about it](https://amplifyingfsharp.io/sessions/2023-12-15/). I encourage you to watch it as I am giving a...
> Seems like one way to do it is to publish for .NET 8 I think it is more, you use .NET 8 SDK to build the package and publish...
> Maybe not changing jsx file at all in case of error instead of generating `throw 1`? The issue is that even if we try to not change a generated...
I tried to use https://github.com/SilkyFowl/SilkyFowl.Avalonia.FuncUI.LiveView.Demo but it did not work either. Perhaps, we need a specific version of Inonide to have the same Analyzer SDK version used. I also tried...
It looks like the issue happens when a CE exist in the code: ```fs let testCaseAsync f = async { do! f () } ``` or ```fs let testCaseAsync f...
Comparing the calls to `AddSourceMapping` https://github.com/fable-compiler/Fable/blob/935f05a00f77b1fe56c666acb44194d79126522c/src/Fable.Cli/Pipeline.fs#L152 It seems like the problem is from `do!` which don't return its information now: **Fable 4.24.0** ```text srcLine: 9 srcCol: 4 genLine: 4 genCol:...
This is normal for `4.26.0` because we upgraded the FCS in it similarly to Fable 5. It is unlisted and will not be fixed as people should not use that...
I don't know what is the cause of this issue unfortunately. We don't have the error happening in Fable 5 anymore because I made a hot fix: https://github.com/fable-compiler/Fable/blob/a9faaa03895169d62ff5d3032942e1a10ee746d1/src/Fable.Cli/Pipeline.fs#L164-L170 I think...