Skip to content

Commit b25e8ab

Browse files
authored
update npm dependencies (#951)
1 parent f938a66 commit b25e8ab

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
"@abaplint/cli": "^2.113.110",
1919
"@abaplint/database-pg": "^2.10.24",
2020
"@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",
2323
"0x": "^5.8.0"
2424
}
2525
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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.

0 commit comments

Comments
 (0)