You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you try to generate the follong lines of code :
IDENTIFICATION DIVISION.
PROGRAM-ID. TCOZBMX0.
data division.
working-storage section.
01 ErrorKey typedef strict publicPIC S9(5) COMP-5.
procedure division.
declareprocedure GetNode publicinput eKey type ErrorKeyoutput errNode pointer
rc type ReturnCode
.
procedure division.
goback
.
end-declare.
END PROGRAMTCOZBMX0.
You are getting the following error message :
Fail to decode the generate Cobol source code => The Generated Cobol document will not be updated!
The present problem seems to be linked to the fact that the typedef is writen in two lines and used as an argument of a procedure declaration.
If the typedef ErrorKey was written in one line or was a structured variable, the program would have generate itself correctly.
Expected behavior
The parser should be able to recognise that the typedef does continue on the following line.
The text was updated successfully, but these errors were encountered:
When you try to generate the follong lines of code :
You are getting the following error message :
The present problem seems to be linked to the fact that the typedef is writen in two lines and used as an argument of a procedure declaration.
If the typedef
ErrorKey
was written in one line or was a structured variable, the program would have generate itself correctly.Expected behavior
The parser should be able to recognise that the typedef does continue on the following line.
The text was updated successfully, but these errors were encountered: