Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index a3c9cc2d0a945b06b449d488929053abe7bae702..e673de4a0a7e416e15ea7d042231c262f348e8cf 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -5395,6 +5395,11 @@ class GlobalObject: public JSObject { |
} |
// Ensure that the global object has a cell for the given property name. |
+ static Handle<JSGlobalPropertyCell> EnsurePropertyCell( |
+ Handle<GlobalObject> global, |
+ Handle<String> name); |
+ // TODO(kmillikin): This function can be eliminated once the stub cache is |
+ // full handlified (and the static helper can be written directly). |
MUST_USE_RESULT MaybeObject* EnsurePropertyCell(String* name); |
// Casting. |