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