porffor 0.2.0-b9abe0d → 0.2.0-c1ed50d
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 +2 -1
- package/compiler/builtins/date.ts +728 -3
- package/compiler/builtins.js +0 -13
- package/compiler/codegen.js +20 -19
- package/compiler/generated_builtins.js +259 -7
- package/compiler/index.js +2 -1
- package/compiler/precompile.js +1 -1
- package/compiler/wasmSpec.js +1 -0
- package/compiler/wrap.js +7 -4
- package/package.json +1 -1
- package/.vscode/launch.json +0 -18
- package/test262_changes_from_1afe9b87d2_to_04-09.md +0 -270
package/README.md
CHANGED
@@ -151,6 +151,7 @@ These include some early (stage 1/0) and/or dead (last commit years ago) proposa
|
|
151
151
|
- Array member setting (`arr[0] = 2`, `arr[0] += 2`, etc)
|
152
152
|
- Array constructor (`Array(5)`, `new Array(1, 2, 3)`)
|
153
153
|
- Labelled statements (`foo: while (...)`)
|
154
|
+
- `do...while`
|
154
155
|
|
155
156
|
### Built-ins
|
156
157
|
|
@@ -162,7 +163,7 @@ These include some early (stage 1/0) and/or dead (last commit years ago) proposa
|
|
162
163
|
- Basic `Boolean` and `Number`
|
163
164
|
- Basic `eval` for literals
|
164
165
|
- `Math.random()` using self-made xorshift128+ PRNG
|
165
|
-
- Some of `performance` (`now()`)
|
166
|
+
- Some of `performance` (`now()`, `timeOrigin`)
|
166
167
|
- Some of `Array.prototype` (`at`, `push`, `pop`, `shift`, `fill`)
|
167
168
|
- Some of `Array` (`of`, `isArray`)
|
168
169
|
- Some of `String.prototype` (`at`, `charAt`, `charCodeAt`)
|