| Index: src/flow-graph.cc
|
| diff --git a/src/flow-graph.cc b/src/flow-graph.cc
|
| index e4e420c7d6f2e04cb0d71055049a14688b82fe40..0b034e2f17f29582d9a20794cf9f8ee644152cae 100644
|
| --- a/src/flow-graph.cc
|
| +++ b/src/flow-graph.cc
|
| @@ -631,7 +631,7 @@ void InstructionPrinter::VisitAssignment(Assignment* expr) {
|
|
|
| // Print the left-hand side.
|
| Visit(expr->target());
|
| - if (var == NULL && prop == NULL) return; // Throw reference error.
|
| + if (var == NULL && prop == NULL) return; // Throw reference error.
|
| PrintF(" = ");
|
| // For compound assignments, print the left-hand side again and the
|
| // corresponding binary operator.
|
|
|