| 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/backend_api.dart' show BackendClasses; | 7 import '../common/backend_api.dart' show BackendClasses; |
| 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' | 11 import '../elements/elements.dart' |
| 12 show Entity, JumpTarget, LabelDefinition, Local; | 12 show JumpTarget, LabelDefinition; |
| 13 import '../elements/entities.dart'; | 13 import '../elements/entities.dart'; |
| 14 import '../elements/types.dart'; | 14 import '../elements/types.dart'; |
| 15 import '../io/source_information.dart'; | 15 import '../io/source_information.dart'; |
| 16 import '../js/js.dart' as js; | 16 import '../js/js.dart' as js; |
| 17 import '../js_backend/js_backend.dart'; | 17 import '../js_backend/js_backend.dart'; |
| 18 import '../native/native.dart' as native; | 18 import '../native/native.dart' as native; |
| 19 import '../tree/dartstring.dart' as ast; | 19 import '../tree/dartstring.dart' as ast; |
| 20 import '../types/constants.dart' show computeTypeMask; | 20 import '../types/constants.dart' show computeTypeMask; |
| 21 import '../types/types.dart'; | 21 import '../types/types.dart'; |
| 22 import '../universe/selector.dart' show Selector; | 22 import '../universe/selector.dart' show Selector; |
| (...skipping 3448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3471 class HDynamicType extends HRuntimeType { | 3471 class HDynamicType extends HRuntimeType { |
| 3472 HDynamicType(DynamicType dartType, TypeMask instructionType) | 3472 HDynamicType(DynamicType dartType, TypeMask instructionType) |
| 3473 : super(const <HInstruction>[], dartType, instructionType); | 3473 : super(const <HInstruction>[], dartType, instructionType); |
| 3474 | 3474 |
| 3475 accept(HVisitor visitor) => visitor.visitDynamicType(this); | 3475 accept(HVisitor visitor) => visitor.visitDynamicType(this); |
| 3476 | 3476 |
| 3477 int typeCode() => HInstruction.DYNAMIC_TYPE_TYPECODE; | 3477 int typeCode() => HInstruction.DYNAMIC_TYPE_TYPECODE; |
| 3478 | 3478 |
| 3479 bool typeEquals(HInstruction other) => other is HDynamicType; | 3479 bool typeEquals(HInstruction other) => other is HDynamicType; |
| 3480 } | 3480 } |
| OLD | NEW |