| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index f6c4d19e66e485354f85a2dba7f90cbc76249011..aa4756ce20a6061692eaf6f54b239753d0d22eac 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -7958,10 +7958,12 @@ class CompilationCacheTable: public HashTable<CompilationCacheTable,
|
| Handle<CompilationCacheTable> cache, Handle<String> src,
|
| JSRegExp::Flags flags, Handle<FixedArray> value);
|
| void Remove(Object* value);
|
| + void Age();
|
|
|
| DECLARE_CAST(CompilationCacheTable)
|
|
|
| private:
|
| + static const int kHashGenerations = 10;
|
| DISALLOW_IMPLICIT_CONSTRUCTORS(CompilationCacheTable);
|
| };
|
|
|
|
|