@ifc-lite/wasm 3.0.3 → 3.0.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.
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "IFC-Lite Contributors"
6
6
  ],
7
7
  "description": "WebAssembly bindings for IFC-Lite",
8
- "version": "3.0.3",
8
+ "version": "3.0.5",
9
9
  "license": "MPL-2.0",
10
10
  "repository": {
11
11
  "type": "git",
package/pkg/ifc-lite.d.ts CHANGED
@@ -375,10 +375,7 @@ export class IfcAPI {
375
375
  * the same `IfcAPI` instance — e.g. the parser worker keeps one
376
376
  * `IfcAPI` alive across multiple `parse` requests).
377
377
  *
378
- * Panics if the cache Mutex is poisoned. Poisoning means an
379
- * earlier panic occurred while the lock was held — silently
380
- * continuing would mean operating on an inconsistent cache, so
381
- * fail fast.
378
+ * Recovers a poisoned cache Mutex instead of panicking; see `mod_tests.rs`.
382
379
  */
383
380
  clearPrePassCache(): void;
384
381
  /**
package/pkg/ifc-lite.js CHANGED
@@ -1405,10 +1405,7 @@ export class IfcAPI {
1405
1405
  * the same `IfcAPI` instance — e.g. the parser worker keeps one
1406
1406
  * `IfcAPI` alive across multiple `parse` requests).
1407
1407
  *
1408
- * Panics if the cache Mutex is poisoned. Poisoning means an
1409
- * earlier panic occurred while the lock was held — silently
1410
- * continuing would mean operating on an inconsistent cache, so
1411
- * fail fast.
1408
+ * Recovers a poisoned cache Mutex instead of panicking; see `mod_tests.rs`.
1412
1409
  */
1413
1410
  clearPrePassCache() {
1414
1411
  wasm.ifcapi_clearPrePassCache(this.__wbg_ptr);
Binary file