neopragma/cobol-unit-test

Add the ability to parse multi-line file I/O statements

Opened this issue · 0 comments

Current implementation can handle

READ MY-FILE

but not

READ MY-FILE
    INTO MY-RECORD
    AT END
        SET EOF-FLAG TO TRUE
    NOT AT END
        PERFORM 2000-PROCESS-MY-RECORD
END-READ