| 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 universe; | 5 library universe; |
| 6 | 6 |
| 7 import 'dart:collection'; | 7 import 'dart:collection'; |
| 8 | 8 |
| 9 import '../common/names.dart' show | 9 import '../common/names.dart' show |
| 10 Identifiers, | 10 Identifiers, |
| (...skipping 896 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 907 // Add bits from the call structure. | 907 // Add bits from the call structure. |
| 908 return Hashing.mixHashCodeBits(hash, callStructure.hashCode); | 908 return Hashing.mixHashCodeBits(hash, callStructure.hashCode); |
| 909 } | 909 } |
| 910 | 910 |
| 911 String toString() { | 911 String toString() { |
| 912 return 'Selector($kind, $name, ${callStructure.structureToString()})'; | 912 return 'Selector($kind, $name, ${callStructure.structureToString()})'; |
| 913 } | 913 } |
| 914 | 914 |
| 915 Selector toCallSelector() => new Selector.callClosureFrom(this); | 915 Selector toCallSelector() => new Selector.callClosureFrom(this); |
| 916 } | 916 } |
| OLD | NEW |