Index: src/code-factory.cc |
diff --git a/src/code-factory.cc b/src/code-factory.cc |
index 798ca38aef761140bd409a2facc89bb6d1e523ff..2b88929e44ae33764136a779bf54e81706178797 100644 |
--- a/src/code-factory.cc |
+++ b/src/code-factory.cc |
@@ -123,6 +123,15 @@ Callable CodeFactory::StoreICInOptimizedCode(Isolate* isolate, |
StoreWithVectorDescriptor(isolate)); |
} |
+// static |
+Callable CodeFactory::StoreIC_Uninitialized(Isolate* isolate, |
+ LanguageMode language_mode) { |
+ return Callable(language_mode == STRICT |
+ ? isolate->builtins()->StoreICStrict_Uninitialized() |
+ : isolate->builtins()->StoreIC_Uninitialized(), |
+ StoreWithVectorDescriptor(isolate)); |
+} |
+ |
Callable CodeFactory::StoreOwnIC(Isolate* isolate) { |
// TODO(ishell): Currently we use StoreOwnIC only for storing properties that |
// already exist in the boilerplate therefore we can use StoreIC. |