Index: src/bootstrapper.cc |
diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc |
index 7e0800b0d17f008b47db594a1a0a4ecf76e5ff1b..b2a731b5061dc61f47605010fb12cb8108ea7b3a 100644 |
--- a/src/bootstrapper.cc |
+++ b/src/bootstrapper.cc |
@@ -2608,6 +2608,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); |
} |
{ // -- T y p e d A r r a y s |