| 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 import '../closure.dart'; | 5 import '../closure.dart'; |
| 6 import '../common.dart'; | 6 import '../common.dart'; |
| 7 import '../common_elements.dart' show CommonElements; | 7 import '../common_elements.dart' show CommonElements; |
| 8 import '../compiler.dart' show Compiler; | 8 import '../compiler.dart' show Compiler; |
| 9 import '../constants/constant_system.dart'; | 9 import '../constants/constant_system.dart'; |
| 10 import '../constants/values.dart'; | 10 import '../constants/values.dart'; |
| 11 import '../elements/elements.dart' show JumpTarget, LabelDefinition; | |
| 12 import '../elements/entities.dart'; | 11 import '../elements/entities.dart'; |
| 12 import '../elements/jumps.dart'; |
| 13 import '../elements/types.dart'; | 13 import '../elements/types.dart'; |
| 14 import '../io/source_information.dart'; | 14 import '../io/source_information.dart'; |
| 15 import '../js/js.dart' as js; | 15 import '../js/js.dart' as js; |
| 16 import '../js_backend/js_backend.dart'; | 16 import '../js_backend/js_backend.dart'; |
| 17 import '../native/native.dart' as native; | 17 import '../native/native.dart' as native; |
| 18 import '../types/constants.dart' show computeTypeMask; | 18 import '../types/constants.dart' show computeTypeMask; |
| 19 import '../types/types.dart'; | 19 import '../types/types.dart'; |
| 20 import '../universe/selector.dart' show Selector; | 20 import '../universe/selector.dart' show Selector; |
| 21 import '../universe/side_effects.dart' show SideEffects; | 21 import '../universe/side_effects.dart' show SideEffects; |
| 22 import '../util/util.dart'; | 22 import '../util/util.dart'; |
| (...skipping 3521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3544 // ignore: MISSING_RETURN | 3544 // ignore: MISSING_RETURN |
| 3545 String get kindAsString { | 3545 String get kindAsString { |
| 3546 switch (kind) { | 3546 switch (kind) { |
| 3547 case TypeInfoExpressionKind.COMPLETE: | 3547 case TypeInfoExpressionKind.COMPLETE: |
| 3548 return 'COMPLETE'; | 3548 return 'COMPLETE'; |
| 3549 case TypeInfoExpressionKind.INSTANCE: | 3549 case TypeInfoExpressionKind.INSTANCE: |
| 3550 return 'INSTANCE'; | 3550 return 'INSTANCE'; |
| 3551 } | 3551 } |
| 3552 } | 3552 } |
| 3553 } | 3553 } |
| OLD | NEW |