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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 @override | 130 @override |
131 bool get isLocal => false; | 131 bool get isLocal => false; |
132 | 132 |
133 @override | 133 @override |
134 bool get isMixinApplication => false; | 134 bool get isMixinApplication => false; |
135 | 135 |
136 @override | 136 @override |
137 bool get isNative => false; | 137 bool get isNative => false; |
138 | 138 |
139 @override | 139 @override |
| 140 bool get isJsInterop => false; |
| 141 |
| 142 @override |
| 143 String get jsInteropName => null; |
| 144 |
| 145 @override |
140 bool get isOperator => false; | 146 bool get isOperator => false; |
141 | 147 |
142 @override | 148 @override |
143 bool get isStatic => false; | 149 bool get isStatic => false; |
144 | 150 |
145 // TODO(johnniwinther): Find a more precise semantics for this. | 151 // TODO(johnniwinther): Find a more precise semantics for this. |
146 @override | 152 @override |
147 bool get isSynthesized => true; | 153 bool get isSynthesized => true; |
148 | 154 |
149 @override | 155 @override |
(...skipping 1416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1566 } | 1572 } |
1567 | 1573 |
1568 @override | 1574 @override |
1569 ElementKind get kind => ElementKind.PREFIX; | 1575 ElementKind get kind => ElementKind.PREFIX; |
1570 | 1576 |
1571 @override | 1577 @override |
1572 Element lookupLocalMember(String memberName) { | 1578 Element lookupLocalMember(String memberName) { |
1573 return _unsupported('lookupLocalMember'); | 1579 return _unsupported('lookupLocalMember'); |
1574 } | 1580 } |
1575 } | 1581 } |
OLD | NEW |