| 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/backend_api.dart' show BackendClasses; | 8 import 'common/backend_api.dart' show BackendClasses; |
| 9 import 'common.dart'; | 9 import 'common.dart'; |
| 10 import 'constants/constant_system.dart'; | 10 import 'constants/constant_system.dart'; |
| 11 import 'core_types.dart' show CommonElements; | 11 import 'core_types.dart' show CommonElements; |
| 12 import 'dart_types.dart'; | 12 import 'elements/resolution_types.dart'; |
| 13 import 'elements/elements.dart' | 13 import 'elements/elements.dart' |
| 14 show | 14 show |
| 15 ClassElement, | 15 ClassElement, |
| 16 Element, | 16 Element, |
| 17 FunctionElement, | 17 FunctionElement, |
| 18 MemberElement, | 18 MemberElement, |
| 19 MixinApplicationElement, | 19 MixinApplicationElement, |
| 20 TypedefElement, | 20 TypedefElement, |
| 21 FieldElement; | 21 FieldElement; |
| 22 import 'js_backend/backend.dart' show JavaScriptBackend; | 22 import 'js_backend/backend.dart' show JavaScriptBackend; |
| (...skipping 1080 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1103 return getMightBePassedToApply(element.expression); | 1103 return getMightBePassedToApply(element.expression); |
| 1104 } | 1104 } |
| 1105 return functionsThatMightBePassedToApply.contains(element); | 1105 return functionsThatMightBePassedToApply.contains(element); |
| 1106 } | 1106 } |
| 1107 | 1107 |
| 1108 @override | 1108 @override |
| 1109 bool getCurrentlyKnownMightBePassedToApply(Element element) { | 1109 bool getCurrentlyKnownMightBePassedToApply(Element element) { |
| 1110 return getMightBePassedToApply(element); | 1110 return getMightBePassedToApply(element); |
| 1111 } | 1111 } |
| 1112 } | 1112 } |
| OLD | NEW |