tree-sitter / tree-sitter-c-sharp

C# Grammar for tree-sitter

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Incorrect precedence between switch and multiplication

Sjord opened this issue · comments

        var b = 2 * a switch
        {
            1 => 1,
            _ => 0,
        };

Expected: 2 * (a switch ...)
Actual: (2 * a) switch ...