| Index: src/compiler/typer.cc
|
| diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc
|
| index ec67ba063f5e2dd95c53af761e0bc455da3830fa..f92d507dfbc3bdb3dcaf09af48aed3e02d1449c3 100644
|
| --- a/src/compiler/typer.cc
|
| +++ b/src/compiler/typer.cc
|
| @@ -1335,6 +1335,10 @@ Type* Typer::Visitor::TypeJSCreateScriptContext(Node* node) {
|
|
|
| // JS other operators.
|
|
|
| +Type* Typer::Visitor::TypeJSConstructForwardVarargs(Node* node) {
|
| + return Type::Receiver();
|
| +}
|
| +
|
| Type* Typer::Visitor::TypeJSConstruct(Node* node) { return Type::Receiver(); }
|
|
|
| Type* Typer::Visitor::TypeJSConstructWithSpread(Node* node) {
|
|
|