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 2126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2137 @override | 2137 @override |
2138 accept(ElementVisitor visitor, arg) { | 2138 accept(ElementVisitor visitor, arg) { |
2139 return visitor.visitParameterElement(this, arg); | 2139 return visitor.visitParameterElement(this, arg); |
2140 } | 2140 } |
2141 | 2141 |
2142 @override | 2142 @override |
2143 bool get isLocal => true; | 2143 bool get isLocal => true; |
2144 | 2144 |
2145 @override | 2145 @override |
2146 ElementKind get kind => ElementKind.PARAMETER; | 2146 ElementKind get kind => ElementKind.PARAMETER; |
| 2147 |
| 2148 @override |
| 2149 bool get isUnnamed => false; |
2147 } | 2150 } |
2148 | 2151 |
2149 class InitializingFormalElementZ extends LocalParameterElementZ | 2152 class InitializingFormalElementZ extends LocalParameterElementZ |
2150 implements InitializingFormalElement { | 2153 implements InitializingFormalElement { |
2151 FieldElement _fieldElement; | 2154 FieldElement _fieldElement; |
2152 | 2155 |
2153 InitializingFormalElementZ(ObjectDecoder decoder) : super(decoder); | 2156 InitializingFormalElementZ(ObjectDecoder decoder) : super(decoder); |
2154 | 2157 |
2155 @override | 2158 @override |
2156 FieldElement get fieldElement { | 2159 FieldElement get fieldElement { |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2398 } | 2401 } |
2399 | 2402 |
2400 @override | 2403 @override |
2401 Node get node => throw new UnsupportedError('${this}.node'); | 2404 Node get node => throw new UnsupportedError('${this}.node'); |
2402 | 2405 |
2403 @override | 2406 @override |
2404 bool get hasNode => false; | 2407 bool get hasNode => false; |
2405 | 2408 |
2406 String toString() => 'MetadataAnnotationZ(${constant.toDartText()})'; | 2409 String toString() => 'MetadataAnnotationZ(${constant.toDartText()})'; |
2407 } | 2410 } |
OLD | NEW |