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

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

Issue 2221893003: pkg/compiler: fix imports (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 4 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 '../dart_types.dart';
10 import '../elements/elements.dart';
10 import '../tree/tree.dart'; 11 import '../tree/tree.dart';
11 import '../elements/elements.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
15 import 'operators.dart'; 14 import 'operators.dart';
16 import 'send_resolver.dart'; 15 import 'send_resolver.dart';
17 import 'send_structure.dart'; 16 import 'send_structure.dart';
18 import 'tree_elements.dart'; 17 import 'tree_elements.dart';
19 18
20 part 'semantic_visitor_mixins.dart'; 19 part 'semantic_visitor_mixins.dart';
21 20
22 /// Mixin that couples a [SendResolverMixin] to a [SemanticSendVisitor] in a 21 /// Mixin that couples a [SendResolverMixin] to a [SemanticSendVisitor] in a
23 /// [Visitor]. 22 /// [Visitor].
24 abstract class SemanticSendResolvedMixin<R, A> implements Visitor<R> { 23 abstract class SemanticSendResolvedMixin<R, A> implements Visitor<R> {
(...skipping 4682 matching lines...) Expand 10 before | Expand all | Expand 10 after
4707 /// 4706 ///
4708 /// For instance `this._(42)` in: 4707 /// For instance `this._(42)` in:
4709 /// 4708 ///
4710 /// class C { 4709 /// class C {
4711 /// C() : this._(42); 4710 /// C() : this._(42);
4712 /// } 4711 /// }
4713 /// 4712 ///
4714 R errorUnresolvedThisConstructorInvoke( 4713 R errorUnresolvedThisConstructorInvoke(
4715 Send node, Element element, NodeList arguments, Selector selector, A arg); 4714 Send node, Element element, NodeList arguments, Selector selector, A arg);
4716 } 4715 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/resolution/registry.dart ('k') | pkg/compiler/lib/src/resolution/typedefs.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698