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

Side by Side Diff: pkg/compiler/lib/src/resolution/semantic_visitor.dart

Issue 2860753005: Make elements/names.dart its own library (Closed)
Patch Set: Created 3 years, 7 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 '../elements/elements.dart'; 9 import '../elements/elements.dart';
10 import '../elements/names.dart';
10 import '../elements/operators.dart'; 11 import '../elements/operators.dart';
11 import '../elements/resolution_types.dart'; 12 import '../elements/resolution_types.dart';
12 import '../tree/tree.dart'; 13 import '../tree/tree.dart';
13 import '../universe/call_structure.dart' show CallStructure; 14 import '../universe/call_structure.dart' show CallStructure;
14 import '../universe/selector.dart' show Selector; 15 import '../universe/selector.dart' show Selector;
15 import 'send_resolver.dart'; 16 import 'send_resolver.dart';
16 import 'send_structure.dart'; 17 import 'send_structure.dart';
17 import 'tree_elements.dart'; 18 import 'tree_elements.dart';
18 19
19 part 'semantic_visitor_mixins.dart'; 20 part 'semantic_visitor_mixins.dart';
(...skipping 4691 matching lines...) Expand 10 before | Expand all | Expand 10 after
4711 /// 4712 ///
4712 /// For instance `this._(42)` in: 4713 /// For instance `this._(42)` in:
4713 /// 4714 ///
4714 /// class C { 4715 /// class C {
4715 /// C() : this._(42); 4716 /// C() : this._(42);
4716 /// } 4717 /// }
4717 /// 4718 ///
4718 R errorUnresolvedThisConstructorInvoke( 4719 R errorUnresolvedThisConstructorInvoke(
4719 Send node, Element element, NodeList arguments, Selector selector, A arg); 4720 Send node, Element element, NodeList arguments, Selector selector, A arg);
4720 } 4721 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/resolution/members.dart ('k') | pkg/compiler/lib/src/resolution/signatures.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698