| Index: src/compiler/typer.cc
|
| diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc
|
| index b6ad29713277d9cd25cbf3cebe12a387ad2cc6b1..5b7a917e7664d9ed471ed30a6d9e0e7e4aed9c68 100644
|
| --- a/src/compiler/typer.cc
|
| +++ b/src/compiler/typer.cc
|
| @@ -1215,6 +1215,11 @@ Type* Typer::Visitor::TypeJSCreateArguments(Node* node) {
|
| }
|
|
|
|
|
| +Type* Typer::Visitor::TypeJSCreateArray(Node* node) {
|
| + return Type::OtherObject();
|
| +}
|
| +
|
| +
|
| Type* Typer::Visitor::TypeJSCreateClosure(Node* node) {
|
| return Type::OtherObject();
|
| }
|
| @@ -1380,6 +1385,11 @@ Type* Typer::Visitor::TypeJSStoreContext(Node* node) {
|
| }
|
|
|
|
|
| +Type* Typer::Visitor::TypeJSLoadNativeContext(Node* node) {
|
| + return Type::Intersect(Type::Internal(), Type::TaggedPointer(), zone());
|
| +}
|
| +
|
| +
|
| Type* Typer::Visitor::TypeJSLoadDynamic(Node* node) { return Type::Any(); }
|
|
|
|
|
|
|