ChakraCore icon indicating copy to clipboard operation
ChakraCore copied to clipboard

ChakraCore is an open source Javascript engine with a C API.

Results 240 ChakraCore issues
Sort by recently updated
recently updated
newest added

the following poc cause a inconsistent output. ``` function v0(v1, v2) { const v4 = v1["o"](); return v4; } function v5() { const v9 = arguments[-1]; return v9; } const...

Bug

the following poc cause a assertion failure in "debug" build on ubuntu. ``` function v0(v1,v2) { } function v3(v4,v5) { } const v8 = [65537,v3,-2609076265,-2609076265]; const v9 = v0.bind(); v9.__proto__...

Bug
Needs Triage

the following poc cause a assertion failure in "debug" build on ubuntu. ``` function opt(){ const v2 = [-1000000000.0]; v2.length = 4294967295; const v3 = v2.copyWithin(); return v3; } for(let...

Bug
good first issue

the following poc trigger a assertion failure in "debug" build on ubuntu. ``` function opt(opt_param){ class V2 { print() { if (opt_param) { } } }; if (opt_param) { }...

Bug

the following poc trigger a assertion faliure in "debug" build on ubuntu. ``` ch -maxinterpretcount:10 -maxsimplejitruncount:100 -bgjit- poc.js ``` ``` function v0() { let v3 = 0; do { let...

Bug

According to ES10.0, If an object does not define or inherit `@@hasInstance` it uses the default `instanceof` semantics. When changing the value of `__proto__` of an object into `String`, the...

Bug
good first issue

the following poc will cause a assertion failure in "debug" build on ubuntu. ``` function opt() { const v3 = delete opt.length; for (const v4 in opt) { } }...

Bug

the following poc cause a assertion failure in "debug" build on ubuntu. ``` function v0(v1,v2) { const v3 = v0 != v0; try { const v5 = Object(); do {...

Bug

the following poc will crash the latest build on ubuntu. ``` function opt() { let v4 = 9; for (let v5 = 0; v5 < v4; v5 = v5 /...

Bug

I'm working on a "Script Loader" that loads .js files from a specific path and runs the code within through the chakra environment, with this I've been able to make...