| Index: src/compilation-cache.h
|
| ===================================================================
|
| --- src/compilation-cache.h (revision 4909)
|
| +++ src/compilation-cache.h (working copy)
|
| @@ -86,8 +86,7 @@
|
| // Sub-cache for scripts.
|
| class CompilationCacheScript : public CompilationSubCache {
|
| public:
|
| - explicit CompilationCacheScript(int generations)
|
| - : CompilationSubCache(generations) { }
|
| + explicit CompilationCacheScript(int generations);
|
|
|
| Handle<SharedFunctionInfo> Lookup(Handle<String> source,
|
| Handle<Object> name,
|
| @@ -105,6 +104,9 @@
|
| int line_offset,
|
| int column_offset);
|
|
|
| + void* script_histogram_;
|
| + bool script_histogram_initialized_;
|
| +
|
| DISALLOW_IMPLICIT_CONSTRUCTORS(CompilationCacheScript);
|
| };
|
|
|
|
|