| Index: src/full-codegen.cc
|
| diff --git a/src/full-codegen.cc b/src/full-codegen.cc
|
| index f77c82df5129019d1f686a6c6e1ccf23491dc882..eac917e34250df523d7877d81a91dd36dfce10d9 100644
|
| --- a/src/full-codegen.cc
|
| +++ b/src/full-codegen.cc
|
| @@ -615,31 +615,6 @@ void FullCodeGenerator::VisitDeclarations(
|
| }
|
|
|
|
|
| -void FullCodeGenerator::VisitVariableDeclaration(VariableDeclaration* decl) {
|
| - EmitDeclaration(decl->proxy(), decl->mode(), NULL);
|
| -}
|
| -
|
| -
|
| -void FullCodeGenerator::VisitFunctionDeclaration(FunctionDeclaration* decl) {
|
| - EmitDeclaration(decl->proxy(), decl->mode(), decl->fun());
|
| -}
|
| -
|
| -
|
| -void FullCodeGenerator::VisitModuleDeclaration(ModuleDeclaration* decl) {
|
| - EmitDeclaration(decl->proxy(), decl->mode(), NULL);
|
| -}
|
| -
|
| -
|
| -void FullCodeGenerator::VisitImportDeclaration(ImportDeclaration* decl) {
|
| - EmitDeclaration(decl->proxy(), decl->mode(), NULL);
|
| -}
|
| -
|
| -
|
| -void FullCodeGenerator::VisitExportDeclaration(ExportDeclaration* decl) {
|
| - // TODO(rossberg)
|
| -}
|
| -
|
| -
|
| void FullCodeGenerator::VisitModuleLiteral(ModuleLiteral* module) {
|
| // TODO(rossberg)
|
| }
|
|
|