OLD | NEW |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 library analyzer2dart.convertedWorld; | 5 library analyzer2dart.convertedWorld; |
6 | 6 |
7 import 'dart:collection'; | 7 import 'dart:collection'; |
8 | 8 |
9 import 'package:analyzer/analyzer.dart'; | 9 import 'package:analyzer/analyzer.dart'; |
10 import 'package:compiler/implementation/elements/elements.dart' as dart2js; | 10 import 'package:compiler/src/elements/elements.dart' as dart2js; |
11 import 'package:analyzer/src/generated/element.dart' as analyzer; | 11 import 'package:analyzer/src/generated/element.dart' as analyzer; |
12 import 'package:compiler/implementation/cps_ir/cps_ir_nodes.dart' as ir; | 12 import 'package:compiler/src/cps_ir/cps_ir_nodes.dart' as ir; |
13 | 13 |
14 import 'closed_world.dart'; | 14 import 'closed_world.dart'; |
15 import 'element_converter.dart'; | 15 import 'element_converter.dart'; |
16 import 'cps_generator.dart'; | 16 import 'cps_generator.dart'; |
17 | 17 |
18 /// A [ClosedWorld] converted to the dart2js element model. | 18 /// A [ClosedWorld] converted to the dart2js element model. |
19 abstract class ConvertedWorld { | 19 abstract class ConvertedWorld { |
20 Iterable<dart2js.LibraryElement> get libraries; | 20 Iterable<dart2js.LibraryElement> get libraries; |
21 Iterable<dart2js.AstElement> get resolvedElements; | 21 Iterable<dart2js.AstElement> get resolvedElements; |
22 Iterable<dart2js.ClassElement> get instantiatedClasses; | 22 Iterable<dart2js.ClassElement> get instantiatedClasses; |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 } | 66 } |
67 } | 67 } |
68 | 68 |
69 closedWorld.executableElements.forEach(convert); | 69 closedWorld.executableElements.forEach(convert); |
70 closedWorld.variables.forEach(convert); | 70 closedWorld.variables.forEach(convert); |
71 closedWorld.fields.forEach(convert); | 71 closedWorld.fields.forEach(convert); |
72 | 72 |
73 return convertedWorld; | 73 return convertedWorld; |
74 } | 74 } |
75 | 75 |
OLD | NEW |