mol_plot_all 1.2.765 → 1.2.767
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 +7 -1
- package/node.deps.json +1 -1
- package/node.js.map +1 -1
- package/node.test.js +28 -0
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +7 -1
- package/web.deps.json +1 -1
- package/web.js.map +1 -1
- package/web.test.js +28 -0
- package/web.test.js.map +1 -1
package/node.test.js
CHANGED
|
@@ -7489,6 +7489,24 @@ var $;
|
|
|
7489
7489
|
;
|
|
7490
7490
|
"use strict";
|
|
7491
7491
|
var $;
|
|
7492
|
+
(function ($_1) {
|
|
7493
|
+
$mol_test({
|
|
7494
|
+
'test types'($) {
|
|
7495
|
+
class A {
|
|
7496
|
+
static a() {
|
|
7497
|
+
return Promise.resolve('');
|
|
7498
|
+
}
|
|
7499
|
+
static b() {
|
|
7500
|
+
return $mol_wire_sync(this).a();
|
|
7501
|
+
}
|
|
7502
|
+
}
|
|
7503
|
+
},
|
|
7504
|
+
});
|
|
7505
|
+
})($ || ($ = {}));
|
|
7506
|
+
//mol/wire/sync/sync.test.ts
|
|
7507
|
+
;
|
|
7508
|
+
"use strict";
|
|
7509
|
+
var $;
|
|
7492
7510
|
(function ($) {
|
|
7493
7511
|
function $mol_wait_timeout_async(timeout) {
|
|
7494
7512
|
const promise = $mol_promise();
|
|
@@ -7509,6 +7527,16 @@ var $;
|
|
|
7509
7527
|
var $;
|
|
7510
7528
|
(function ($_1) {
|
|
7511
7529
|
$mol_test({
|
|
7530
|
+
'test types'($) {
|
|
7531
|
+
class A {
|
|
7532
|
+
static a() {
|
|
7533
|
+
return '';
|
|
7534
|
+
}
|
|
7535
|
+
static b() {
|
|
7536
|
+
return $mol_wire_async(this).a();
|
|
7537
|
+
}
|
|
7538
|
+
}
|
|
7539
|
+
},
|
|
7512
7540
|
async 'Latest method calls wins'($) {
|
|
7513
7541
|
class NameLogger extends $mol_object2 {
|
|
7514
7542
|
static $ = $;
|