-
I have duktape embedded into my application, and all works nicely.
I wish to be able to point users at a pre-configured VS Code workspace folder, which will include intellisense set up for the dukt…
-
Embedded in some JS which deals with CSS, we have encountered the following regular expression:
```
/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/
```
Chrome accepts…
-
When debugging memory leaks, currently we can almost dump the entire duktape heap by calling `duk_enum` recursively. However, it seems that `duk_enum` cannot enumerate into the parent frames held by f…
-
Currently only the "attach" request setting is accepted for debugging a duktape application. It would however be much more convenient to have the debugger also launch the application to debug. Constan…
-
Version: _proj4js-2.3.15_
Source file: _dist/proj4-src.js_
There is a seemingly unneeded escape character (**\\**) in the regular expression of line 4710
wkt.ellps = wkt.GEOGCS.DATUM.SP…
-
Hello, everyone!
I've created a special test harness, implemented in pure C++, to test Javascript / ECMAScript embeddable engines (such as [Duktape](http://duktape.org) or [TinyJS](https://github.c…
-
There is some inconsistency in checking for the presence of NodeJS, causing vague errors (Makefile agrees on existing NodeJS, build process still crashes) on, for example, Arch Linux who use `node` as…
-
Hermes supports the chrome debugger protocol along with some profiling tools. Lets see how far we can take this. Can we get react-dev-tools working for example ...
Should ideally work using the sam…
-
I've researched on malware scanner engine a lot recently and I found out this engine could be expanded. There are some good points
1. The only open-source Malware scanner engine is ClamAV, which use…
-
In evaljs, trailing commas are allowed in array declarations, but when using Array constructors, it causes a crash:
```
import dukpy
testArray1 = '''
var array1 = [1, 2, 3, ];
array1.reduce(fu…