Skip to content

Commit e013ce8

Browse files
authored
update npm dependencies (#1035)
1 parent b4caa46 commit e013ce8

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
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
}

src/date_time/cl_abap_tstmp.clas.abap

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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.

src/kernel/kernel_lock.clas.abap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ ENDCLASS.
1515
CLASS 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

0 commit comments

Comments
 (0)