| 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 /// Implementation of the element model used for deserialiation. | 5 /// Implementation of the element model used for deserialiation. |
| 6 /// | 6 /// |
| 7 /// These classes are created by [ElementDeserializer] triggered by the | 7 /// These classes are created by [ElementDeserializer] triggered by the |
| 8 /// [Deserializer]. | 8 /// [Deserializer]. |
| 9 | 9 |
| 10 library dart2js.serialization.modelz; | 10 library dart2js.serialization.modelz; |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 | 79 |
| 80 @override | 80 @override |
| 81 CompilationUnitElement get compilationUnit { | 81 CompilationUnitElement get compilationUnit { |
| 82 return _unsupported('compilationUnit'); | 82 return _unsupported('compilationUnit'); |
| 83 } | 83 } |
| 84 | 84 |
| 85 @override | 85 @override |
| 86 ClassElement get contextClass => _unsupported('contextClass'); | 86 ClassElement get contextClass => _unsupported('contextClass'); |
| 87 | 87 |
| 88 @override | 88 @override |
| 89 void diagnose(Element context, DiagnosticListener listener) { | |
| 90 _unsupported('diagnose'); | |
| 91 } | |
| 92 | |
| 93 @override | |
| 94 ClassElement get enclosingClass => null; | 89 ClassElement get enclosingClass => null; |
| 95 | 90 |
| 96 @override | 91 @override |
| 97 Element get enclosingClassOrCompilationUnit { | 92 Element get enclosingClassOrCompilationUnit { |
| 98 return _unsupported('enclosingClassOrCompilationUnit'); | 93 return _unsupported('enclosingClassOrCompilationUnit'); |
| 99 } | 94 } |
| 100 | 95 |
| 101 @override | 96 @override |
| 102 String get fixedBackendName => _unsupported('fixedBackendName'); | 97 String get fixedBackendName => _unsupported('fixedBackendName'); |
| 103 | 98 |
| (...skipping 1466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1570 } | 1565 } |
| 1571 | 1566 |
| 1572 @override | 1567 @override |
| 1573 ElementKind get kind => ElementKind.PREFIX; | 1568 ElementKind get kind => ElementKind.PREFIX; |
| 1574 | 1569 |
| 1575 @override | 1570 @override |
| 1576 Element lookupLocalMember(String memberName) { | 1571 Element lookupLocalMember(String memberName) { |
| 1577 return _unsupported('lookupLocalMember'); | 1572 return _unsupported('lookupLocalMember'); |
| 1578 } | 1573 } |
| 1579 } | 1574 } |
| OLD | NEW |