Index: src/runtime.cc |
diff --git a/src/runtime.cc b/src/runtime.cc |
index 9a6e4f6ec2091d38235a0829821efc64e0fd68b7..960d9b3d6431b90cfa2406abe8008cf657284687 100644 |
--- a/src/runtime.cc |
+++ b/src/runtime.cc |
@@ -10716,7 +10716,7 @@ RUNTIME_FUNCTION(MaybeObject*, Runtime_GetArrayKeys) { |
isolate->factory()->NewFixedArray( |
current->NumberOfLocalElements(NONE)); |
current->GetLocalElementKeys(*current_keys, NONE); |
- keys = UnionOfKeys(keys, current_keys); |
+ keys = FixedArray::UnionOfKeys(keys, current_keys); |
} |
// Erase any keys >= length. |
// TODO(adamk): Remove this step when the contract of %GetArrayKeys |