| Index: src/compiler/typer.cc
|
| diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc
|
| index 2f508d336e724400e6ef2df31ba00ea2af1cf0f0..7c2565cc42ee493fa03b185d675b2e8b92191694 100644
|
| --- a/src/compiler/typer.cc
|
| +++ b/src/compiler/typer.cc
|
| @@ -820,12 +820,15 @@ Type* Typer::Visitor::TypeFrameState(Node* node) {
|
|
|
| Type* Typer::Visitor::TypeStateValues(Node* node) { return Type::Internal(); }
|
|
|
| -Type* Typer::Visitor::TypeObjectState(Node* node) { return Type::Internal(); }
|
| -
|
| Type* Typer::Visitor::TypeTypedStateValues(Node* node) {
|
| return Type::Internal();
|
| }
|
|
|
| +Type* Typer::Visitor::TypeObjectState(Node* node) { return Type::Internal(); }
|
| +
|
| +Type* Typer::Visitor::TypeTypedObjectState(Node* node) {
|
| + return Type::Internal();
|
| +}
|
|
|
| Type* Typer::Visitor::TypeCall(Node* node) { return Type::Any(); }
|
|
|
|
|