Closed gustason closed 2 months ago
For example, in the code
PROCEDURE testCase: DEFINE VARIABLE i AS INTEGER NO-UNDO. i = 2. CASE i: WHEN 1 THEN DO: MESSAGE "Case 1". END. OTHERWISE MESSAGE "No match found". END CASE. END PROCEDURE.
The block
DO: MESSAGE "Case 1". END.
is additionally parsed as a body:
https://github.com/usagi-coffee/tree-sitter-abl/issues/69
For example, in the code
The block
is additionally parsed as a body: