| Index: src/crankshaft/typing.cc
|
| diff --git a/src/crankshaft/typing.cc b/src/crankshaft/typing.cc
|
| index 49bc2c7ded92daf1fbc583db0636887354d7b354..a774fde5a1c637da11c6b7f24c1c579523fa07de 100644
|
| --- a/src/crankshaft/typing.cc
|
| +++ b/src/crankshaft/typing.cc
|
| @@ -397,6 +397,11 @@ void AstTyper::VisitRegExpLiteral(RegExpLiteral* expr) {
|
| }
|
|
|
|
|
| +void AstTyper::VisitAssignmentPattern(AssignmentPattern* expr) {
|
| + Visit(expr->expression());
|
| +}
|
| +
|
| +
|
| void AstTyper::VisitObjectLiteral(ObjectLiteral* expr) {
|
| ZoneList<ObjectLiteral::Property*>* properties = expr->properties();
|
| for (int i = 0; i < properties->length(); ++i) {
|
|
|