OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/typing-asm.h" | 5 #include "src/typing-asm.h" |
6 | 6 |
7 #include <limits> | 7 #include <limits> |
8 | 8 |
9 #include "src/v8.h" | 9 #include "src/v8.h" |
10 | 10 |
(...skipping 1533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1544 computed_type_->Print(); | 1544 computed_type_->Print(); |
1545 PrintF("Expected type: "); | 1545 PrintF("Expected type: "); |
1546 expected_type_->Print(); | 1546 expected_type_->Print(); |
1547 #endif | 1547 #endif |
1548 FAIL(expr, msg); | 1548 FAIL(expr, msg); |
1549 } | 1549 } |
1550 expected_type_ = save; | 1550 expected_type_ = save; |
1551 } | 1551 } |
1552 | 1552 |
1553 | 1553 |
1554 void AsmTyper::VisitRewritableExpression(RewritableExpression* expr) { | 1554 void AsmTyper::VisitRewritableAssignmentExpression( |
| 1555 RewritableAssignmentExpression* expr) { |
1555 RECURSE(Visit(expr->expression())); | 1556 RECURSE(Visit(expr->expression())); |
1556 } | 1557 } |
1557 | 1558 |
1558 | 1559 |
1559 } // namespace internal | 1560 } // namespace internal |
1560 } // namespace v8 | 1561 } // namespace v8 |
OLD | NEW |