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 |
| 151 String get jsInteropName => null; |
| 152 |
| 153 @override |
148 bool get isOperator => false; | 154 bool get isOperator => false; |
149 | 155 |
150 @override | 156 @override |
151 bool get isStatic => false; | 157 bool get isStatic => false; |
152 | 158 |
153 // TODO(johnniwinther): Find a more precise semantics for this. | 159 // TODO(johnniwinther): Find a more precise semantics for this. |
154 @override | 160 @override |
155 bool get isSynthesized => true; | 161 bool get isSynthesized => true; |
156 | 162 |
157 @override | 163 @override |
(...skipping 1311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1469 | 1475 |
1470 @override | 1476 @override |
1471 accept(ElementVisitor visitor, arg) { | 1477 accept(ElementVisitor visitor, arg) { |
1472 return visitor.visitFieldParameterElement(this, arg); | 1478 return visitor.visitFieldParameterElement(this, arg); |
1473 } | 1479 } |
1474 | 1480 |
1475 @override | 1481 @override |
1476 ElementKind get kind => ElementKind.INITIALIZING_FORMAL; | 1482 ElementKind get kind => ElementKind.INITIALIZING_FORMAL; |
1477 | 1483 |
1478 } | 1484 } |
OLD | NEW |