| Index: src/hydrogen.h
|
| diff --git a/src/hydrogen.h b/src/hydrogen.h
|
| index acb1ee13dc278844176e20a3ddb478d8c3ae876b..ebd9e8b015d165c63cb21fcc8e69c530b93e3078 100644
|
| --- a/src/hydrogen.h
|
| +++ b/src/hydrogen.h
|
| @@ -2417,6 +2417,17 @@ class HOptimizedGraphBuilder : public HGraphBuilder, public AstVisitor {
|
| ElementsKind fixed_elements_kind,
|
| HValue* byte_length, HValue* length);
|
|
|
| + template <typename CollectionType>
|
| + HValue* BuildOrderedHashTableFindEntry(HValue* table, HValue* key,
|
| + HValue* hash);
|
| +
|
| + template <typename CollectionType>
|
| + void BuildJSCollectionHas(CallRuntime* call,
|
| + const Runtime::Function* c_function);
|
| +
|
| + HValue* BuildStringHashLoadIfIsStringAndHashComputed(
|
| + HValue* object, HIfContinuation* continuation);
|
| +
|
| Handle<JSFunction> array_function() {
|
| return handle(isolate()->native_context()->array_function());
|
| }
|
|
|