Index: src/bootstrapper.cc |
diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc |
index dd6d6a01c0d7f0647fe0bcb18fe0a2fef7917574..cf7d6948ee45e56d3706398204696fd0fc62f8a5 100644 |
--- a/src/bootstrapper.cc |
+++ b/src/bootstrapper.cc |
@@ -2633,6 +2633,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 |