Index: src/bootstrapper.cc |
diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc |
index 803ac37bdebcf3be08f3e65843ba9181b4a7af63..39d34ea36beb4b6a0413ccd519c5cbd0397730f3 100644 |
--- a/src/bootstrapper.cc |
+++ b/src/bootstrapper.cc |
@@ -2604,6 +2604,8 @@ void Genesis::InitializeGlobal(Handle<JSGlobalObject> global_object, |
Builtins::kTypedArrayPrototypeIndexOf, 1, false); |
SimpleInstallFunction(prototype, "lastIndexOf", |
Builtins::kTypedArrayPrototypeLastIndexOf, 1, false); |
+ SimpleInstallFunction(prototype, "slice", |
+ Builtins::kTypedArrayPrototypeSlice, 2, false); |
} |
{ // -- T y p e d A r r a y s |