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.246",
"@abaplint/cli": "^2.114.4",
"@abaplint/database-pg": "^2.11.78",
"@abaplint/database-sqlite": "^2.11.78",
"@abaplint/runtime": "^2.12.12",
"@abaplint/transpiler-cli": "^2.12.12",
"@abaplint/runtime": "^2.12.13",
"@abaplint/transpiler-cli": "^2.12.13",
"0x": "^6.0.0"
}
}
2 changes: 2 additions & 0 deletions src/date_time/cl_abap_tstmp.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,10 @@ CLASS cl_abap_tstmp IMPLEMENTATION.
ENDMETHOD.

METHOD subtract.
* todo: this can be done easier and faster, just subtract the two values?
DATA str TYPE string.
DATA lv_dummy TYPE string.

str = |{ tstmp1 TIMESTAMP = ISO }|.
IF str CA ','.
SPLIT str AT ',' INTO str lv_dummy.
Expand Down
4 changes: 2 additions & 2 deletions src/kernel/kernel_lock.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ ENDCLASS.
CLASS kernel_lock IMPLEMENTATION.

METHOD enqueue.
* add custom implementation here if needed
* Node JS is single threaded, so no locking here
sy-subrc = 0.
ENDMETHOD.

METHOD dequeue.
* add custom implementation here if needed
* Node JS is single threaded, so no locking here
sy-subrc = 0.
ENDMETHOD.

Expand Down