Index: src/typing.cc |
diff --git a/src/typing.cc b/src/typing.cc |
index df2cee51e9e7553404a10004922c53de4ee89294..f8e2a7c206d80ee0e4b26096f97cb4173c88132f 100644 |
--- a/src/typing.cc |
+++ b/src/typing.cc |
@@ -388,9 +388,7 @@ void AstTyper::VisitAssignment(Assignment* expr) { |
Property* prop = target->AsProperty(); |
if (prop != NULL) { |
prop->RecordTypeFeedback(oracle(), zone()); |
- if (!prop->key()->IsPropertyName()) { // i.e., keyed |
- expr->RecordTypeFeedback(oracle(), zone()); |
- } |
+ expr->RecordTypeFeedback(oracle(), zone()); |
} |
RECURSE(Visit(expr->binary_operation())); |