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

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

Issue 2606253002: Move dart_types to elements/resolution_types (Closed)
Patch Set: Created 3 years, 11 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 | « pkg/compiler/lib/src/kernel/error.dart ('k') | pkg/compiler/lib/src/kernel/kernel_visitor.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) 2016, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2016, 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.md file. 3 // BSD-style license that can be found in the LICENSE.md file.
4 4
5 import 'dart:async'; 5 import 'dart:async';
6 import 'dart:collection' show Queue; 6 import 'dart:collection' show Queue;
7 7
8 import 'package:kernel/ast.dart' as ir; 8 import 'package:kernel/ast.dart' as ir;
9 import 'package:kernel/verifier.dart' show CheckParentPointers; 9 import 'package:kernel/verifier.dart' show CheckParentPointers;
10 10
11 import '../common.dart'; 11 import '../common.dart';
12 import '../common/names.dart'; 12 import '../common/names.dart';
13 import '../compiler.dart' show Compiler; 13 import '../compiler.dart' show Compiler;
14 import '../constants/expressions.dart' 14 import '../constants/expressions.dart'
15 show ConstantExpression, TypeConstantExpression; 15 show ConstantExpression, TypeConstantExpression;
16 import '../dart_types.dart' 16 import '../elements/resolution_types.dart'
17 show DartType, FunctionType, InterfaceType, TypeKind, TypeVariableType; 17 show DartType, FunctionType, InterfaceType, TypeKind, TypeVariableType;
18 import '../diagnostics/messages.dart' show MessageKind; 18 import '../diagnostics/messages.dart' show MessageKind;
19 import '../diagnostics/spannable.dart' show Spannable; 19 import '../diagnostics/spannable.dart' show Spannable;
20 import '../elements/elements.dart' 20 import '../elements/elements.dart'
21 show 21 show
22 ClassElement, 22 ClassElement,
23 ConstructorElement, 23 ConstructorElement,
24 Element, 24 Element,
25 ExportElement, 25 ExportElement,
26 FieldElement, 26 FieldElement,
(...skipping 733 matching lines...) Expand 10 before | Expand all | Expand 10 after
760 } 760 }
761 761
762 class ConstructorTarget { 762 class ConstructorTarget {
763 final ConstructorElement element; 763 final ConstructorElement element;
764 final DartType type; 764 final DartType type;
765 765
766 ConstructorTarget(this.element, this.type); 766 ConstructorTarget(this.element, this.type);
767 767
768 String toString() => "ConstructorTarget($element, $type)"; 768 String toString() => "ConstructorTarget($element, $type)";
769 } 769 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/kernel/error.dart ('k') | pkg/compiler/lib/src/kernel/kernel_visitor.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698