Index: src/compiler/typer.cc |
diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc |
index 33f4faf9f521175fc2f3086f3677319557bdf760..cc627c5693fc37b2e3cfdbc88f3783762629d0dc 100644 |
--- a/src/compiler/typer.cc |
+++ b/src/compiler/typer.cc |
@@ -1610,6 +1610,10 @@ Type* Typer::Visitor::TypeJSCall(Node* node) { |
return TypeUnaryOp(node, JSCallTyper); |
} |
+Type* Typer::Visitor::TypeJSCallWithArrayLike(Node* node) { |
+ return TypeUnaryOp(node, JSCallTyper); |
+} |
+ |
Type* Typer::Visitor::TypeJSCallWithSpread(Node* node) { |
return TypeUnaryOp(node, JSCallTyper); |
} |