Index: src/bootstrapper.cc |
diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc |
index 803ac37bdebcf3be08f3e65843ba9181b4a7af63..65208d7f3241b01d084c4f3ed6b8dc48c390da4c 100644 |
--- a/src/bootstrapper.cc |
+++ b/src/bootstrapper.cc |
@@ -2598,6 +2598,8 @@ void Genesis::InitializeGlobal(Handle<JSGlobalObject> global_object, |
// TODO(caitp): alphasort accessors/methods |
SimpleInstallFunction(prototype, "copyWithin", |
Builtins::kTypedArrayPrototypeCopyWithin, 2, false); |
+ SimpleInstallFunction(prototype, "fill", |
+ Builtins::kTypedArrayPrototypeFill, 1, false); |
SimpleInstallFunction(prototype, "includes", |
Builtins::kTypedArrayPrototypeIncludes, 1, false); |
SimpleInstallFunction(prototype, "indexOf", |