Index: src/compiler/typer.cc |
diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc |
index 2ab990cc012a5ba94df6b112a00962076b66451d..33e66a6ee31fa11f1ab1c3eb60f9f773460007e5 100644 |
--- a/src/compiler/typer.cc |
+++ b/src/compiler/typer.cc |
@@ -1255,6 +1255,10 @@ Type* Typer::Visitor::JSOrdinaryHasInstanceTyper(Type* lhs, Type* rhs, |
return Type::Boolean(); |
} |
+Type* Typer::Visitor::TypeJSGetSuperConstructor(Node* node) { |
+ return Type::Callable(); |
+} |
+ |
// JS context operators. |