porffor 0.27.0 → 0.27.1

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.
@@ -3660,6 +3660,8 @@ const generateDoWhile = (scope, decl) => {
3660
3660
  };
3661
3661
 
3662
3662
  const generateForOf = (scope, decl) => {
3663
+ if (decl.await) return todo(scope, 'for await is not supported');
3664
+
3663
3665
  const out = [];
3664
3666
 
3665
3667
  // todo: for of inside for of might fuck up?
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.27.0+acf68b3a9",
4
+ "version": "0.27.1+eb4ce4d61",
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.27.0+acf68b3a9';
3
+ globalThis.version = '0.27.1+eb4ce4d61';
4
4
 
5
5
  // deno compat
6
6
  if (typeof process === 'undefined' && typeof Deno !== 'undefined') {