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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 @override | 138 @override |
139 bool get isLocal => false; | 139 bool get isLocal => false; |
140 | 140 |
141 @override | 141 @override |
142 bool get isMixinApplication => false; | 142 bool get isMixinApplication => false; |
143 | 143 |
144 @override | 144 @override |
145 bool get isNative => false; | 145 bool get isNative => false; |
146 | 146 |
147 @override | 147 @override |
| 148 bool get isJsInterop => false; |
| 149 |
| 150 @override |
148 bool get isOperator => false; | 151 bool get isOperator => false; |
149 | 152 |
150 @override | 153 @override |
151 bool get isStatic => false; | 154 bool get isStatic => false; |
152 | 155 |
153 // TODO(johnniwinther): Find a more precise semantics for this. | 156 // TODO(johnniwinther): Find a more precise semantics for this. |
154 @override | 157 @override |
155 bool get isSynthesized => true; | 158 bool get isSynthesized => true; |
156 | 159 |
157 @override | 160 @override |
(...skipping 1311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1469 | 1472 |
1470 @override | 1473 @override |
1471 accept(ElementVisitor visitor, arg) { | 1474 accept(ElementVisitor visitor, arg) { |
1472 return visitor.visitFieldParameterElement(this, arg); | 1475 return visitor.visitFieldParameterElement(this, arg); |
1473 } | 1476 } |
1474 | 1477 |
1475 @override | 1478 @override |
1476 ElementKind get kind => ElementKind.INITIALIZING_FORMAL; | 1479 ElementKind get kind => ElementKind.INITIALIZING_FORMAL; |
1477 | 1480 |
1478 } | 1481 } |
OLD | NEW |