Skip to content

Commit d4631ca

Browse files
authored
update npm dependencies (#909)
1 parent 7fbb766 commit d4631ca

File tree

3 files changed

+33
-6
lines changed

3 files changed

+33
-6
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
},
1414
"license": "MIT",
1515
"dependencies": {
16-
"@abaplint/cli": "^2.113.9",
17-
"@abaplint/database-sqlite": "^2.8.25",
18-
"@abaplint/runtime": "^2.10.19",
19-
"@abaplint/transpiler-cli": "^2.10.19",
16+
"@abaplint/cli": "^2.113.17",
17+
"@abaplint/database-sqlite": "^2.10.20",
18+
"@abaplint/runtime": "^2.10.20",
19+
"@abaplint/transpiler-cli": "^2.10.20",
2020
"0x": "^5.7.0"
2121
}
2222
}
Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,46 @@
11
CLASS cl_demo_output DEFINITION PUBLIC.
22
PUBLIC SECTION.
3+
INTERFACES if_demo_output.
4+
35
CLASS-METHODS write
46
IMPORTING
57
data TYPE any
68
name TYPE string OPTIONAL.
79

810
CLASS-METHODS clear.
911

12+
CLASS-METHODS new
13+
RETURNING
14+
VALUE(output) TYPE REF TO if_demo_output.
15+
1016
CLASS-METHODS display
1117
IMPORTING
12-
data TYPE any OPTIONAL
13-
name TYPE string OPTIONAL PREFERRED PARAMETER data.
18+
data TYPE any OPTIONAL
19+
name TYPE string OPTIONAL PREFERRED PARAMETER data.
1420
ENDCLASS.
1521

1622
CLASS cl_demo_output IMPLEMENTATION.
1723
METHOD write.
1824
ASSERT 1 = 'not supported'.
1925
ENDMETHOD.
2026

27+
METHOD if_demo_output~write.
28+
ASSERT 1 = 'not supported'.
29+
ENDMETHOD.
30+
31+
METHOD new.
32+
ASSERT 1 = 'not supported'.
33+
ENDMETHOD.
34+
2135
METHOD clear.
2236
ASSERT 1 = 'not supported'.
2337
ENDMETHOD.
2438

2539
METHOD display.
2640
ASSERT 1 = 'not supported'.
2741
ENDMETHOD.
42+
43+
METHOD if_demo_output~display.
44+
ASSERT 1 = 'not supported'.
45+
ENDMETHOD.
2846
ENDCLASS.

src/demo/if_demo_output.intf.abap

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
INTERFACE if_demo_output PUBLIC.
2+
3+
METHODS write
4+
IMPORTING
5+
data TYPE any.
6+
7+
METHODS display.
8+
9+
ENDINTERFACE.

0 commit comments

Comments
 (0)