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

Side by Side Diff: sdk/lib/_internal/compiler/implementation/resolution/resolution.dart

Issue 52263003: Implement least upper bound. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated cf. comments. Created 7 years 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 | Annotate | Revision Log
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 '../dart2jslib.dart' hide Diagnostic; 9 import '../dart2jslib.dart' hide Diagnostic;
10 import '../dart_types.dart'; 10 import '../dart_types.dart';
11 import '../../compiler.dart' show Diagnostic; 11 import '../../compiler.dart' show Diagnostic;
12 import '../tree/tree.dart'; 12 import '../tree/tree.dart';
13 import '../elements/elements.dart'; 13 import '../elements/elements.dart';
14 import '../elements/modelx.dart' 14 import '../elements/modelx.dart'
15 show FunctionElementX, 15 show BaseClassElementX,
16 FunctionElementX,
16 ErroneousElementX, 17 ErroneousElementX,
17 VariableElementX, 18 VariableElementX,
18 FieldParameterElementX, 19 FieldParameterElementX,
19 VariableListElementX, 20 VariableListElementX,
20 FunctionSignatureX, 21 FunctionSignatureX,
21 LabelElementX, 22 LabelElementX,
22 TargetElementX, 23 TargetElementX,
23 MixinApplicationElementX, 24 MixinApplicationElementX,
24 TypedefElementX, 25 TypedefElementX,
25 SynthesizedConstructorElementX; 26 SynthesizedConstructorElementX;
26 import '../util/util.dart'; 27 import '../util/util.dart';
27 import '../scanner/scannerlib.dart' show PartialMetadataAnnotation; 28 import '../scanner/scannerlib.dart' show PartialMetadataAnnotation;
28 29
29 import 'secret_tree_element.dart' show getTreeElement, setTreeElement; 30 import 'secret_tree_element.dart' show getTreeElement, setTreeElement;
31 import '../ordered_typeset.dart' show OrderedTypeSet, OrderedTypeSetBuilder;
30 32
31 part 'members.dart'; 33 part 'members.dart';
32 part 'scope.dart'; 34 part 'scope.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698