exupery-core-data 0.1.4 → 0.1.5
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.
@@ -28,7 +28,7 @@ const _ei = __importStar(require("exupery-core-internals"));
|
|
28
28
|
const to_raw_array = ($) => $.__get_raw_copy();
|
29
29
|
exports.to_raw_array = to_raw_array;
|
30
30
|
const wrap_dictionary = ($) => {
|
31
|
-
const location = _ei.get_location_info(
|
31
|
+
const location = _ei.get_location_info(1);
|
32
32
|
function is_normal($) {
|
33
33
|
return $.to_array !== undefined && typeof $.to_array === "function";
|
34
34
|
}
|
@@ -53,7 +53,7 @@ const wrap_dictionary = ($) => {
|
|
53
53
|
};
|
54
54
|
exports.wrap_dictionary = wrap_dictionary;
|
55
55
|
const wrap_list = ($) => {
|
56
|
-
const location = _ei.get_location_info(
|
56
|
+
const location = _ei.get_location_info(1);
|
57
57
|
const decorated = $ instanceof Array
|
58
58
|
? _ei.array_literal($)
|
59
59
|
: $;
|
@@ -71,21 +71,21 @@ const wrap_list = ($) => {
|
|
71
71
|
exports.wrap_list = wrap_list;
|
72
72
|
const wrap_state_group = ($) => {
|
73
73
|
return {
|
74
|
-
'location': _ei.get_location_info(
|
74
|
+
'location': _ei.get_location_info(1),
|
75
75
|
'state group': $,
|
76
76
|
};
|
77
77
|
};
|
78
78
|
exports.wrap_state_group = wrap_state_group;
|
79
79
|
const wrap_reference = ($) => {
|
80
80
|
return {
|
81
|
-
'location': _ei.get_location_info(
|
81
|
+
'location': _ei.get_location_info(1),
|
82
82
|
'key': $,
|
83
83
|
};
|
84
84
|
};
|
85
85
|
exports.wrap_reference = wrap_reference;
|
86
86
|
const wrap_stack_reference = (up_steps, name) => {
|
87
87
|
return {
|
88
|
-
'location': _ei.get_location_info(
|
88
|
+
'location': _ei.get_location_info(1),
|
89
89
|
'up steps': up_steps,
|
90
90
|
'key': name,
|
91
91
|
};
|