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

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

Issue 1149973004: Start to compute SendStructure in resolution. (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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 VariableElementX, 45 VariableElementX,
46 VariableList; 46 VariableList;
47 47
48 import '../ordered_typeset.dart' show OrderedTypeSet, OrderedTypeSetBuilder; 48 import '../ordered_typeset.dart' show OrderedTypeSet, OrderedTypeSetBuilder;
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 'class_members.dart' show MembersCreator; 52 import 'class_members.dart' show MembersCreator;
53 import 'enum_creator.dart'; 53 import 'enum_creator.dart';
54 import 'secret_tree_element.dart' show getTreeElement, setTreeElement; 54 import 'secret_tree_element.dart' show getTreeElement, setTreeElement;
55 import 'send_structure.dart';
55 56
56 part 'members.dart'; 57 part 'members.dart';
57 part 'registry.dart'; 58 part 'registry.dart';
58 part 'scope.dart'; 59 part 'scope.dart';
59 part 'signatures.dart'; 60 part 'signatures.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698