ssrmm
ssrmm
If the `BuildAction` property of a file is changed, the plugin doesn't notice that at all and a full project reload is required.
Synchronous requests should either return a response that indicates that the operation was not successful or be made asynchronous. Currently the calling thread is seemingly just blocked indefinitely and VS...
I noticed that the [old Milestone 3 page](https://confluence.jetbrains.com/display/Nitra/Milestone+3) has preprocessor support as one of the goals, while [the new one](https://github.com/rsdn/nitra/wiki/Milestone-3) does not. What happened to that? Is it something that's...
Currently [NitraCommonIde.dll](https://github.com/rsdn/nitra/blob/464d6fc76b72c4339c02da8281c6da2e1f1de8c7/Nitra.LanguageCompiler/Templates/XXLanguageFullNameXXVsPackage/Languages/NitraCommonIde.dll) must be updated manually. This should be automated. Se also #40
```Nemerle namespace Test { declaration Foo { symbol { out Bar : string; // error : Output dependent property 'Bar' is never assigned to. } Symbol.Bar = "Bar"; } }...
In the below example `Foo` is a mandatory element of the `Attribute` list. However in the test program it is not present. In the current implementation this causes `Foo` to...
The following code produces an assertion exception upon generation of the AST: ```Nemerle using Nitra; namespace Test { syntax module TestSyntax { using Nitra.Core; [StartRule] syntax Test = FooBar=("Foo" sm...
Despite being declared in the `when`-condition, the variable `Foo1` is not actually visible and the compiler produces an error message. This happens with `unless` as well. ```Nemerle using Nitra; namespace...
The compiler gives two error messages with this program: ```Nemerle using Nitra; namespace Test { ast Test { Error(context, "Extension methods inside interpolated strings don't work:"); Error(context, $"$(Foo.UnboxAndIncrement())"); // error...
This code produces an compilation error: ```C# namespace Test.Ast { ast Foo { in Test1 : string; in Test2 : string; in Test3 : string; Test1 = StringWrapper("Test").Attribute; Test2 =...