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

Side by Side Diff: pkg/compiler/lib/src/kernel/kernel_visitor.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/kernel.dart ('k') | pkg/compiler/lib/src/kernel/unresolved.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 'package:kernel/ast.dart' as ir; 5 import 'package:kernel/ast.dart' as ir;
6 import 'package:kernel/frontend/accessors.dart' 6 import 'package:kernel/frontend/accessors.dart'
7 show 7 show
8 Accessor, 8 Accessor,
9 IndexAccessor, 9 IndexAccessor,
10 NullAwarePropertyAccessor, 10 NullAwarePropertyAccessor,
(...skipping 13 matching lines...) Expand all
24 import '../common.dart'; 24 import '../common.dart';
25 import '../common/names.dart'; 25 import '../common/names.dart';
26 import '../constants/expressions.dart' 26 import '../constants/expressions.dart'
27 show 27 show
28 BoolFromEnvironmentConstantExpression, 28 BoolFromEnvironmentConstantExpression,
29 ConstantExpression, 29 ConstantExpression,
30 ConstructedConstantExpression, 30 ConstructedConstantExpression,
31 IntFromEnvironmentConstantExpression, 31 IntFromEnvironmentConstantExpression,
32 StringFromEnvironmentConstantExpression, 32 StringFromEnvironmentConstantExpression,
33 TypeConstantExpression; 33 TypeConstantExpression;
34 import '../dart_types.dart' show DartType, InterfaceType; 34 import '../elements/resolution_types.dart' show DartType, InterfaceType;
35 import '../diagnostics/spannable.dart' show Spannable; 35 import '../diagnostics/spannable.dart' show Spannable;
36 import '../elements/elements.dart' 36 import '../elements/elements.dart'
37 show 37 show
38 AstElement, 38 AstElement,
39 AsyncMarker, 39 AsyncMarker,
40 ClassElement, 40 ClassElement,
41 ConstructorElement, 41 ConstructorElement,
42 Element, 42 Element,
43 FieldElement, 43 FieldElement,
44 FunctionElement, 44 FunctionElement,
(...skipping 2802 matching lines...) Expand 10 before | Expand all | Expand 10 after
2847 : this(null, true, node, initializers); 2847 : this(null, true, node, initializers);
2848 2848
2849 accept(ir.Visitor v) => throw "unsupported"; 2849 accept(ir.Visitor v) => throw "unsupported";
2850 2850
2851 visitChildren(ir.Visitor v) => throw "unsupported"; 2851 visitChildren(ir.Visitor v) => throw "unsupported";
2852 2852
2853 String toString() { 2853 String toString() {
2854 return "IrFunction($kind, $isConstructor, $node, $initializers)"; 2854 return "IrFunction($kind, $isConstructor, $node, $initializers)";
2855 } 2855 }
2856 } 2856 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/kernel/kernel.dart ('k') | pkg/compiler/lib/src/kernel/unresolved.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698