Vlad Zarytovskii
Vlad Zarytovskii
We have a test crashing with `StackOverlowException` on `macOS`: https://github.com/dotnet/fsharp/pull/13097 ([Logs](https://dev.azure.com/dnceng/public/_build/results?buildId=1753677&view=logs&j=7bab896a-24f8-544f-51eb-43745367a332&t=999dbed9-85e3-59ab-57f0-3e22828b5bad&l=2361)) In this test (it already has a comment, that it crashes with SO): https://github.com/dotnet/fsharp/blob/7de9637f8d7839c2312748dcbbabb4cda7455548/tests/FSharp.Compiler.ComponentTests/Conformance/RecordTypes/RecordTypes.fs#L29-L35 [Test file](https://github.com/dotnet/fsharp/blob/main/tests/FSharp.Compiler.ComponentTests/Conformance/RecordTypes/BigRecord01.fs) ```log The active...
**DISCLAIMER:** Please, don't try reproducing it on your VS 17.4+ instance, since you will likely have a broken colouring till the fix is released. When resetting fonts and colors to...
Hey folks, we wanted to share our current work streams for the team. We will still be logging each month's work items in a separate issue: 1. Repository management, bug...
We need to: - Revisit packages we use, update what we can to the latest versions. - Clean up packages we do not use anymore - For example: Since we...
Just testing the waters here, not entirely sure it's a good idea yet, maybe we should stick with some custom task to check the cache validity. Parser and lexer outputs...
## Description This is an attempt (timebox really) to improve https://github.com/dotnet/fsharp/issues/15669 by using unloadable ALC, if anyone wants to help testing it, it will be appreciated. Fixes #15669 ## Checklist...
printf and sprintf rely quite heavily on reflection when providing support for %A item formatting. And it is quite a chunk of FSharp.Core We would like to remove that dependence...
## Description Implements https://github.com/fsharp/fslang-suggestions/issues/1323, still missing couple of pieces + I don't like how trait info is constructed for members (with `get_` and `set_`) for "property-looking" accessors. ## Checklist -...
Given the following code: ```fsharp open System [] type Option x | None -> raise (new InvalidOperationException("Option.Value")) static member None : Option