| Index: src/compiler/typer.cc
|
| diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc
|
| index e426b5b0789164eac0bf2bc76a21fe23384398ac..6fb66c612d22cf9de47488ae14c96cb0bbdb6d83 100644
|
| --- a/src/compiler/typer.cc
|
| +++ b/src/compiler/typer.cc
|
| @@ -1244,9 +1244,14 @@ Type* Typer::Visitor::TypeJSDeleteProperty(Node* node) {
|
|
|
| Type* Typer::Visitor::TypeJSHasProperty(Node* node) { return Type::Boolean(); }
|
|
|
| -Type* Typer::Visitor::TypeJSInstanceOf(Node* node) { return Type::Boolean(); }
|
| +// JS instanceof operator.
|
|
|
| -Type* Typer::Visitor::TypeJSOrdinaryHasInstance(Node* node) {
|
| +Type* Typer::Visitor::JSInstanceOfTyper(Type* lhs, Type* rhs, Typer* t) {
|
| + return Type::Boolean();
|
| +}
|
| +
|
| +Type* Typer::Visitor::JSOrdinaryHasInstanceTyper(Type* lhs, Type* rhs,
|
| + Typer* t) {
|
| return Type::Boolean();
|
| }
|
|
|
|
|