| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 dart2js.world; | 5 library dart2js.world; |
| 6 | 6 |
| 7 import 'closure.dart' show ClosureClassElement, SynthesizedCallMethodElementX; | 7 import 'closure.dart' show ClosureClassElement, SynthesizedCallMethodElementX; |
| 8 import 'common.dart'; | 8 import 'common.dart'; |
| 9 import 'constants/constant_system.dart'; | 9 import 'constants/constant_system.dart'; |
| 10 import 'common_elements.dart' show CommonElements; | 10 import 'common_elements.dart' show CommonElements; |
| (...skipping 1102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1113 return getMightBePassedToApply(element.expression); | 1113 return getMightBePassedToApply(element.expression); |
| 1114 } | 1114 } |
| 1115 return _functionsThatMightBePassedToApply.contains(element); | 1115 return _functionsThatMightBePassedToApply.contains(element); |
| 1116 } | 1116 } |
| 1117 | 1117 |
| 1118 @override | 1118 @override |
| 1119 bool getCurrentlyKnownMightBePassedToApply(Entity element) { | 1119 bool getCurrentlyKnownMightBePassedToApply(Entity element) { |
| 1120 return getMightBePassedToApply(element); | 1120 return getMightBePassedToApply(element); |
| 1121 } | 1121 } |
| 1122 | 1122 |
| 1123 // TODO(johnniwinther): Support [cls] as a [ClassEntity]. | |
| 1124 @override | 1123 @override |
| 1125 String dump([ClassElement cls]) { | 1124 String dump([ClassEntity cls]) { |
| 1125 if (cls is! ClassElement) { |
| 1126 // TODO(johnniwinther): Support [cls] as a [ClassEntity]. |
| 1127 cls = null; |
| 1128 } |
| 1126 StringBuffer sb = new StringBuffer(); | 1129 StringBuffer sb = new StringBuffer(); |
| 1127 if (cls != null) { | 1130 if (cls != null) { |
| 1128 sb.write("Classes in the closed world related to $cls:\n"); | 1131 sb.write("Classes in the closed world related to $cls:\n"); |
| 1129 } else { | 1132 } else { |
| 1130 sb.write("Instantiated classes in the closed world:\n"); | 1133 sb.write("Instantiated classes in the closed world:\n"); |
| 1131 } | 1134 } |
| 1132 getClassHierarchyNode(commonElements.objectClass) | 1135 getClassHierarchyNode(commonElements.objectClass) |
| 1133 .printOn(sb, ' ', instantiatedOnly: cls == null, withRespectTo: cls); | 1136 .printOn(sb, ' ', instantiatedOnly: cls == null, withRespectTo: cls); |
| 1134 return sb.toString(); | 1137 return sb.toString(); |
| 1135 } | 1138 } |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1358 @override | 1361 @override |
| 1359 void registerClosureClass(ClassElement cls) { | 1362 void registerClosureClass(ClassElement cls) { |
| 1360 throw new UnimplementedError('KernelClosedWorld.registerClosureClass'); | 1363 throw new UnimplementedError('KernelClosedWorld.registerClosureClass'); |
| 1361 } | 1364 } |
| 1362 | 1365 |
| 1363 @override | 1366 @override |
| 1364 bool hasElementIn(ClassEntity cls, Selector selector, Entity element) { | 1367 bool hasElementIn(ClassEntity cls, Selector selector, Entity element) { |
| 1365 throw new UnimplementedError('KernelClosedWorld.hasElementIn'); | 1368 throw new UnimplementedError('KernelClosedWorld.hasElementIn'); |
| 1366 } | 1369 } |
| 1367 } | 1370 } |
| OLD | NEW |