Skip to content
This repository has been archived by the owner on Oct 15, 2020. It is now read-only.

Commit

Permalink
deps: update ChakraCore to chakra-core/ChakraCore@d439708b39
Browse files Browse the repository at this point in the history
[MERGE #5452 @dilijev] Fix #5428: Remove non-ASCII characters from JsBuiltIn.js and generated .bc.*.h

Merge pull request #5452 from dilijev:fix-nonascii-jsbuiltins

Fixes #5428

Reviewed-By: chakrabot <chakrabot@users.noreply.github.com>
  • Loading branch information
dilijev authored and kfarnung committed Jul 18, 2018
1 parent 1c62781 commit 4dc944d
Show file tree
Hide file tree
Showing 5 changed files with 1,251 additions and 1,495 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@
So we refactored to use integers instead. */
if (n === 0) { // Corresponds to "If n is -0, let k be +0" in the spec
k = 0;
} else if (n > 0) { // Corresponds to "If n 0, then [...] let k be n."
} else if (n > 0) { // Corresponds to "If n >= 0, then [...] let k be n."
k = n;
} else { // Corresponds to "Else n < 0"
k = len + n;
Expand Down
Loading

0 comments on commit 4dc944d

Please sign in to comment.