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.
- package/compiler/codegen.js +2 -0
- package/package.json +1 -1
- package/runner/index.js +1 -1
package/compiler/codegen.js
CHANGED
@@ -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