Benjamin Collard
Benjamin Collard
```COBOL declare procedure Dump public input argPtr pointer argLen pic S9(9) COMP-5 . declare procedure Dump public input argPtr pointer argLen pic S9(4) COMP-5 . ``` Syntax error : A...
Using this code : ```COBOL DECLARE PROCEDURE MyProc PRIVATE INPUT myInt TYPE Integer OUTPUT myptr pointer. END-DECLARE. DECLARE PROCEDURE MyProc PRIVATE INPUT myBool TYPE Bool OUTPUT myptr pointer. END-DECLARE. CALL...
The code below creates an error on MyProc, only when POINTER is used and the other input parameters is not typed. ```COBOL DECLARE PROCEDURE MyProc PRIVATE INPUT myPtn POINTER. END-DECLARE....
```COBOL declare procedure ToSpan public input buf pic X(1) sz PIC S9(5) COMP-5 output fragment type Span . procedure division. set fragment::ptr to address of buf move sz to fragment::len...
### Description `shared`: Visible on a specified root namespace and its children Can be used on : - Type (declared in a program, nested, stacked or in a procedure) -...
The case is as following : We have one main Program like this : ```COBOL MAIN PROGRAM 01 myVar TYPE Dep1::DataType [...] MOVE myVar::Child1::DataChild::Branch TO ... ``` ```COBOL DEP1 PROGRAM...
We are facing a problem does not allow parser to seek for type inside a type contains in a dependencies file. What we need to do today, is to qualify...
It is not always necessary for the completion to suggest a fully qualified name. In certain case it's way too long. You may could add an option that makes the...
Idea from @reydelpa is to sort completion list items by relevance.
Example : ```cobol 01 MyGroup. 05 var1 PIC X(10). 05 var2 TYPE MyType. 05 var3 PIC X(10). 05 var4 PIC X(10). 01 finalVar RENAME var1 THROUGH var3. ``` var2 is...