 Chromium Code Reviews
 Chromium Code Reviews Issue 4146006:
  Make Parser class have no friends and fewer things to depend on it.  (Closed)
    
  
    Issue 4146006:
  Make Parser class have no friends and fewer things to depend on it.  (Closed) 
  | Index: src/liveedit.cc | 
| diff --git a/src/liveedit.cc b/src/liveedit.cc | 
| index 49f221a466e0749870159709ba01957c880e023d..642b3e6a0476dabf408d69a3549dac87a104beba 100644 | 
| --- a/src/liveedit.cc | 
| +++ b/src/liveedit.cc | 
| @@ -404,7 +404,7 @@ static void CompileScriptForTracker(Handle<Script> script) { | 
| // Build AST. | 
| CompilationInfo info(script); | 
| info.MarkAsGlobal(); | 
| - if (Parser::Parse(&info)) { | 
| + if (ParserApi::Parse(&info)) { | 
| // Compile the code. | 
| LiveEditFunctionTracker tracker(info.function()); | 
| if (Compiler::MakeCodeForLiveEdit(&info)) { |