| Index: src/compiler/typer.cc
|
| diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc
|
| index cb9073afb531dc59e1bbcc11019e36b3ed2de1ee..cecdea3b4f41a5b171d144db48906fb57fd27272 100644
|
| --- a/src/compiler/typer.cc
|
| +++ b/src/compiler/typer.cc
|
| @@ -1233,11 +1233,16 @@
|
|
|
|
|
| Type* Typer::Visitor::TypeJSCreateLiteralArray(Node* node) {
|
| - return Type::None(), Type::OtherObject();
|
| + return Type::OtherObject();
|
| }
|
|
|
|
|
| Type* Typer::Visitor::TypeJSCreateLiteralObject(Node* node) {
|
| + return Type::OtherObject();
|
| +}
|
| +
|
| +
|
| +Type* Typer::Visitor::TypeJSCreateLiteralRegExp(Node* node) {
|
| return Type::OtherObject();
|
| }
|
|
|
|
|