Browse Source

Merge pull request #1753 from svaarala/v2.2.0-release-pre-cleanup

Cleanups for 2.2.0 release
pull/1755/head v2.2.0
Sami Vaarala 7 years ago
committed by GitHub
parent
commit
a459cf3c9b
  1. 11
      doc/release-notes-v2-2.rst
  2. 2
      examples/hello/hello_ptrcomp.c

11
doc/release-notes-v2-2.rst

@ -106,11 +106,12 @@ from Duktape v2.1.x. Note the following:
step commands will still pause on function entry/exit as appropriate; for
example, StepInto will pause on function entry or exit (or an error throw).
* Case insensitive RegExps are still much slower than case sensitive ones.
The small canonicalization lookup (256 bytes) is enabled by default. The
small lookup is still slower than DUK_USE_REGEXP_CANON_WORKAROUND but the
difference is now much smaller. You may be able to turn off the workaround
option whose main downside is a relatively large footprint impact (128kB).
* Case insensitive RegExps now perform better by default, with the small
canonicalization lookup (~300-400 bytes, DUK_USE_REGEXP_CANON_BITMAP)
enabled by default. The small lookup still performs slower than
DUK_USE_REGEXP_CANON_WORKAROUND but the difference is smaller, and you
may be able to turn off the workaround option whose main downside is a
relatively large footprint impact (128kB).
* When an Error instance is being constructed and Duktape.errCreate() is
called for the constructor return value, the call stack seen by errCreate()

2
examples/hello/hello_ptrcomp.c

@ -1,5 +1,5 @@
/*
* Very simple example program, pointer compression and ROM builti-ins enabled
* Very simple example program, pointer compression and ROM built-ins enabled
*/
#include "duktape.h"

Loading…
Cancel
Save