Skip to content

Commit 377cb13

Browse files
authored
update npm dependencies (#962)
1 parent 5897370 commit 377cb13

File tree

4 files changed

+38
-6
lines changed

4 files changed

+38
-6
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
},
1616
"license": "MIT",
1717
"dependencies": {
18-
"@abaplint/cli": "^2.113.125",
18+
"@abaplint/cli": "^2.113.133",
1919
"@abaplint/database-pg": "^2.10.24",
2020
"@abaplint/database-sqlite": "^2.10.24",
21-
"@abaplint/runtime": "^2.10.58",
22-
"@abaplint/transpiler-cli": "^2.10.58",
21+
"@abaplint/runtime": "^2.10.61",
22+
"@abaplint/transpiler-cli": "^2.10.61",
2323
"0x": "^5.8.0"
2424
}
2525
}

src/demo/cl_demo_output.clas.abap

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,33 @@ CLASS cl_demo_output DEFINITION PUBLIC.
1717
IMPORTING
1818
data TYPE any OPTIONAL
1919
name TYPE string OPTIONAL PREFERRED PARAMETER data.
20+
21+
CLASS-METHODS display_html
22+
IMPORTING
23+
html TYPE csequence.
24+
25+
CLASS-METHODS display_text
26+
IMPORTING
27+
text TYPE clike.
28+
29+
CLASS-METHODS display_json
30+
IMPORTING
31+
json TYPE simple.
2032
ENDCLASS.
2133

2234
CLASS cl_demo_output IMPLEMENTATION.
35+
METHOD display_json.
36+
ASSERT 1 = 'not supported'.
37+
ENDMETHOD.
38+
39+
METHOD display_text.
40+
ASSERT 1 = 'not supported'.
41+
ENDMETHOD.
42+
43+
METHOD display_html.
44+
ASSERT 1 = 'not supported'.
45+
ENDMETHOD.
46+
2347
METHOD write.
2448
ASSERT 1 = 'not supported'.
2549
ENDMETHOD.

src/http/if_http_client.intf.abap

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,10 @@ INTERFACE if_http_client PUBLIC.
3838

3939
METHODS get_last_error
4040
EXPORTING
41-
code TYPE i
42-
message TYPE string.
41+
code TYPE sysubrc
42+
message TYPE string
43+
message_class TYPE t100-arbgb
44+
message_number TYPE t100-msgnr.
4345

4446
METHODS refresh_request.
4547

src/json/#ui2#cl_json.clas.abap

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,15 @@ CLASS /ui2/cl_json DEFINITION PUBLIC.
99
camel_case TYPE string VALUE 'camel_case',
1010
END OF pretty_mode.
1111

12-
TYPES tribool TYPE c LENGTH 1.
1312
TYPES bool TYPE c LENGTH 1.
1413

14+
CONSTANTS: BEGIN OF c_bool,
15+
true TYPE bool VALUE `X`,
16+
false TYPE bool VALUE ``,
17+
END OF c_bool.
18+
19+
TYPES tribool TYPE c LENGTH 1.
20+
1521
CLASS-METHODS raw_to_string
1622
IMPORTING
1723
iv_xstring TYPE xstring

0 commit comments

Comments
 (0)