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 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`)