| Index: src/ast/prettyprinter.cc
|
| diff --git a/src/ast/prettyprinter.cc b/src/ast/prettyprinter.cc
|
| index 969025b38d53d5f1e10a6333ac5d410924efe258..9a4332bf9bc0212b997fe242487017a086985853 100644
|
| --- a/src/ast/prettyprinter.cc
|
| +++ b/src/ast/prettyprinter.cc
|
| @@ -101,10 +101,6 @@ void CallPrinter::VisitVariableDeclaration(VariableDeclaration* node) {}
|
| void CallPrinter::VisitFunctionDeclaration(FunctionDeclaration* node) {}
|
|
|
|
|
| -void CallPrinter::VisitImportDeclaration(ImportDeclaration* node) {
|
| -}
|
| -
|
| -
|
| void CallPrinter::VisitExpressionStatement(ExpressionStatement* node) {
|
| Find(node->expression());
|
| }
|
| @@ -743,13 +739,6 @@ void AstPrinter::VisitFunctionDeclaration(FunctionDeclaration* node) {
|
| }
|
|
|
|
|
| -void AstPrinter::VisitImportDeclaration(ImportDeclaration* node) {
|
| - IndentedScope indent(this, "IMPORT", node->position());
|
| - PrintLiteralIndented("NAME", node->proxy()->name(), true);
|
| - PrintLiteralIndented("FROM", node->module_specifier()->string(), true);
|
| -}
|
| -
|
| -
|
| void AstPrinter::VisitExpressionStatement(ExpressionStatement* node) {
|
| IndentedScope indent(this, "EXPRESSION STATEMENT", node->position());
|
| Visit(node->expression());
|
|
|