| Index: src/prettyprinter.cc
|
| ===================================================================
|
| --- src/prettyprinter.cc (revision 2983)
|
| +++ src/prettyprinter.cc (working copy)
|
| @@ -358,11 +358,6 @@
|
| }
|
|
|
|
|
| -void PrettyPrinter::VisitCallEval(CallEval* node) {
|
| - VisitCall(node);
|
| -}
|
| -
|
| -
|
| void PrettyPrinter::VisitCallNew(CallNew* node) {
|
| Print("new (");
|
| Visit(node->expression());
|
| @@ -1040,11 +1035,6 @@
|
| }
|
|
|
|
|
| -void AstPrinter::VisitCallEval(CallEval* node) {
|
| - VisitCall(node);
|
| -}
|
| -
|
| -
|
| void AstPrinter::VisitCallNew(CallNew* node) {
|
| IndentedScope indent("CALL NEW");
|
| Visit(node->expression());
|
|
|