| Index: src/full-codegen.cc
|
| ===================================================================
|
| --- src/full-codegen.cc (revision 4210)
|
| +++ src/full-codegen.cc (working copy)
|
| @@ -212,9 +212,9 @@
|
| }
|
|
|
|
|
| -void FullCodeGenSyntaxChecker::VisitFunctionBoilerplateLiteral(
|
| - FunctionBoilerplateLiteral* expr) {
|
| - BAILOUT("FunctionBoilerplateLiteral");
|
| +void FullCodeGenSyntaxChecker::VisitSharedFunctionInfoLiteral(
|
| + SharedFunctionInfoLiteral* expr) {
|
| + BAILOUT("SharedFunctionInfoLiteral");
|
| }
|
|
|
|
|
| @@ -524,8 +524,8 @@
|
| array->set_undefined(j++);
|
| }
|
| } else {
|
| - Handle<JSFunction> function =
|
| - Compiler::BuildBoilerplate(decl->fun(), script(), this);
|
| + Handle<SharedFunctionInfo> function =
|
| + Compiler::BuildFunctionInfo(decl->fun(), script(), this);
|
| // Check for stack-overflow exception.
|
| if (HasStackOverflow()) return;
|
| array->set(j++, *function);
|
| @@ -998,8 +998,8 @@
|
| }
|
|
|
|
|
| -void FullCodeGenerator::VisitFunctionBoilerplateLiteral(
|
| - FunctionBoilerplateLiteral* expr) {
|
| +void FullCodeGenerator::VisitSharedFunctionInfoLiteral(
|
| + SharedFunctionInfoLiteral* expr) {
|
| UNREACHABLE();
|
| }
|
|
|
|
|