File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed
Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1515 },
1616 "license" : " MIT" ,
1717 "dependencies" : {
18- "@abaplint/cli" : " ^2.113.246 " ,
18+ "@abaplint/cli" : " ^2.114.4 " ,
1919 "@abaplint/database-pg" : " ^2.11.78" ,
2020 "@abaplint/database-sqlite" : " ^2.11.78" ,
21- "@abaplint/runtime" : " ^2.12.12 " ,
22- "@abaplint/transpiler-cli" : " ^2.12.12 " ,
21+ "@abaplint/runtime" : " ^2.12.13 " ,
22+ "@abaplint/transpiler-cli" : " ^2.12.13 " ,
2323 "0x" : " ^6.0.0"
2424 }
2525}
Original file line number Diff line number Diff line change @@ -121,8 +121,10 @@ CLASS cl_abap_tstmp IMPLEMENTATION.
121121 ENDMETHOD .
122122
123123 METHOD subtract .
124+ * todo: this can be done easier and faster, just subtract the two values?
124125 DATA str TYPE string .
125126 DATA lv_dummy TYPE string .
127+
126128 str = | { tstmp1 TIMESTAMP = ISO } | .
127129 IF str CA ',' .
128130 SPLIT str AT ',' INTO str lv_dummy.
Original file line number Diff line number Diff line change @@ -15,12 +15,12 @@ ENDCLASS.
1515CLASS kernel_lock IMPLEMENTATION .
1616
1717 METHOD enqueue .
18- * add custom implementation here if needed
18+ * Node JS is single threaded, so no locking here
1919 sy -subrc = 0 .
2020 ENDMETHOD .
2121
2222 METHOD dequeue .
23- * add custom implementation here if needed
23+ * Node JS is single threaded, so no locking here
2424 sy -subrc = 0 .
2525 ENDMETHOD .
2626
You can’t perform that action at this time.
0 commit comments