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

Side by Side Diff: pkg/compiler/lib/src/kernel/unresolved.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_visitor.dart ('k') | pkg/compiler/lib/src/mirrors_used.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 6
7 import "../dart_types.dart" show DartType, InterfaceType; 7 import "../elements/resolution_types.dart" show DartType, InterfaceType;
8 import "../elements/elements.dart" 8 import "../elements/elements.dart"
9 show 9 show
10 AstElement, 10 AstElement,
11 ConstructorElement, 11 ConstructorElement,
12 Element, 12 Element,
13 ErroneousElement, 13 ErroneousElement,
14 FunctionElement, 14 FunctionElement,
15 MethodElement; 15 MethodElement;
16 import "../resolution/operators.dart" 16 import "../resolution/operators.dart"
17 show AssignmentOperator, BinaryOperator, IncDecOperator, UnaryOperator; 17 show AssignmentOperator, BinaryOperator, IncDecOperator, UnaryOperator;
(...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after
566 return buildUnresolvedSuperIndexAccessor(index, element) 566 return buildUnresolvedSuperIndexAccessor(index, element)
567 .buildNullAwareAssignment(visitForValue(rhs), null); 567 .buildNullAwareAssignment(visitForValue(rhs), null);
568 } 568 }
569 569
570 ir.Expression visitUnresolvedSuperSet( 570 ir.Expression visitUnresolvedSuperSet(
571 Send node, Element element, Node rhs, _) { 571 Send node, Element element, Node rhs, _) {
572 return buildThrowUnresolvedSuperSetter( 572 return buildThrowUnresolvedSuperSetter(
573 '${node.selector}', visitForValue(rhs)); 573 '${node.selector}', visitForValue(rhs));
574 } 574 }
575 } 575 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/kernel/kernel_visitor.dart ('k') | pkg/compiler/lib/src/mirrors_used.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698