zuzu-js 0.2.0 → 0.4.0
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 +0 -6
- package/bin/zuzu-generate-browser-stdlib +1 -0
- package/dist/zuzu-browser-worker.js +1484 -369
- package/dist/zuzu-browser.js +1488 -373
- package/lib/cli.js +1 -1
- package/lib/collections.js +6 -2
- package/lib/runtime-helpers.js +36 -0
- package/lib/runtime.js +128 -10
- package/lib/transpiler-new/codegen.js +45 -0
- package/lib/transpiler-new/lexer.js +40 -1
- package/lib/transpiler-new/parser.js +32 -14
- package/lib/transpiler-new/validate-bindings.js +21 -1
- package/modules/std/math/bignum.js +158 -31
- package/modules/std/math.js +1 -1
- package/modules/std/net/url.js +33 -24
- package/modules/std/string/encode.js +188 -0
- package/modules/std/string.js +21 -0
- package/modules/std/time.js +95 -4
- package/package.json +2 -1
- package/stdlib/modules/std/colour.zzm +1 -0
- package/stdlib/modules/std/config.zzm +6 -5
- package/stdlib/modules/std/getopt.zzm +3 -15
- package/stdlib/modules/std/net/url.zzm +45 -3
- package/stdlib/modules/std/string/encode.zzm +95 -0
package/README.md
CHANGED
|
@@ -98,12 +98,6 @@ The npm package includes JavaScript-backed runtime modules under
|
|
|
98
98
|
`stdlib/modules/`. Pure ZuzuScript modules are loaded, parsed, and
|
|
99
99
|
evaluated through normal ZuzuScript runtime semantics.
|
|
100
100
|
|
|
101
|
-
## Status
|
|
102
|
-
|
|
103
|
-
This is an early npm release of the JavaScript runtime. It is useful for
|
|
104
|
-
running and compiling ZuzuScript programs, but language and standard
|
|
105
|
-
library compatibility are still under active development.
|
|
106
|
-
|
|
107
101
|
## Licence
|
|
108
102
|
|
|
109
103
|
`zuzu-js` is free software; you may redistribute it and/or modify it
|