Chromium Code Reviews| Index: src/typing-asm.cc |
| diff --git a/src/typing-asm.cc b/src/typing-asm.cc |
| index e121e7f19accd7961d5039be617780f16199b23b..bbe575ae5d20b12aa9d5de828375ee925f2d5f4b 100644 |
| --- a/src/typing-asm.cc |
| +++ b/src/typing-asm.cc |
| @@ -1211,5 +1211,12 @@ void AsmTyper::VisitWithExpectation(Expression* expr, Type* expected_type, |
| } |
| expected_type_ = save; |
| } |
| + |
| + |
| +void AsmTyper::VisitRewritableExpression(RewritableExpression* expr) { |
| + RECURSE(Visit(expr->expression())); |
| +} |
| + |
| + |
| } // namespace internal |
| } // namespace v8 |