Index: src/bootstrapper.cc |
diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc |
index e1850c8adb7cc3164bc81ff4e7098544a7c2fea4..ad7e0573b2d1a819e8dda73a466a0d6478ea5aab 100644 |
--- a/src/bootstrapper.cc |
+++ b/src/bootstrapper.cc |
@@ -2612,6 +2612,8 @@ void Genesis::InitializeGlobal(Handle<JSGlobalObject> global_object, |
// TODO(caitp): alphasort accessors/methods |
SimpleInstallFunction(prototype, "copyWithin", |
Builtins::kTypedArrayPrototypeCopyWithin, 2, false); |
+ SimpleInstallFunction(prototype, "includes", |
+ Builtins::kTypedArrayPrototypeIncludes, 1, false); |
} |
{ // -- T y p e d A r r a y s |