Luís Reis
Luís Reis
Esprima (correctly) rejects expressions like -1**2. However, expressions like (-1)**2 are valid but still rejected. This commit fixes this issue by identifying when the left operand is parenthesized. Fixes https://github.com/jquery/esprima/issues/1981
Added an unit test for a resolver bug that happens only on Windows (see https://github.com/icsharpcode/NRefactory/issues/359). Note that the resolver decides that precedent is of type `Task`, not `Task` **but only...
I've noticed https://github.com/icsharpcode/NRefactory/commit/813fe1d54bffa0cde66c1ea4acb8e81425072394 and I decided to investigate this problem. I've focused on `TestContinueWithUsingPrecedentTask`. After some debugging, I believe this problem is caused by two bugs: 1. The original AutoAsyncIssue...
The formatter does not seem to do anything with anonymous type creation. ``` csharp var anonymous = new { x = 1, y = 2, z = 3, w =...
I'm using FindReferences.FindReferencesInFile to find all (explicit) implementations of an interface member. Unfortunately, it's not working. I suspect member definitions are only matched if IsMemberMatch returns true and - at...
Combination of script.Remove/script.Link behaves differently in MonoDevelop than in NRefactory tests
First of all, I don't know if this belongs here on in the MonoDevelop bug tracker. When I was developing LockThisIssue, I encountered a bug that occurred in MonoDevelop when...
##### Description Swagger is generating a file with syntax errors when retrofit2 is used since v3.0.52. This seems to be caused by a duplicated if statement: ``` // 401/403 most...