Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1726)

Unified Diff: src/js/array.js

Issue 2146293003: [builtins] implement Array.prototype.includes in TurboFan (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/js/array.js
diff --git a/src/js/array.js b/src/js/array.js
index 2fde9fb3d4b3ae3f4d9f3abc849537c7f63fb339..5acf0797d51b8b363b97c7ef576cbd39a29cbf5b 100644
--- a/src/js/array.js
+++ b/src/js/array.js
@@ -1507,6 +1507,7 @@ function ArrayFill(value, start, end) {
function InnerArrayIncludes(searchElement, fromIndex, array, length) {
+ %GlobalPrint("InnerArrayIncludes\n");
caitp 2016/07/14 18:01:18 debug edit from early on in this branch, to be rem
if (length === 0) {
return false;
}

Powered by Google App Engine
This is Rietveld 408576698