| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 part of analyzer2dart.element_converter; | 5 part of analyzer2dart.element_converter; |
| 6 | 6 |
| 7 | 7 |
| 8 /// Base [dart2js.Element] implementation for converted analyzer elements. | 8 /// Base [dart2js.Element] implementation for converted analyzer elements. |
| 9 class ElementY extends dart2js.Element { | 9 class ElementY extends dart2js.Element { |
| 10 final ElementConverter converter; | 10 final ElementConverter converter; |
| (...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 563 @override | 563 @override |
| 564 bool get hasLocalScopeMembers => unsupported('hasLocalScopeMembers'); | 564 bool get hasLocalScopeMembers => unsupported('hasLocalScopeMembers'); |
| 565 | 565 |
| 566 @override | 566 @override |
| 567 int get hierarchyDepth => unsupported('hierarchyDepth'); | 567 int get hierarchyDepth => unsupported('hierarchyDepth'); |
| 568 | 568 |
| 569 @override | 569 @override |
| 570 int get id => unsupported('id'); | 570 int get id => unsupported('id'); |
| 571 | 571 |
| 572 @override | 572 @override |
| 573 bool implementsFunction(compiler) => unsupported('implementsFunction'); |
| 574 |
| 575 @override |
| 573 bool implementsInterface(intrface) => unsupported('implementsInterface'); | 576 bool implementsInterface(intrface) => unsupported('implementsInterface'); |
| 574 | 577 |
| 575 @override | 578 @override |
| 576 get interfaces => unsupported('interfaces'); | 579 get interfaces => unsupported('interfaces'); |
| 577 | 580 |
| 578 @override | 581 @override |
| 579 bool get isProxy => unsupported('isProxy'); | 582 bool get isProxy => unsupported('isProxy'); |
| 580 | 583 |
| 581 @override | 584 @override |
| 582 bool isSubclassOf(cls) => unsupported('isSubclassOf'); | 585 bool isSubclassOf(cls) => unsupported('isSubclassOf'); |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 775 get immediateRedirectionTarget => unsupported('immediateRedirectionTarget'); | 778 get immediateRedirectionTarget => unsupported('immediateRedirectionTarget'); |
| 776 | 779 |
| 777 @override | 780 @override |
| 778 bool get isRedirectingFactory => unsupported('isRedirectingFactory'); | 781 bool get isRedirectingFactory => unsupported('isRedirectingFactory'); |
| 779 | 782 |
| 780 @override | 783 @override |
| 781 get nestedClosures => unsupported('nestedClosures'); | 784 get nestedClosures => unsupported('nestedClosures'); |
| 782 | 785 |
| 783 @override | 786 @override |
| 784 get type => unsupported('type'); | 787 get type => unsupported('type'); |
| 785 } | 788 } |
| OLD | NEW |