| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library dart2js.semantics_visitor_test; | 5 library dart2js.semantics_visitor_test; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 import 'dart:mirrors'; | 8 import 'dart:mirrors'; |
| 9 import 'package:async_helper/async_helper.dart'; | 9 import 'package:async_helper/async_helper.dart'; |
| 10 import 'package:expect/expect.dart'; | 10 import 'package:expect/expect.dart'; |
| (...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 667 | 667 |
| 668 VISIT_INDEX_SET, | 668 VISIT_INDEX_SET, |
| 669 VISIT_COMPOUND_INDEX_SET, | 669 VISIT_COMPOUND_INDEX_SET, |
| 670 VISIT_SUPER_INDEX_SET, | 670 VISIT_SUPER_INDEX_SET, |
| 671 VISIT_UNRESOLVED_SUPER_INDEX_SET, | 671 VISIT_UNRESOLVED_SUPER_INDEX_SET, |
| 672 VISIT_SUPER_COMPOUND_INDEX_SET, | 672 VISIT_SUPER_COMPOUND_INDEX_SET, |
| 673 VISIT_UNRESOLVED_SUPER_COMPOUND_INDEX_SET, | 673 VISIT_UNRESOLVED_SUPER_COMPOUND_INDEX_SET, |
| 674 VISIT_UNRESOLVED_SUPER_GETTER_COMPOUND_INDEX_SET, | 674 VISIT_UNRESOLVED_SUPER_GETTER_COMPOUND_INDEX_SET, |
| 675 VISIT_UNRESOLVED_SUPER_SETTER_COMPOUND_INDEX_SET, | 675 VISIT_UNRESOLVED_SUPER_SETTER_COMPOUND_INDEX_SET, |
| 676 | 676 |
| 677 VISIT_INDEX_SET_IF_NULL, |
| 678 VISIT_SUPER_INDEX_SET_IF_NULL, |
| 679 VISIT_UNRESOLVED_SUPER_INDEX_SET_IF_NULL, |
| 680 VISIT_UNRESOLVED_SUPER_GETTER_INDEX_SET_IF_NULL, |
| 681 VISIT_UNRESOLVED_SUPER_SETTER_INDEX_SET_IF_NULL, |
| 682 |
| 677 VISIT_LOGICAL_AND, | 683 VISIT_LOGICAL_AND, |
| 678 VISIT_LOGICAL_OR, | 684 VISIT_LOGICAL_OR, |
| 679 VISIT_IS, | 685 VISIT_IS, |
| 680 VISIT_IS_NOT, | 686 VISIT_IS_NOT, |
| 681 VISIT_AS, | 687 VISIT_AS, |
| 682 | 688 |
| 683 VISIT_CONST_CONSTRUCTOR_INVOKE, | 689 VISIT_CONST_CONSTRUCTOR_INVOKE, |
| 684 VISIT_BOOL_FROM_ENVIRONMENT_CONSTRUCTOR_INVOKE, | 690 VISIT_BOOL_FROM_ENVIRONMENT_CONSTRUCTOR_INVOKE, |
| 685 VISIT_INT_FROM_ENVIRONMENT_CONSTRUCTOR_INVOKE, | 691 VISIT_INT_FROM_ENVIRONMENT_CONSTRUCTOR_INVOKE, |
| 686 VISIT_STRING_FROM_ENVIRONMENT_CONSTRUCTOR_INVOKE, | 692 VISIT_STRING_FROM_ENVIRONMENT_CONSTRUCTOR_INVOKE, |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 752 ERROR_INVALID_INDEX_SET, | 758 ERROR_INVALID_INDEX_SET, |
| 753 ERROR_INVALID_COMPOUND_INDEX_SET, | 759 ERROR_INVALID_COMPOUND_INDEX_SET, |
| 754 ERROR_INVALID_INDEX_PREFIX, | 760 ERROR_INVALID_INDEX_PREFIX, |
| 755 ERROR_INVALID_INDEX_POSTFIX, | 761 ERROR_INVALID_INDEX_POSTFIX, |
| 756 | 762 |
| 757 VISIT_CONSTANT_GET, | 763 VISIT_CONSTANT_GET, |
| 758 VISIT_CONSTANT_INVOKE, | 764 VISIT_CONSTANT_INVOKE, |
| 759 | 765 |
| 760 PREVISIT_DEFERRED_ACCESS, | 766 PREVISIT_DEFERRED_ACCESS, |
| 761 } | 767 } |
| OLD | NEW |