| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index f30a8c9c2225f7401a98204648b2ff609b5b627d..9d6cdf063d691d0c151c5782228be5ad632579c3 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -6676,13 +6676,15 @@ class CompilationCacheTable: public HashTable<CompilationCacheShape,
|
| HashTableKey*> {
|
| public:
|
| // Find cached value for a string key, otherwise return null.
|
| - Object* Lookup(String* src);
|
| + Object* Lookup(String* src, Context* context);
|
| Object* LookupEval(String* src,
|
| Context* context,
|
| LanguageMode language_mode,
|
| int scope_position);
|
| Object* LookupRegExp(String* source, JSRegExp::Flags flags);
|
| - MUST_USE_RESULT MaybeObject* Put(String* src, Object* value);
|
| + MUST_USE_RESULT MaybeObject* Put(String* src,
|
| + Context* context,
|
| + Object* value);
|
| MUST_USE_RESULT MaybeObject* PutEval(String* src,
|
| Context* context,
|
| SharedFunctionInfo* value,
|
|
|