 Chromium Code Reviews
 Chromium Code Reviews Issue 3518005:
  Make some free functions into static members of class Parser.  (Closed)
    
  
    Issue 3518005:
  Make some free functions into static members of class Parser.  (Closed) 
  | Index: src/compiler.h | 
| diff --git a/src/compiler.h b/src/compiler.h | 
| index ae0d6def6d1acad150112ed41292803ed33db99a..d8eb3a68f408537ca200717c8bb5f5e83b5268cc 100644 | 
| --- a/src/compiler.h | 
| +++ b/src/compiler.h | 
| @@ -30,13 +30,14 @@ | 
| #include "ast.h" | 
| #include "frame-element.h" | 
| -#include "parser.h" | 
| #include "register-allocator.h" | 
| #include "zone.h" | 
| namespace v8 { | 
| namespace internal { | 
| +class ScriptDataImpl; | 
| + | 
| // CompilationInfo encapsulates some information known at compile time. It | 
| // is constructed based on the resources available at compile-time. | 
| class CompilationInfo BASE_EMBEDDED { |