Open Issues Need Help
View All on GitHubAI Summary: This GitHub issue reports an assertion failure in ChakraCore's `Array.prototype.copyWithin` when executed on an array containing an element at an extremely large index (e.g., `b[4294967294]`). The user provides a minimal reproducible example, the crash output, and identifies a potential bug in the assertion logic within `JavascriptArray.cpp`, suggesting a specific correction to the conditional statement.
ChakraCore is an open source Javascript engine with a C API.
AI Summary: This GitHub issue highlights that using Unicode escape sequences (e.g., `\u0061` for 'a') within JavaScript keywords (like `v\u0061r` instead of `var`) results in inconsistent and often unhelpful error messages across different JavaScript engines. The goal is to improve these error messages to be more specific and informative, similar to the "Keyword must not contain escaped characters" error already provided by d8 and Node.js.
ChakraCore is an open source Javascript engine with a C API.
AI Summary: This GitHub issue identifies a bug in ChakraCore's PAL layer where the `_wfopen_s` implementation imposes a hardcoded 10-character limit on mode strings. This restriction causes `_wfopen` calls to fail when using longer mode strings, such as "r, ccs=UNICODE". The goal is to remove this arbitrary limit to enhance compatibility.
ChakraCore is an open source Javascript engine with a C API.