File tree Expand file tree Collapse file tree 2 files changed +21
-2
lines changed Expand file tree Collapse file tree 2 files changed +21
-2
lines changed Original file line number Diff line number Diff line change 18
18
"@abaplint/cli" : " ^2.113.110" ,
19
19
"@abaplint/database-pg" : " ^2.10.24" ,
20
20
"@abaplint/database-sqlite" : " ^2.10.24" ,
21
- "@abaplint/runtime" : " ^2.10.48 " ,
22
- "@abaplint/transpiler-cli" : " ^2.10.48 " ,
21
+ "@abaplint/runtime" : " ^2.10.49 " ,
22
+ "@abaplint/transpiler-cli" : " ^2.10.49 " ,
23
23
"0x" : " ^5.8.0"
24
24
}
25
25
}
Original file line number Diff line number Diff line change
1
+ CLASS cl_conversion_exit_input DEFINITION PUBLIC .
2
+ PUBLIC SECTION .
3
+ CLASS-METHODS run .
4
+ ENDCLASS .
5
+
6
+ CLASS cl_conversion_exit_input IMPLEMENTATION .
7
+ METHOD run .
8
+ DATA lv_value TYPE c LENGTH 10 .
9
+
10
+ DO 500000 TIMES .
11
+ lv_value = '1' .
12
+ CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
13
+ EXPORTING
14
+ input = lv_value
15
+ IMPORTING
16
+ output = lv_value.
17
+ ENDDO .
18
+ ENDMETHOD .
19
+ ENDCLASS .
You can’t perform that action at this time.
0 commit comments