xquery-intellij-plugin icon indicating copy to clipboard operation
xquery-intellij-plugin copied to clipboard

Better forward recovery of variable/function declarations with missing variable/function keyword.

Open rhdunn opened this issue 6 years ago • 0 comments

Function-like declarations:

declare test() { ... };
               ^-------- Should not report an error, as an error has been reported.

Variable-like declarations:

declare test := 2;
        ^-------- Should not report an error, as an error has been reported.

declare $test := 2;
              ^-------- Should not report an error, as an error has been reported.

rhdunn avatar Nov 27 '18 17:11 rhdunn