Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(154)

Side by Side Diff: pkg/compiler/lib/src/universe/call_structure.dart

Issue 1342503004: Prepare for moving Selector and CallStructure into their own libraries. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | pkg/compiler/lib/src/universe/selector.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | pkg/compiler/lib/src/universe/selector.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698