| Index: src/compiler/typer.cc
|
| diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc
|
| index 3952216ff08c269264e06df47bcb1b2f32b85033..490306dc6ebbb128a619c82b38774eb3cd5c830d 100644
|
| --- a/src/compiler/typer.cc
|
| +++ b/src/compiler/typer.cc
|
| @@ -1438,13 +1438,6 @@ Type* Typer::Visitor::TypeJSForInPrepare(Node* node) {
|
| return Type::Tuple(cache_type, cache_array, cache_length, zone());
|
| }
|
|
|
| -Type* Typer::Visitor::TypeJSForInDone(Node* node) { return Type::Boolean(); }
|
| -
|
| -Type* Typer::Visitor::TypeJSForInStep(Node* node) {
|
| - STATIC_ASSERT(Map::EnumLengthBits::kMax <= FixedArray::kMaxLength);
|
| - return Type::Range(1, FixedArray::kMaxLength + 1, zone());
|
| -}
|
| -
|
|
|
| Type* Typer::Visitor::TypeJSLoadMessage(Node* node) { return Type::Any(); }
|
|
|
|
|