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

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

Issue 1152963003: Split resolution/members.dart into several parts. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 7 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) 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 resolution; 5 library resolution;
6 6
7 import 'dart:collection' show Queue; 7 import 'dart:collection' show Queue;
8 8
9 import '../compile_time_constants.dart'; 9 import '../compile_time_constants.dart';
10 import '../constants/expressions.dart'; 10 import '../constants/expressions.dart';
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 import '../util/util.dart'; 49 import '../util/util.dart';
50 import '../universe/universe.dart' show CallStructure; 50 import '../universe/universe.dart' show CallStructure;
51 51
52 import 'access_semantics.dart'; 52 import 'access_semantics.dart';
53 import 'class_members.dart' show MembersCreator; 53 import 'class_members.dart' show MembersCreator;
54 import 'enum_creator.dart'; 54 import 'enum_creator.dart';
55 import 'operators.dart'; 55 import 'operators.dart';
56 import 'secret_tree_element.dart' show getTreeElement, setTreeElement; 56 import 'secret_tree_element.dart' show getTreeElement, setTreeElement;
57 import 'send_structure.dart'; 57 import 'send_structure.dart';
58 58
59 part 'class_hierarchy.dart';
60 part 'constructors.dart';
61 part 'label_scope.dart';
59 part 'members.dart'; 62 part 'members.dart';
60 part 'registry.dart'; 63 part 'registry.dart';
64 part 'resolution_common.dart';
65 part 'resolution_result.dart';
61 part 'scope.dart'; 66 part 'scope.dart';
62 part 'signatures.dart'; 67 part 'signatures.dart';
68 part 'tree_elements.dart';
69 part 'typedefs.dart';
70 part 'type_resolver.dart';
71 part 'variables.dart';
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/resolution/members.dart ('k') | pkg/compiler/lib/src/resolution/resolution_common.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698