Chromium Code Reviews| Index: src/typing.cc |
| diff --git a/src/typing.cc b/src/typing.cc |
| index 22e4b219d9d05ffdacfba20d3278f8b852326465..1cb7577775622c59880638d2d2bf5067cf5c6d7f 100644 |
| --- a/src/typing.cc |
| +++ b/src/typing.cc |
| @@ -742,6 +742,11 @@ void AstTyper::VisitCompareOperation(CompareOperation* expr) { |
| void AstTyper::VisitSpread(Spread* expr) { RECURSE(Visit(expr->expression())); } |
| +void AstTyper::VisitEmptyParentheses(EmptyParentheses* expr) { |
| + UNREACHABLE(); |
| +} |
| + |
| + |
| void AstTyper::VisitThisFunction(ThisFunction* expr) { |
| } |