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 +3 -5
- package/package.json +1 -1
- package/runner/index.js +1 -1
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
|
-
##
|
71
|
-
-
|
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