Skip to content

Commit

Permalink
update npm dependencies (#308)
Browse files Browse the repository at this point in the history
  • Loading branch information
larshp authored Apr 2, 2024
1 parent 609a2a3 commit 8f38594
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 41 deletions.
72 changes: 36 additions & 36 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
},
"license": "MIT",
"dependencies": {
"@abaplint/cli": "^2.105.21",
"@abaplint/database-sqlite": "^2.7.144",
"@abaplint/runtime": "^2.7.160",
"@abaplint/transpiler-cli": "^2.7.160",
"@abaplint/cli": "^2.106.5",
"@abaplint/database-sqlite": "^2.8.0",
"@abaplint/runtime": "^2.8.22",
"@abaplint/transpiler-cli": "^2.8.22",
"abapmerge": "^0.16.0"
}
}
4 changes: 3 additions & 1 deletion test/cl_run.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ CLASS cl_run IMPLEMENTATION.
DATA string_tab TYPE string_table.
DATA type_name TYPE string.
DATA schema_id TYPE string.
DATA newline TYPE string.
DATA ref TYPE REF TO data.
FIELD-SYMBOLS <row> LIKE LINE OF string_tab.

Expand All @@ -40,7 +41,8 @@ CLASS cl_run IMPLEMENTATION.
ENDIF.
ENDLOOP.

CONCATENATE LINES OF string_tab INTO result SEPARATED BY |\n|.
newline = |\n|.
CONCATENATE LINES OF string_tab INTO result SEPARATED BY newline.
ENDMETHOD.

ENDCLASS.

0 comments on commit 8f38594

Please sign in to comment.