Skip to content

Commit

Permalink
sort
Browse files Browse the repository at this point in the history
  • Loading branch information
larshp committed Apr 1, 2024
1 parent 897afe7 commit 9233f73
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions refactor.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -18,24 +18,24 @@ const replace = [
{search: " tadir-obj_name", replace: " I_CustABAPObjDirectoryEntry-ABAPObject"},
{search: " tadir-masterlang", replace: " spras"},

{search: " TYPE REF TO if_http_client", replace: " TYPE REF TO object"},
{search: " DEFAULT if_salv_c_selection_mode=>multiple", replace: " OPTIONAL"},
{search: " li_istream->close\\( \\).", replace: " "},
{search: " li_ostream = li_streamfactory->create_ostream_cstring\\( rv_xml \\).", replace: " DATA foo TYPE xstring. li_ostream = li_streamfactory->create_ostream_xstring( foo ). rv_xml = zcl_abapgit_convert=>xstring_to_string_utf8( foo )."},
{search: " li_stream_factory->create_istream_string\\( iv_xml \\)", replace: " li_stream_factory->create_istream_xstring( zcl_abapgit_convert=>string_to_xstring_utf8( iv_xml ) )"},
{search: " SUBMIT \\(sy-cprog\\).", replace: " ASSERT 1 = 'non_cloud'."},
{search: " tadir-pgmid", replace: " I_CustABAPObjDirectoryEntry-ABAPObjectCategory"},
{search: " TYPE tadir-srcsystem", replace: " TYPE c LENGTH 10"},
{search: " TYPE REF TO cl_gui_container DEFAULT cl_gui_container=>screen0", replace: " TYPE REF TO object OPTIONAL"},
{search: " TYPE REF TO if_http_client", replace: " TYPE REF TO object"},
{search: " TYPE scompkdtln-devclass", replace: " TYPE devclass"},
{search: " TYPE seoclsname", replace: " TYPE char30"},
{search: " TYPE tadir-delflag", replace: " TYPE abap_bool"},
{search: " TYPE tadir-genflag", replace: " TYPE abap_bool"},
{search: " TYPE tadir-srcsystem", replace: " TYPE c LENGTH 10"},
{search: " TYPE tdevc-dlvunit", replace: " TYPE c LENGTH 30"},
{search: " TYPE trfunction", replace: " TYPE char1"},
{search: " TYPE scompkdtln-devclass", replace: " TYPE devclass"},
{search: " TYPE seoclsname", replace: " TYPE char30"},
{search: " TYPE wwwdatatab-objid", replace: " TYPE char40"},
{search: " DEFAULT if_salv_c_selection_mode=>multiple", replace: " OPTIONAL"},
{search: " TYPE tdevc-dlvunit", replace: " TYPE c LENGTH 30"},
{search: "GET PARAMETER ID 'DBT' FIELD lv_mode.", replace: ""},
{search: "GET PARAMETER ID 'TSE' FIELD lv_skip.", replace: ""},
{search: " TYPE REF TO cl_gui_container DEFAULT cl_gui_container=>screen0", replace: " TYPE REF TO object OPTIONAL"},
{search: " li_stream_factory->create_istream_string\\( iv_xml \\)", replace: " li_stream_factory->create_istream_xstring( zcl_abapgit_convert=>string_to_xstring_utf8( iv_xml ) )"},
{search: " li_ostream = li_streamfactory->create_ostream_cstring\\( rv_xml \\).", replace: " DATA foo TYPE xstring. li_ostream = li_streamfactory->create_ostream_xstring( foo ). rv_xml = zcl_abapgit_convert=>xstring_to_string_utf8( foo )."},
{search: " li_istream->close\\( \\).", replace: " "},
{search: " SUBMIT \\(sy-cprog\\).", replace: " ASSERT 1 = 'non_cloud'."},
{search: "IN UPDATE TASK", replace: ""},

{search: " cl_http_utility=>", replace: " cl_web_http_utility=>"},
Expand Down

0 comments on commit 9233f73

Please sign in to comment.