| Index: src/full-codegen/full-codegen.cc
|
| diff --git a/src/full-codegen/full-codegen.cc b/src/full-codegen/full-codegen.cc
|
| index 89675b6c9a22ffb2d34e215d125a11a81890f1c8..1024929484580bf243585ef926daca85139b2480 100644
|
| --- a/src/full-codegen/full-codegen.cc
|
| +++ b/src/full-codegen/full-codegen.cc
|
| @@ -1485,6 +1485,11 @@ void FullCodeGenerator::VisitCall(Call* expr) {
|
| }
|
|
|
|
|
| +void FullCodeGenerator::VisitAssignmentPattern(AssignmentPattern* pattern) {
|
| + Visit(pattern->expression());
|
| +}
|
| +
|
| +
|
| void FullCodeGenerator::VisitSpread(Spread* expr) { UNREACHABLE(); }
|
|
|
|
|
|
|