Index: src/bootstrapper.cc |
diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc |
index f1dce35978030aedfb9a3b8493f031af152c4190..dd6d6a01c0d7f0647fe0bcb18fe0a2fef7917574 100644 |
--- a/src/bootstrapper.cc |
+++ b/src/bootstrapper.cc |
@@ -2631,6 +2631,8 @@ void Genesis::InitializeGlobal(Handle<JSGlobalObject> global_object, |
Builtins::kTypedArrayPrototypeIndexOf, 1, false); |
SimpleInstallFunction(prototype, "lastIndexOf", |
Builtins::kTypedArrayPrototypeLastIndexOf, 1, false); |
+ SimpleInstallFunction(prototype, "reverse", |
+ Builtins::kTypedArrayPrototypeReverse, 0, false); |
} |
{ // -- T y p e d A r r a y s |