| Index: src/typing.cc
|
| diff --git a/src/typing.cc b/src/typing.cc
|
| index 596ea2c612ca0cbe4daeee72f5e41d9e6f9cfe7a..d68f3ea83efb241796e3151d45943baa98d68e1f 100644
|
| --- a/src/typing.cc
|
| +++ b/src/typing.cc
|
| @@ -323,7 +323,7 @@ void AstTyper::VisitForStatement(ForStatement* stmt) {
|
| void AstTyper::VisitForInStatement(ForInStatement* stmt) {
|
| // Collect type feedback.
|
| stmt->set_for_in_type(static_cast<ForInStatement::ForInType>(
|
| - oracle()->ForInType(stmt->ForInFeedbackId())));
|
| + oracle()->ForInType(stmt->ForInFeedbackSlot())));
|
|
|
| RECURSE(Visit(stmt->enumerable()));
|
| store_.Forget(); // Control may transfer here via looping or 'continue'.
|
|
|