ChakraCore
ChakraCore copied to clipboard
ChakraCore is an open source Javascript engine with a C API.
Meta issue for various tasks related to the upcoming release.
SInce Microsoft has ended support for CC a while ago i think we should update README.md to remove the notice about support from Microsoft or update it. I want to...
### Version: ch version 1.12.0.0-beta ### PoC: ```js let args = new Array(0x10000); args.fill(); args = args.map((_, i) => 'a' + i).join(', '); let gun = eval(`(function () { class...
Hi All, ChakraCore failed to run tests with 2 failures on windows with MSVC. This issue can be reproduced on latest version 385409e, could you please look at this issue?...
This is a discussion to determine what should go into the next release w.r.t WebAssembly. We have updated the SIMD opcodes somewhat recently, and I am inclined to remove anything...
Consider the following Wasm module with two mutually recursive functions: ``` (module (type $0 (func (result i32))) (type $1 (func (result i32))) (func $0 (type 0) (call 1) ) (func...
Current implementation of wasm SIMD shuffle produces a scalar loop over the bytes of the vector. That is the leftover of the situation when there were multiple shuffles with different...
This PR proposes the fix for issue #5442. @rhuanjl
Git Commit: 861a276c346746f3b87347bb094988563d7ee0a7 Ubuntu 18.04 PoC: ``` const obj = { }; var a = { toString: ()=> {} }; function opt(o, zz) { function foo () { String.prototype.replace.call(o, zz,...
(tested with 1.11.24.0 on Mac OS) This is one of those "I went looking for dumb edge cases" bugs. It didn't come up in real code - it requires code...