ChakraCore
ChakraCore copied to clipboard
ChakraCore is an open source Javascript engine with a C API.
When Math functions are involved in a large number of iterations (> 10000), for-of loop is about 10 times slower in master (x86 release build) then in the last released...
When I passed NaN and an object with the "valueOf" attribute value as a callable function to the first and second parameters of Math.max, chakra did not execute this function....
I embed chakra and chkracore in one app, but when call two APIs, app crashes. I test in VB6: eg: .... LoadLibrary("Chakra.dll") LoadLibrary("ChakraCore.dll") ... wheather static dll mode or dynamic...
I am porting an old application from Moziall JS to chakra. The application will include helper functions, native objects constructed in C code only and native objects that can be...
I am porting an old application that embedded a very old version of Mozilla js to use chakra. This application involves several native objects written in C. The methods of...
This poc will output different results in the JIT compiler. ```js let a = [1, 2, 3]; let proto = []; Object.defineProperty(proto, 3, { get: function () { console.log("woops") return...
This poc will output different results in the JIT compiler. ```js function foo(a) { return a.length; } let array = new Int32Array(); Object.defineProperty(array, "length", { value: 10 }); for(let i=0;i
This poc will output different results in the JIT compiler. ```js function test2(a) { if ((a | 0) >>> 0 > (11569 | -29007) >>> 0) return true; else return...
I'm trying to build chakracore with the visual studio solution but an error is raised during configuration which I traced back to line 63 in CMakeLists.txt that indicates that the...
Hello, how can I import and use a module from file ???? ``` Memo1.Lines.Text:=Engine.ConvertToString(Engine.RunScript('import * as customName from ("./myjs/MyNode.js");')); Error $30002: JavaScript failed to compile. Name: SyntaxError Message: 'import' or...