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

Side by Side Diff: pkg/compiler/lib/src/resolution/semantic_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
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.semantics_visitor; 5 library dart2js.semantics_visitor;
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 '../tree/tree.dart'; 11 import '../tree/tree.dart';
12 import '../universe/call_structure.dart' show CallStructure; 12 import '../universe/call_structure.dart' show CallStructure;
13 import '../universe/selector.dart' show Selector; 13 import '../universe/selector.dart' show Selector;
14 import 'operators.dart'; 14 import 'operators.dart';
15 import 'send_resolver.dart'; 15 import 'send_resolver.dart';
16 import 'send_structure.dart'; 16 import 'send_structure.dart';
17 import 'tree_elements.dart'; 17 import 'tree_elements.dart';
18 18
19 part 'semantic_visitor_mixins.dart'; 19 part 'semantic_visitor_mixins.dart';
(...skipping 4686 matching lines...) Expand 10 before | Expand all | Expand 10 after
4706 /// 4706 ///
4707 /// For instance `this._(42)` in: 4707 /// For instance `this._(42)` in:
4708 /// 4708 ///
4709 /// class C { 4709 /// class C {
4710 /// C() : this._(42); 4710 /// C() : this._(42);
4711 /// } 4711 /// }
4712 /// 4712 ///
4713 R errorUnresolvedThisConstructorInvoke( 4713 R errorUnresolvedThisConstructorInvoke(
4714 Send node, Element element, NodeList arguments, Selector selector, A arg); 4714 Send node, Element element, NodeList arguments, Selector selector, A arg);
4715 } 4715 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/resolution/scope.dart ('k') | pkg/compiler/lib/src/resolution/send_resolver.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698