porffor 0.36.1 → 0.36.2

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.
@@ -704,7 +704,7 @@ export const __Object_prototype_toString = (_this: any) => {
704
704
  return out = '[object Object]';
705
705
  };
706
706
 
707
- export const __Object_prototype_toLocaleString = (_this: any) => __Object_prototype_toLocaleString(_this);
707
+ export const __Object_prototype_toLocaleString = (_this: any) => __Object_prototype_toString(_this);
708
708
 
709
709
  export const __Object_prototype_valueOf = (_this: any) => {
710
710
  // todo: ToObject
@@ -1659,7 +1659,7 @@ locals:[124,127,124],localNames:["_this","_this#type","out","#makearray_pointer_
1659
1659
  data:{"bytestring: __Object_prototype_toString/out":[18,0,0,0,91,111,98,106,101,99,116,32,85,110,100,101,102,105,110,101,100,93]},
1660
1660
  };
1661
1661
  this.__Object_prototype_toLocaleString = {
1662
- wasm:(_,{builtin})=>[[32,0],[32,1],[16,builtin('__Object_prototype_toLocaleString')],[34,2],[15]],
1662
+ wasm:(_,{builtin})=>[[32,0],[32,1],[16,builtin('__Object_prototype_toString')],[34,2],[15]],
1663
1663
  params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
1664
1664
  locals:[127],localNames:["_this","_this#type","#last_type"],
1665
1665
  };
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.36.1+7b9b6a8dd",
4
+ "version": "0.36.2+3a2eec32c",
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.36.1+7b9b6a8dd';
3
+ globalThis.version = '0.36.2+3a2eec32c';
4
4
 
5
5
  // deno compat
6
6
  if (typeof process === 'undefined' && typeof Deno !== 'undefined') {