Benjamin Collard

Results 10 issues of 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...

Bug
Enhancement
TypeCobol
Functions
User Visible

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...

Bug
TypeCobol
Functions
User Visible

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....

Bug
TypeCobol
User Visible

```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...

Bug
Enhancement
TypeCobol
User Visible

### 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) -...

Enhancement
Functions
Types
User Visible

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...

Bug
TypeCobol
Types
::
User Visible

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...

Bug
TypeCobol
Types
User Visible

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...

Enhancement
rfc
Language Server Protocol

Idea from @reydelpa is to sort completion list items by relevance.

Enhancement
Editor
rfc
User Visible
Language Server Protocol

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...

Enhancement
TypeCobol
Types
User Visible