BalticAmadeus / AblFormatter

Code formatter for Progress OpenEdge (ABL)
Apache License 2.0
5 stars 0 forks source link

Wrong formatting with label #258

Closed PauliusKu closed 5 days ago

PauliusKu commented 3 weeks ago

Input:


define variable i as integer no-undo.

Loop:
for each Customer:
    message Customer.Id.
end.

Output:


define variable i as integer no-undo.

 Loop:for each Customer:
    message Customer.Id.
end.

Expected:


define variable i as integer no-undo.

Loop:
for each Customer:
    message Customer.Id.
end.