Michał Ziemski
Michał Ziemski
What I meant is: %nonassoc OP %token ONE expr: | ONE | expr OP expr is bogus: an operator declared explicitely as non-assoc is uassed as an associative operator. The...
I understand it might be nice to be able to use %nonasoc this way but it would be a hard task requiring a lot of work. You'll have to provide...
Could you provide .output file from momlyacc? I'm curious how is the state machine generated.
I've done a bit of further digging and it seems you were right. The state machine that is currently being constructed is good enough and there is an easy way...
Makes sense I guess. The question is should this behaviour be preserverd. Firstly we cannot throw an exception on a wrongly used nonassoc if we try to recuperate. Secodnly if...
Simple repro: ` dotnet new classlib --name f --language f# && dotnet new console --name c && dotnet add c/c.csproj reference f/f.fsproj && dotnet new sln && dotnet sln add...
And the OmniSharp Log: ``` Starting OmniSharp server at 2017-11-8 15:22:25 Target: /mnt/code4/code4.sln OmniSharp server started wth Mono Path: /home/gleba/.vscode/extensions/ms-vscode.csharp-1.13.0/.omnisharp/run PID: 3558 [info]: OmniSharp.MSBuild.Discovery.MSBuildLocator Located 1 MSBuild instance(s) 1: StandAlone...
I can repro on both Fedora 26 and Windows 10.
I've done some digging on Linux. After installing mono 5.4 Omnisharp throws an error complaining it's unable to load Microsoft.Build.Framework & Microsoft.Build. I've pulled those (tried 15.1 and newest) from...
I've installed VS 2017 & build tools on Windows. However omnisharpd doesn't seem to find them. I've tried to set the MSBUILD_EXE_PATH variable but to no avail.