| Index: src/ast.cc
 | 
| ===================================================================
 | 
| --- src/ast.cc	(revision 4210)
 | 
| +++ src/ast.cc	(working copy)
 | 
| @@ -507,7 +507,7 @@
 | 
|  // The following expression types are never primitive because they express
 | 
|  // Object values.
 | 
|  bool FunctionLiteral::IsPrimitive() { return false; }
 | 
| -bool FunctionBoilerplateLiteral::IsPrimitive() { return false; }
 | 
| +bool SharedFunctionInfoLiteral::IsPrimitive() { return false; }
 | 
|  bool RegExpLiteral::IsPrimitive() { return false; }
 | 
|  bool ObjectLiteral::IsPrimitive() { return false; }
 | 
|  bool ArrayLiteral::IsPrimitive() { return false; }
 | 
| @@ -858,8 +858,8 @@
 | 
|  }
 | 
|  
 | 
|  
 | 
| -void CopyAstVisitor::VisitFunctionBoilerplateLiteral(
 | 
| -    FunctionBoilerplateLiteral* expr) {
 | 
| +void CopyAstVisitor::VisitSharedFunctionInfoLiteral(
 | 
| +    SharedFunctionInfoLiteral* expr) {
 | 
|    SetStackOverflow();
 | 
|  }
 | 
|  
 | 
| 
 |