| Index: src/compiler/typer.cc
|
| diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc
|
| index 83819acf18621efbbd3b6515944ca674221e9a6b..d656535a4a1eb0f390bb9e66fbd1292ae0501f11 100644
|
| --- a/src/compiler/typer.cc
|
| +++ b/src/compiler/typer.cc
|
| @@ -1480,6 +1480,11 @@ Type* Typer::Visitor::TypeJSCallRuntime(Node* node) {
|
| }
|
|
|
|
|
| +Type* Typer::Visitor::TypeJSConvertReceiver(Node* node) {
|
| + return Type::Receiver();
|
| +}
|
| +
|
| +
|
| Type* Typer::Visitor::TypeJSForInNext(Node* node) {
|
| return Type::Union(Type::Name(), Type::Undefined(), zone());
|
| }
|
|
|