Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
},
"license": "MIT",
"dependencies": {
"@abaplint/cli": "^2.113.193",
"@abaplint/cli": "^2.113.198",
"@abaplint/database-pg": "^2.10.24",
"@abaplint/database-sqlite": "^2.11.0",
"@abaplint/runtime": "^2.11.66",
"@abaplint/transpiler-cli": "^2.11.66",
"@abaplint/runtime": "^2.11.77",
"@abaplint/transpiler-cli": "^2.11.77",
"0x": "^6.0.0"
}
}
9 changes: 9 additions & 0 deletions src/cl_message_helper.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,20 @@ CLASS cl_message_helper DEFINITION PUBLIC.
obj TYPE REF TO object
CHANGING
result TYPE string.

CLASS-METHODS get_text_params
IMPORTING
obj TYPE REF TO object
EXPORTING
params TYPE any.
PRIVATE SECTION.
CONSTANTS gc_fallback TYPE string VALUE 'An exception was raised.'.
ENDCLASS.

CLASS cl_message_helper IMPLEMENTATION.
METHOD get_text_params.
ASSERT 1 = 'todo'.
ENDMETHOD.

METHOD get_otr_text_raw.
ASSERT 1 = 'todo'.
Expand Down