Index: src/compiler/typer.cc |
diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc |
index 352776994bf596293f1efb61b349a23e0a274838..6bec5f7777393b61e24cd5db92ecb980dc6dedd1 100644 |
--- a/src/compiler/typer.cc |
+++ b/src/compiler/typer.cc |
@@ -1322,12 +1322,9 @@ Type* Typer::Visitor::TypeJSCreateScriptContext(Node* node) { |
// JS other operators. |
+Type* Typer::Visitor::TypeJSConstruct(Node* node) { return Type::Receiver(); } |
-Type* Typer::Visitor::TypeJSCallConstruct(Node* node) { |
- return Type::Receiver(); |
-} |
- |
-Type* Typer::Visitor::TypeJSCallConstructWithSpread(Node* node) { |
+Type* Typer::Visitor::TypeJSConstructWithSpread(Node* node) { |
return Type::Receiver(); |
} |