Eugene Auduchinok
Eugene Auduchinok
We've got a conflict between two plugins and it wasn't discovered in tests due to the other plugin wasn't loaded (more info: [RIDER-21655](https://youtrack.jetbrains.com/issue/RIDER-21655)). Loading all bundled plugins in tests could...
I'm trying to open [Fantomas](https://github.com/fsprojects/fantomas) solution on a Mac with M1 processor, but restore fails like this: ``` eugene@Eugenes-Air:fantomas$ dotnet paket restore Failed to load /usr/local/share/dotnet/shared/Microsoft.NETCore.App/5.0.5/libhostpolicy.dylib, error: dlopen(/usr/local/share/dotnet/shared/Microsoft.NETCore.App/5.0.5/libhostpolicy.dylib, 0x0001): tried:...
```fsharp open System [] type CustomClassAttribute() = inherit Attribute() [] type CustomStructAttribute() = inherit Attribute() [] type CustomMethodAttribute() = inherit Attribute() [] type Class() = class end [] type Struct(x:...
```csharp [Obsolete("Class is obsolete")] public class ObsoleteClass { } ``` ```fsharp let c1: ObsoleteClass = null let c2 = ObsoleteClass() ``` Two warnings are expected, but only one is produced:...
```csharp public class Class { [Obsolete("Field is obsolete")] public static readonly int ObsoleteField = 1; [Obsolete("Method is obsolete")] public static void ObsoleteMethod() { } [Obsolete("Property is obsolete")] public static int...
Please add a set of helpers that would allow dumping F# syntax trees and tokens, i.e. results of running the compiler with `--ast` and `--tokenize` flags. That would significantly simplify...
Consider this F# code: ```fsharp type I = abstract M: param: outref -> unit type T() = interface I with member this.M(param) = failwith "todo" ``` The `param` parameter is...
Adds parser recovery for unfinished binary app expressions that have their right operand missing and that are placed before other declarations or before the end of file. End of file:...
Printers like `beforeEach` and `passed` accept test names which specify the tests. When using this technique it's not always possible to tell the tests apart, e.g. when tests don't have...
In [this outdated fork](https://github.com/darezik/BrightnessMenulet) it's actually able to change brightness, but in the current build in this repo it drops brightness to 0 on any change. Can I provide anything...