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