as-test 1.0.10 → 1.0.11

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/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 2026-04-18 - v1.0.11
6
+
7
+ ### Coverage
8
+
9
+ - fix: ignore additional AssemblyScript compile-time builtin calls during coverage instrumentation, including `isVector`, `isVoid`, and `lengthof`.
10
+
5
11
  ## 2026-04-18 - v1.0.10
6
12
 
7
13
  ### Reporting
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "as-test",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "author": "Jairus Tanaka",
5
5
  "repository": {
6
6
  "type": "git",
@@ -34,7 +34,10 @@ const COVERAGE_IGNORED_BUILTINS = new Set([
34
34
  "isReference",
35
35
  "isSigned",
36
36
  "isString",
37
+ "isVector",
38
+ "isVoid",
37
39
  "isUnsigned",
40
+ "lengthof",
38
41
  "load",
39
42
  "nameof",
40
43
  "offsetof",