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

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

Issue 1394063004: Use common.dart to re-export commonly used entities. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 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 '../constants/expressions.dart'; 8 import '../constants/expressions.dart';
8 import '../dart_types.dart'; 9 import '../dart_types.dart';
9 import '../diagnostics/spannable.dart' show
10 Spannable,
11 SpannableAssertionFailure;
12 import '../tree/tree.dart'; 10 import '../tree/tree.dart';
13 import '../elements/elements.dart'; 11 import '../elements/elements.dart';
14 import '../universe/call_structure.dart' show 12 import '../universe/call_structure.dart' show
15 CallStructure; 13 CallStructure;
16 import '../universe/selector.dart' show 14 import '../universe/selector.dart' show
17 Selector; 15 Selector;
18 16
19 import 'operators.dart'; 17 import 'operators.dart';
20 import 'send_resolver.dart'; 18 import 'send_resolver.dart';
21 import 'send_structure.dart'; 19 import 'send_structure.dart';
(...skipping 5800 matching lines...) Expand 10 before | Expand all | Expand 10 after
5822 /// C() : this._(42); 5820 /// C() : this._(42);
5823 /// } 5821 /// }
5824 /// 5822 ///
5825 R errorUnresolvedThisConstructorInvoke( 5823 R errorUnresolvedThisConstructorInvoke(
5826 Send node, 5824 Send node,
5827 Element element, 5825 Element element,
5828 NodeList arguments, 5826 NodeList arguments,
5829 Selector selector, 5827 Selector selector,
5830 A arg); 5828 A arg);
5831 } 5829 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/resolution/secret_tree_element.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