BBx-Kitchen / bbj-language-server

BBj Language Server
MIT License
6 stars 6 forks source link

The "next i" statement is marked as a syntax error if followed by blanks or comments in the same line #91

Open SebastianAdams opened 1 year ago

SebastianAdams commented 1 year ago

When the next i statement in the following snippet is followed by a blank space, a syntax error is shown. Removing the space, removes the error.

for i=0 to 10
    print "i: " + str(i)
next i