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

Side by Side Diff: pkg/compiler/lib/src/resolution/send_structure.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
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 dart2js.resolution.send_structure; 5 library dart2js.resolution.send_structure;
6 6
7 import '../common.dart'; 7 import '../common.dart';
8 import '../constants/expressions.dart'; 8 import '../constants/expressions.dart';
9 import '../dart_types.dart'; 9 import '../elements/resolution_types.dart';
10 import '../elements/elements.dart'; 10 import '../elements/elements.dart';
11 import '../resolution/tree_elements.dart' show TreeElements; 11 import '../resolution/tree_elements.dart' show TreeElements;
12 import '../tree/tree.dart'; 12 import '../tree/tree.dart';
13 import '../universe/call_structure.dart' show CallStructure; 13 import '../universe/call_structure.dart' show CallStructure;
14 import '../universe/selector.dart' show Selector; 14 import '../universe/selector.dart' show Selector;
15 import 'access_semantics.dart'; 15 import 'access_semantics.dart';
16 import 'operators.dart'; 16 import 'operators.dart';
17 import 'semantic_visitor.dart'; 17 import 'semantic_visitor.dart';
18 18
19 /// Interface for the structure of the semantics of a [Send] or [NewExpression] 19 /// Interface for the structure of the semantics of a [Send] or [NewExpression]
(...skipping 2493 matching lines...) Expand 10 before | Expand all | Expand 10 after
2513 ThisConstructorInvokeStructure( 2513 ThisConstructorInvokeStructure(
2514 this.node, this.constructor, this.callStructure); 2514 this.node, this.constructor, this.callStructure);
2515 2515
2516 R dispatch(SemanticDeclarationVisitor<R, A> visitor, A arg) { 2516 R dispatch(SemanticDeclarationVisitor<R, A> visitor, A arg) {
2517 return visitor.visitThisConstructorInvoke( 2517 return visitor.visitThisConstructorInvoke(
2518 node, constructor, node.argumentsNode, callStructure, arg); 2518 node, constructor, node.argumentsNode, callStructure, arg);
2519 } 2519 }
2520 2520
2521 bool get isConstructorInvoke => true; 2521 bool get isConstructorInvoke => true;
2522 } 2522 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/resolution/send_resolver.dart ('k') | pkg/compiler/lib/src/resolution/signatures.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698