package quickjs
Bindings for QuickJS (a Javascript Engine to be embedded https://bellard.org/quickjs)
Install
dune-project
Dependency
Authors
Maintainers
Sources
quickjs-0.3.0.tbz
sha256=acb988041c31dfd942e40ca0e33f699174296dc4c3743f5fb175dead70f176eb
sha512=c3ba606ac64380d6f8a35c6bd49f7ba869dcfad66c1b23829386aad2c7ed20064e5a8f6ecfc2d5abb761648240223938deaa78774f12df1a638f15c4017c3b66
doc/CHANGES.html
Changes
0.3.0
- Fix arm32v7 tests on 32-bits
- Fix openSUSE
Breaking: Reorganized API to mirror JavaScript built-in objects for
quickjsDtoa→Number.Prototype(toString, toFixed, toPrecision, toExponential, toRadix)Atod→Global(parse_float, parse_float_partial)IntToString→Number(of_int, of_int32, of_int64, of_int_radix, etc.)- New
String.Prototypemodule (to_lower_case, to_upper_case, normalize) - New
Unicodemodule for character-level operations (is_cased, is_id_start, canonicalize, etc.)
- Added TC39/test262 test coverage for Number, String, Global, and Unicode modules
- Added tests for special values (NaN, Infinity) in Number.Prototype methods
- Fix String.Prototype.lastIndexOf
- Fix String.Prototype.match
0.2.0
- Full tests coverage from Official ECMAScript Conformance Test Suite for RegExp
- Support unicode in RegExp
- Support named groups in RegExp
- Bind to dtoa (Dtoa, Atod, IntToString)
0.1.2
- Support for named groups
- Change
RegExp.execinterface to returnresult
0.1.1
Bug fix for RegExp backtracking when not find a match
0.1.0
Initial release of quickjs. This release only includes bindings to libregexp and exposes the API of the QuickJS C library with the same shape as the JavaScript API: RegExp.