MarkusAmshove / natls

Language Server implementation for the Natural 4GL programming language
MIT License
12 stars 3 forks source link

Add an analyzer for the code style of for-loop headers #481

Open MarkusAmshove opened 2 months ago

MarkusAmshove commented 2 months ago

Assignment of variable:

FOR #I := 1 FOR #I EQ 1 FOR #I FROM 1 FOR #I =1 FOR #I 1

Omitting of TO:

FOR #I := 1 10 FOR #I := 1 TO 10 FOR #I := 1 THRU 10

Omitting of STEP:

FOR #I := 1 TO 10 2 FOR #I := 1 TO 10 STEP 2