Benjamin Collard
Benjamin Collard
Issue has been resolved thanks to issue #754 👍
Need to add a unit test for this issue
A non workingcase has been detected with Procedure call. Procedure have an input parameter like this param1 TYPE Span and the given argument when call is of type MyDepFile::Span..
## Dep. File ```COBOL 01 Span typedef strict public. 01 SpanArray typedef strict public. 05 span type Span. declare procedure ToSpan public input param1 pic X(1) output spanVar type Span....
Dep File : ```COBOL IDENTIFICATION DIVISION. PROGRAM-ID. IRLLBIRL. AUTHOR. REYDELPA. ENVIRONMENT DIVISION. CONFIGURATION SECTION. SPECIAL-NAMES. DECIMAL-POINT IS COMMA. DATA DIVISION. WORKING-STORAGE SECTION. 01 Irl TYPEDEF STRICT PUBLIC. 05 IsinCode PIC...
Also we could imagine something like this : ```cobol 01 SmallChar TYPEDEF STRICT PIC x(10). 01 var1 TYPE SmallChar. MOVE "Text" TO var1. ```
For now the following works: ```COBOL 01 Integer TYPEDEF STRICT PIC S9(9) COMP-5. 01 Myint TYPE Integer MOVE 1 TO Myint. ``` @reydelpa suggest that we should also be able...