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

Side by Side Diff: pkg/compiler/lib/src/resolution/constructors.dart

Issue 1348063002: Make the universe parts into small 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
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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.resolution.constructors; 5 library dart2js.resolution.constructors;
6 import '../compiler.dart' show 6 import '../compiler.dart' show
7 Compiler; 7 Compiler;
8 import '../constants/constructors.dart' show 8 import '../constants/constructors.dart' show
9 GenerativeConstantConstructor, 9 GenerativeConstantConstructor,
10 RedirectingGenerativeConstantConstructor; 10 RedirectingGenerativeConstantConstructor;
(...skipping 10 matching lines...) Expand all
21 ConstructorElementX, 21 ConstructorElementX,
22 ErroneousConstructorElementX, 22 ErroneousConstructorElementX,
23 ErroneousElementX, 23 ErroneousElementX,
24 ErroneousFieldElementX, 24 ErroneousFieldElementX,
25 FieldElementX, 25 FieldElementX,
26 InitializingFormalElementX, 26 InitializingFormalElementX,
27 ParameterElementX; 27 ParameterElementX;
28 import '../tree/tree.dart'; 28 import '../tree/tree.dart';
29 import '../util/util.dart' show 29 import '../util/util.dart' show
30 Link; 30 Link;
31 import '../universe/universe.dart' show 31 import '../universe/call_structure.dart' show
32 CallStructure, 32 CallStructure;
33 import '../universe/selector.dart' show
33 Selector; 34 Selector;
34 35
35 import 'members.dart' show 36 import 'members.dart' show
36 lookupInScope, 37 lookupInScope,
37 ResolverVisitor; 38 ResolverVisitor;
38 import 'registry.dart' show 39 import 'registry.dart' show
39 ResolutionRegistry; 40 ResolutionRegistry;
40 import 'resolution_common.dart' show 41 import 'resolution_common.dart' show
41 CommonResolverVisitor; 42 CommonResolverVisitor;
42 import 'resolution_result.dart'; 43 import 'resolution_result.dart';
(...skipping 677 matching lines...) Expand 10 before | Expand all | Expand 10 after
720 sb.write('type=$type'); 721 sb.write('type=$type');
721 } else if (element != null) { 722 } else if (element != null) {
722 sb.write('element=$element'); 723 sb.write('element=$element');
723 } else { 724 } else {
724 sb.write('type=$type'); 725 sb.write('type=$type');
725 } 726 }
726 sb.write(')'); 727 sb.write(')');
727 return sb.toString(); 728 return sb.toString();
728 } 729 }
729 } 730 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/resolution/class_hierarchy.dart ('k') | pkg/compiler/lib/src/resolution/members.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698