porffor 0.18.16 → 0.18.17

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.
@@ -83,10 +83,8 @@ export const __Array_prototype_splice = (_this: any[], start: number, deleteCoun
83
83
  _this.length = len - deleteCount + itemsLen;
84
84
 
85
85
  // remove deleted values via memory.copy shifting values in mem
86
- Porffor.wasm`;; setup
86
+ Porffor.wasm`;; ptr = ptr(_this) + 4 + (start * 9)
87
87
  local #splice_ptr i32
88
-
89
- ;; ptr = ptr(_this) + 4 + (start * 9)
90
88
  local.get ${_this}
91
89
  i32.to_u
92
90
  i32.const 4
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "porffor",
3
3
  "description": "a basic experimental wip aot optimizing js -> wasm engine/compiler/runtime in js",
4
- "version": "0.18.16+031bc17dd",
4
+ "version": "0.18.17+4d4df7afe",
5
5
  "author": "CanadaHonk",
6
6
  "license": "MIT",
7
7
  "scripts": {},
package/runner/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  import fs from 'node:fs';
3
- globalThis.version = '0.18.16+031bc17dd';
3
+ globalThis.version = '0.18.17+4d4df7afe';
4
4
 
5
5
  // deno compat
6
6
  if (typeof process === 'undefined' && typeof Deno !== 'undefined') {