porffor 0.34.12 → 0.34.13

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/README.md CHANGED
@@ -67,12 +67,10 @@ Expect nothing to work! Only very limited JS is currently supported. See files i
67
67
  - `-O2` to enable advanced opt (inlining). unstable!
68
68
  - `-O3` to enable advanceder opt (precompute const math). unstable!
69
69
 
70
- ## Limitations
71
- - Little built-ins/prototype
72
- - No object prototypes yet
73
- - No async/promise/await
70
+ ## Current limitations
71
+ - Limited async support
74
72
  - No variables between scopes (except args and globals)
75
- - No `eval()` etc (since it is AOT)
73
+ - No `eval()`/`Function()` etc (since it is AOT)
76
74
 
77
75
  ## Sub-engines
78
76
 
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.34.12+a590b1020",
4
+ "version": "0.34.13+a994184e9",
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.34.12+a590b1020';
3
+ globalThis.version = '0.34.13+a994184e9';
4
4
 
5
5
  // deno compat
6
6
  if (typeof process === 'undefined' && typeof Deno !== 'undefined') {