File tree Expand file tree Collapse file tree 4 files changed +38
-6
lines changed
Expand file tree Collapse file tree 4 files changed +38
-6
lines changed Original file line number Diff line number Diff line change 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}
Original file line number Diff line number Diff 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 .
2032ENDCLASS .
2133
2234CLASS 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 .
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments