File tree Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 15
15
},
16
16
"license" : " MIT" ,
17
17
"dependencies" : {
18
- "@abaplint/cli" : " ^2.113.119 " ,
18
+ "@abaplint/cli" : " ^2.113.123 " ,
19
19
"@abaplint/database-pg" : " ^2.10.24" ,
20
20
"@abaplint/database-sqlite" : " ^2.10.24" ,
21
- "@abaplint/runtime" : " ^2.10.55 " ,
22
- "@abaplint/transpiler-cli" : " ^2.10.55 " ,
21
+ "@abaplint/runtime" : " ^2.10.57 " ,
22
+ "@abaplint/transpiler-cli" : " ^2.10.57 " ,
23
23
"0x" : " ^5.8.0"
24
24
}
25
25
}
Original file line number Diff line number Diff line change @@ -11,14 +11,14 @@ CLASS cl_abap_conv_in_ce DEFINITION PUBLIC.
11
11
RETURNING
12
12
VALUE (ret ) TYPE REF TO cl_abap_conv_in_ce.
13
13
14
- CLASS-METHODS
15
- uccpi
16
- IMPORTING
17
- value TYPE i
18
- RETURNING
19
- VALUE (ret ) TYPE string .
20
-
21
14
TYPES ty_char2 TYPE c LENGTH 2 .
15
+
16
+ CLASS-METHODS uccpi
17
+ IMPORTING
18
+ uccp TYPE i
19
+ RETURNING
20
+ VALUE (char ) TYPE ty_char2.
21
+
22
22
CLASS-METHODS uccp
23
23
IMPORTING
24
24
uccp TYPE simple
@@ -81,7 +81,7 @@ CLASS cl_abap_conv_in_ce IMPLEMENTATION.
81
81
DATA lv_hex TYPE x LENGTH 2 .
82
82
DATA lo_in TYPE REF TO cl_abap_conv_in_ce.
83
83
84
- lv_hex = value .
84
+ lv_hex = uccp .
85
85
" switch to little endian
86
86
CONCATENATE lv_hex+1 (1 ) lv_hex(1 ) INTO lv_hex IN BYTE MODE .
87
87
@@ -91,7 +91,7 @@ CLASS cl_abap_conv_in_ce IMPLEMENTATION.
91
91
EXPORTING
92
92
input = lv_hex
93
93
IMPORTING
94
- data = ret ).
94
+ data = char ).
95
95
ENDMETHOD .
96
96
97
97
METHOD convert .
You can’t perform that action at this time.
0 commit comments