Results 277 comments of Sami Vaarala

AoT compilation would be quite interesting I agree. One could either produce native functions out of that, or produce much better bytecode than the runtime compiler can achieve. @davidchisnall Since...

Thanks, sounds pretty much what I was expecting, I'll do my best to advance Duktape in these areas :) The build system and testing framework will be upgraded next year,...

Some of the API functionality is implemented as macros so it gets compiled with the options of the call site. So in principle the call site should also be compiled...

`duk_internal.h` is something included by all internals when they are compiled. Another alternative would be `duktape.h` when `DUK_COMPILING_DUKTAPE` is defined (`duk_internal.h` defines it before including `duktape.h`).

@trafalmuffti I'm not sure I understand the question? The main issue here is that: - Duktape itself must be compiled with IEEE compliant math because 1) ES standard requires that...

You're right, `__proto__` is at present not supported. Both `obj.__proto__` and object literal `__proto__` were specified as legacy features but in ES 13.0 `__proto__` in object literal seems to be...

Thanks @shdon, I'll try to figure out a suitable fix. It'd be great if you could try the fix :)

@shdon Could you provide me output from the following: ``` djgpp -E -x c -dM /dev/null ``` I'm trying to figure out which existing platform djgpp currently matches (I'm guessing...

Just to be sure, could you show the printout from: ``` print(Duktape.env); ```

Ok, so it's most likely detected as "generic UNIX".