@abaplint/transpiler 2.3.0 → 2.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -11,14 +11,14 @@ class HandleEnqu {
11
11
  return [];
12
12
  }
13
13
  const chunk = new chunk_1.Chunk().appendString(`// enqueue object
14
- abap.FunctionModules["ENQUEUE_${obj.getName().toUpperCase()}_LOCK"] = async (INPUT) => {
14
+ abap.FunctionModules["ENQUEUE_${obj.getName().toUpperCase()}"] = async (INPUT) => {
15
15
  const lookup = abap.Classes["KERNEL_LOCK"];
16
16
  if (lookup === undefined) {
17
17
  throw new Error("Lock, kernel class missing");
18
18
  }
19
19
  await lookup.enqueue(INPUT);
20
20
  };
21
- abap.FunctionModules["DEQUEUE_${obj.getName().toUpperCase()}_LOCK"] = async (INPUT) => {
21
+ abap.FunctionModules["DEQUEUE_${obj.getName().toUpperCase()}"] = async (INPUT) => {
22
22
  const lookup = abap.Classes["KERNEL_LOCK"];
23
23
  if (lookup === undefined) {
24
24
  throw new Error("Lock, kernel class missing");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/transpiler",
3
- "version": "2.3.0",
3
+ "version": "2.3.2",
4
4
  "description": "Transpiler",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/src/index.d.ts",
@@ -28,7 +28,7 @@
28
28
  "author": "abaplint",
29
29
  "license": "MIT",
30
30
  "dependencies": {
31
- "@abaplint/core": "^2.93.40",
31
+ "@abaplint/core": "^2.93.41",
32
32
  "source-map": "^0.7.4"
33
33
  },
34
34
  "devDependencies": {