| Index: src/ast/prettyprinter.cc
|
| diff --git a/src/ast/prettyprinter.cc b/src/ast/prettyprinter.cc
|
| index 0e9986a438166effbd55f2eb54ae9fa2d7f3f02e..9cc841601d9f9fed9824dc3d4d983e84b2bb8533 100644
|
| --- a/src/ast/prettyprinter.cc
|
| +++ b/src/ast/prettyprinter.cc
|
| @@ -412,7 +412,8 @@
|
| }
|
|
|
|
|
| -void CallPrinter::VisitRewritableExpression(RewritableExpression* node) {
|
| +void CallPrinter::VisitRewritableAssignmentExpression(
|
| + RewritableAssignmentExpression* node) {
|
| Find(node->expression());
|
| }
|
|
|
| @@ -928,7 +929,8 @@
|
| }
|
|
|
|
|
| -void PrettyPrinter::VisitRewritableExpression(RewritableExpression* node) {
|
| +void PrettyPrinter::VisitRewritableAssignmentExpression(
|
| + RewritableAssignmentExpression* node) {
|
| Visit(node->expression());
|
| }
|
|
|
| @@ -1703,7 +1705,8 @@
|
| }
|
|
|
|
|
| -void AstPrinter::VisitRewritableExpression(RewritableExpression* node) {
|
| +void AstPrinter::VisitRewritableAssignmentExpression(
|
| + RewritableAssignmentExpression* node) {
|
| Visit(node->expression());
|
| }
|
|
|
|
|