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