Index: src/compiler/typer.cc |
diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc |
index 6fb66c612d22cf9de47488ae14c96cb0bbdb6d83..74e022f450b0f70ac60389b9f43777e3da2e69f0 100644 |
--- a/src/compiler/typer.cc |
+++ b/src/compiler/typer.cc |
@@ -1046,6 +1046,9 @@ Type* Typer::Visitor::TypeJSTypeOf(Node* node) { |
return Type::InternalizedString(); |
} |
+Type* Typer::Visitor::TypeJSIsUndetectable(Node* node) { |
+ return Type::Boolean(); |
+} |
// JS conversion operators. |