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; |
11 | 11 |
12 import '../common.dart'; | 12 import '../common.dart'; |
13 import '../common/resolution.dart' show | 13 import '../common/resolution.dart' show |
14 Resolution; | 14 Resolution; |
15 import '../compiler.dart' | 15 import '../compiler.dart' |
16 show Compiler; | 16 show Compiler; |
17 import '../constants/constructors.dart'; | 17 import '../constants/constructors.dart'; |
18 import '../constants/expressions.dart'; | 18 import '../constants/expressions.dart'; |
| 19 import '../core_types.dart'; |
19 import '../dart_types.dart'; | 20 import '../dart_types.dart'; |
20 import '../elements/elements.dart'; | 21 import '../elements/elements.dart'; |
21 import '../elements/modelx.dart' show | 22 import '../elements/modelx.dart' show |
22 FunctionSignatureX; | 23 FunctionSignatureX; |
23 import '../elements/common.dart'; | 24 import '../elements/common.dart'; |
24 import '../elements/visitor.dart'; | 25 import '../elements/visitor.dart'; |
25 import '../io/source_file.dart'; | 26 import '../io/source_file.dart'; |
26 import '../ordered_typeset.dart'; | 27 import '../ordered_typeset.dart'; |
27 import '../resolution/class_members.dart' as class_members; | 28 import '../resolution/class_members.dart' as class_members; |
28 import '../resolution/tree_elements.dart' show | 29 import '../resolution/tree_elements.dart' show |
(...skipping 1537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1566 } | 1567 } |
1567 | 1568 |
1568 @override | 1569 @override |
1569 ElementKind get kind => ElementKind.PREFIX; | 1570 ElementKind get kind => ElementKind.PREFIX; |
1570 | 1571 |
1571 @override | 1572 @override |
1572 Element lookupLocalMember(String memberName) { | 1573 Element lookupLocalMember(String memberName) { |
1573 return _unsupported('lookupLocalMember'); | 1574 return _unsupported('lookupLocalMember'); |
1574 } | 1575 } |
1575 } | 1576 } |
OLD | NEW |