| 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 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 582 VISIT_SUPER_METHOD_COMPOUND, | 582 VISIT_SUPER_METHOD_COMPOUND, |
| 583 VISIT_SUPER_METHOD_SET_IF_NULL, | 583 VISIT_SUPER_METHOD_SET_IF_NULL, |
| 584 VISIT_SUPER_METHOD_PREFIX, | 584 VISIT_SUPER_METHOD_PREFIX, |
| 585 VISIT_SUPER_METHOD_POSTFIX, | 585 VISIT_SUPER_METHOD_POSTFIX, |
| 586 | 586 |
| 587 VISIT_UNRESOLVED_GET, | 587 VISIT_UNRESOLVED_GET, |
| 588 VISIT_UNRESOLVED_SET, | 588 VISIT_UNRESOLVED_SET, |
| 589 VISIT_UNRESOLVED_INVOKE, | 589 VISIT_UNRESOLVED_INVOKE, |
| 590 VISIT_UNRESOLVED_SUPER_GET, | 590 VISIT_UNRESOLVED_SUPER_GET, |
| 591 VISIT_UNRESOLVED_SUPER_INVOKE, | 591 VISIT_UNRESOLVED_SUPER_INVOKE, |
| 592 VISIT_UNRESOLVED_SUPER_SET, |
| 592 | 593 |
| 593 VISIT_BINARY, | 594 VISIT_BINARY, |
| 594 VISIT_INDEX, | 595 VISIT_INDEX, |
| 595 VISIT_EQUALS, | 596 VISIT_EQUALS, |
| 596 VISIT_NOT_EQUALS, | 597 VISIT_NOT_EQUALS, |
| 597 VISIT_INDEX_PREFIX, | 598 VISIT_INDEX_PREFIX, |
| 598 VISIT_INDEX_POSTFIX, | 599 VISIT_INDEX_POSTFIX, |
| 599 | 600 |
| 600 VISIT_SUPER_BINARY, | 601 VISIT_SUPER_BINARY, |
| 601 VISIT_UNRESOLVED_SUPER_BINARY, | 602 VISIT_UNRESOLVED_SUPER_BINARY, |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 751 ERROR_INVALID_INDEX_SET, | 752 ERROR_INVALID_INDEX_SET, |
| 752 ERROR_INVALID_COMPOUND_INDEX_SET, | 753 ERROR_INVALID_COMPOUND_INDEX_SET, |
| 753 ERROR_INVALID_INDEX_PREFIX, | 754 ERROR_INVALID_INDEX_PREFIX, |
| 754 ERROR_INVALID_INDEX_POSTFIX, | 755 ERROR_INVALID_INDEX_POSTFIX, |
| 755 | 756 |
| 756 VISIT_CONSTANT_GET, | 757 VISIT_CONSTANT_GET, |
| 757 VISIT_CONSTANT_INVOKE, | 758 VISIT_CONSTANT_INVOKE, |
| 758 | 759 |
| 759 PREVISIT_DEFERRED_ACCESS, | 760 PREVISIT_DEFERRED_ACCESS, |
| 760 } | 761 } |
| OLD | NEW |