@abaplint/runtime 2.0.69 → 2.0.70
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.
- package/build/src/statements/get_locale.d.ts +2 -0
- package/build/src/statements/get_locale.js +9 -0
- package/build/src/statements/index.d.ts +4 -0
- package/build/src/statements/index.js +4 -0
- package/build/src/statements/set_locale.d.ts +2 -0
- package/build/src/statements/set_locale.js +8 -0
- package/package.json +1 -1
|
@@ -12,6 +12,8 @@ import { describe } from "./describe";
|
|
|
12
12
|
import { find } from "./find";
|
|
13
13
|
import { cast } from "./cast";
|
|
14
14
|
import { getBit } from "./get_bit";
|
|
15
|
+
import { getLocale } from "./get_locale";
|
|
16
|
+
import { setLocale } from "./set_locale";
|
|
15
17
|
import { getRunTime } from "./get_run_time";
|
|
16
18
|
import { getTime } from "./get_time";
|
|
17
19
|
import { IInsertDatabaseOptions } from "./insert_database";
|
|
@@ -53,6 +55,7 @@ export declare class Statements {
|
|
|
53
55
|
describe: typeof describe;
|
|
54
56
|
find: typeof find;
|
|
55
57
|
getBit: typeof getBit;
|
|
58
|
+
getLocale: typeof getLocale;
|
|
56
59
|
getRunTime: typeof getRunTime;
|
|
57
60
|
getTime: typeof getTime;
|
|
58
61
|
insertInternal: typeof insertInternal;
|
|
@@ -63,6 +66,7 @@ export declare class Statements {
|
|
|
63
66
|
replace: typeof replace;
|
|
64
67
|
rollback: typeof rollback;
|
|
65
68
|
setBit: typeof setBit;
|
|
69
|
+
setLocale: typeof setLocale;
|
|
66
70
|
shift: typeof shift;
|
|
67
71
|
sort: typeof sort;
|
|
68
72
|
split: typeof split;
|
|
@@ -15,6 +15,8 @@ const describe_1 = require("./describe");
|
|
|
15
15
|
const find_1 = require("./find");
|
|
16
16
|
const cast_1 = require("./cast");
|
|
17
17
|
const get_bit_1 = require("./get_bit");
|
|
18
|
+
const get_locale_1 = require("./get_locale");
|
|
19
|
+
const set_locale_1 = require("./set_locale");
|
|
18
20
|
const get_run_time_1 = require("./get_run_time");
|
|
19
21
|
const get_time_1 = require("./get_time");
|
|
20
22
|
const insert_database_1 = require("./insert_database");
|
|
@@ -55,6 +57,7 @@ class Statements {
|
|
|
55
57
|
this.describe = describe_1.describe;
|
|
56
58
|
this.find = find_1.find;
|
|
57
59
|
this.getBit = get_bit_1.getBit;
|
|
60
|
+
this.getLocale = get_locale_1.getLocale;
|
|
58
61
|
this.getRunTime = get_run_time_1.getRunTime;
|
|
59
62
|
this.getTime = get_time_1.getTime;
|
|
60
63
|
this.insertInternal = insert_internal_1.insertInternal;
|
|
@@ -65,6 +68,7 @@ class Statements {
|
|
|
65
68
|
this.replace = replace_1.replace;
|
|
66
69
|
this.rollback = rollback_1.rollback;
|
|
67
70
|
this.setBit = set_bit_1.setBit;
|
|
71
|
+
this.setLocale = set_locale_1.setLocale;
|
|
68
72
|
this.shift = shift_1.shift;
|
|
69
73
|
this.sort = sort_1.sort;
|
|
70
74
|
this.split = split_1.split;
|