File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed
Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -106,11 +106,12 @@ from Duktape v2.1.x. Note the following:
106106 step commands will still pause on function entry/exit as appropriate; for
107107 example, StepInto will pause on function entry or exit (or an error throw).
108108
109- * Case insensitive RegExps are still much slower than case sensitive ones.
110- The small canonicalization lookup (256 bytes) is enabled by default. The
111- small lookup is still slower than DUK_USE_REGEXP_CANON_WORKAROUND but the
112- difference is now much smaller. You may be able to turn off the workaround
113- option whose main downside is a relatively large footprint impact (128kB).
109+ * Case insensitive RegExps now perform better by default, with the small
110+ canonicalization lookup (~300-400 bytes, DUK_USE_REGEXP_CANON_BITMAP)
111+ enabled by default. The small lookup still performs slower than
112+ DUK_USE_REGEXP_CANON_WORKAROUND but the difference is smaller, and you
113+ may be able to turn off the workaround option whose main downside is a
114+ relatively large footprint impact (128kB).
114115
115116* When an Error instance is being constructed and Duktape.errCreate() is
116117 called for the constructor return value, the call stack seen by errCreate()
Original file line number Diff line number Diff line change 11/*
2- * Very simple example program, pointer compression and ROM builti -ins enabled
2+ * Very simple example program, pointer compression and ROM built -ins enabled
33 */
44
55#include "duktape.h"
You can’t perform that action at this time.
0 commit comments