mol_jsx_lib 0.0.34 → 0.0.35
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/node.d.ts +1 -4
- package/node.deps.json +1 -1
- package/node.esm.js +0 -27
- package/node.esm.js.map +1 -1
- package/node.js +0 -27
- package/node.js.map +1 -1
- package/node.test.js +0 -27
- package/node.test.js.map +1 -1
- package/package.json +1 -2
package/node.js
CHANGED
|
@@ -273,30 +273,6 @@ var $;
|
|
|
273
273
|
;
|
|
274
274
|
"use strict";
|
|
275
275
|
var $;
|
|
276
|
-
(function ($) {
|
|
277
|
-
function $mol_deprecated(message) {
|
|
278
|
-
return (host, field, descr) => {
|
|
279
|
-
const value = descr.value;
|
|
280
|
-
let warned = false;
|
|
281
|
-
descr.value = function $mol_deprecated_wrapper(...args) {
|
|
282
|
-
if (!warned) {
|
|
283
|
-
$$.$mol_log3_warn({
|
|
284
|
-
place: `${host.constructor.name}::${field}`,
|
|
285
|
-
message: `Deprecated`,
|
|
286
|
-
hint: message,
|
|
287
|
-
});
|
|
288
|
-
warned = true;
|
|
289
|
-
}
|
|
290
|
-
return value.call(this, ...args);
|
|
291
|
-
};
|
|
292
|
-
};
|
|
293
|
-
}
|
|
294
|
-
$.$mol_deprecated = $mol_deprecated;
|
|
295
|
-
})($ || ($ = {}));
|
|
296
|
-
//mol/deprecated/deprecated.ts
|
|
297
|
-
;
|
|
298
|
-
"use strict";
|
|
299
|
-
var $;
|
|
300
276
|
(function ($) {
|
|
301
277
|
$.$mol_tree_convert = Symbol('$mol_tree_convert');
|
|
302
278
|
class $mol_tree extends $mol_object2 {
|
|
@@ -621,9 +597,6 @@ var $;
|
|
|
621
597
|
return new Error(`${message}:\n${this} ${this.baseUri}:${this.row}:${this.col}`);
|
|
622
598
|
}
|
|
623
599
|
}
|
|
624
|
-
__decorate([
|
|
625
|
-
$mol_deprecated('Use $mol_tree:hack')
|
|
626
|
-
], $mol_tree.prototype, "transform", null);
|
|
627
600
|
$.$mol_tree = $mol_tree;
|
|
628
601
|
})($ || ($ = {}));
|
|
629
602
|
//mol/tree/tree.ts
|