mol_dump_lib 0.0.102 → 0.0.104

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/web.test.js CHANGED
@@ -1234,6 +1234,24 @@ var $;
1234
1234
  ;
1235
1235
  "use strict";
1236
1236
  var $;
1237
+ (function ($_1) {
1238
+ $mol_test({
1239
+ 'test types'($) {
1240
+ class A {
1241
+ static a() {
1242
+ return Promise.resolve('');
1243
+ }
1244
+ static b() {
1245
+ return $mol_wire_sync(this).a();
1246
+ }
1247
+ }
1248
+ },
1249
+ });
1250
+ })($ || ($ = {}));
1251
+ //mol/wire/sync/sync.test.ts
1252
+ ;
1253
+ "use strict";
1254
+ var $;
1237
1255
  (function ($) {
1238
1256
  function $mol_wait_timeout_async(timeout) {
1239
1257
  const promise = $mol_promise();
@@ -1254,6 +1272,16 @@ var $;
1254
1272
  var $;
1255
1273
  (function ($_1) {
1256
1274
  $mol_test({
1275
+ 'test types'($) {
1276
+ class A {
1277
+ static a() {
1278
+ return '';
1279
+ }
1280
+ static b() {
1281
+ return $mol_wire_async(this).a();
1282
+ }
1283
+ }
1284
+ },
1257
1285
  async 'Latest method calls wins'($) {
1258
1286
  class NameLogger extends $mol_object2 {
1259
1287
  static $ = $;