@abaplint/runtime 2.2.10 → 2.2.12
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.
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getParameter = void 0;
|
|
4
|
+
function getParameter(_source, _target) {
|
|
5
|
+
// todo, additional logic? call ABAP kernel class?
|
|
6
|
+
// @ts-ignore
|
|
7
|
+
abap.builtin.sy.get().subrc.set(4);
|
|
8
|
+
}
|
|
9
|
+
exports.getParameter = getParameter;
|
|
10
|
+
//# sourceMappingURL=get_parameter.js.map
|
|
@@ -13,6 +13,7 @@ import { find } from "./find";
|
|
|
13
13
|
import { cast } from "./cast";
|
|
14
14
|
import { getBit } from "./get_bit";
|
|
15
15
|
import { getLocale } from "./get_locale";
|
|
16
|
+
import { getParameter } from "./get_parameter";
|
|
16
17
|
import { setLocale } from "./set_locale";
|
|
17
18
|
import { getRunTime } from "./get_run_time";
|
|
18
19
|
import { getTime } from "./get_time";
|
|
@@ -54,6 +55,7 @@ export declare class Statements {
|
|
|
54
55
|
deleteInternal: typeof deleteInternal;
|
|
55
56
|
describe: typeof describe;
|
|
56
57
|
find: typeof find;
|
|
58
|
+
getParameter: typeof getParameter;
|
|
57
59
|
getBit: typeof getBit;
|
|
58
60
|
getLocale: typeof getLocale;
|
|
59
61
|
getRunTime: typeof getRunTime;
|
|
@@ -16,6 +16,7 @@ const find_1 = require("./find");
|
|
|
16
16
|
const cast_1 = require("./cast");
|
|
17
17
|
const get_bit_1 = require("./get_bit");
|
|
18
18
|
const get_locale_1 = require("./get_locale");
|
|
19
|
+
const get_parameter_1 = require("./get_parameter");
|
|
19
20
|
const set_locale_1 = require("./set_locale");
|
|
20
21
|
const get_run_time_1 = require("./get_run_time");
|
|
21
22
|
const get_time_1 = require("./get_time");
|
|
@@ -56,6 +57,7 @@ class Statements {
|
|
|
56
57
|
this.deleteInternal = delete_internal_1.deleteInternal;
|
|
57
58
|
this.describe = describe_1.describe;
|
|
58
59
|
this.find = find_1.find;
|
|
60
|
+
this.getParameter = get_parameter_1.getParameter;
|
|
59
61
|
this.getBit = get_bit_1.getBit;
|
|
60
62
|
this.getLocale = get_locale_1.getLocale;
|
|
61
63
|
this.getRunTime = get_run_time_1.getRunTime;
|