| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index 63c8d996f0e504ea290f9ff682c1e4dba1e906d1..28d753ae443654667f9cc1b5a7cda5015fdec9f0 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -7946,15 +7946,16 @@ class CompilationCacheTable: public HashTable<CompilationCacheTable,
|
| public:
|
| // Find cached value for a string key, otherwise return null.
|
| Handle<Object> Lookup(Handle<String> src, Handle<Context> context);
|
| - Handle<Object> LookupEval(Handle<String> src, Handle<Context> context,
|
| - StrictMode strict_mode, int scope_position);
|
| + Handle<Object> LookupEval(Handle<String> src,
|
| + Handle<SharedFunctionInfo> shared,
|
| + StrictMode strict_mode, int scope_position);
|
| Handle<Object> LookupRegExp(Handle<String> source, JSRegExp::Flags flags);
|
| static Handle<CompilationCacheTable> Put(
|
| Handle<CompilationCacheTable> cache, Handle<String> src,
|
| Handle<Context> context, Handle<Object> value);
|
| static Handle<CompilationCacheTable> PutEval(
|
| Handle<CompilationCacheTable> cache, Handle<String> src,
|
| - Handle<Context> context, Handle<SharedFunctionInfo> value,
|
| + Handle<SharedFunctionInfo> context, Handle<SharedFunctionInfo> value,
|
| int scope_position);
|
| static Handle<CompilationCacheTable> PutRegExp(
|
| Handle<CompilationCacheTable> cache, Handle<String> src,
|
|
|