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

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

Issue 1348063002: Make the universe parts into small libraries. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 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 '../constants/expressions.dart'; 7 import '../constants/expressions.dart';
8 import '../dart_types.dart'; 8 import '../dart_types.dart';
9 import '../diagnostics/spannable.dart' show 9 import '../diagnostics/spannable.dart' show
10 Spannable, 10 Spannable,
11 SpannableAssertionFailure; 11 SpannableAssertionFailure;
12 import '../tree/tree.dart'; 12 import '../tree/tree.dart';
13 import '../elements/elements.dart'; 13 import '../elements/elements.dart';
14 import '../universe/universe.dart'; 14 import '../universe/call_structure.dart' show
15 CallStructure;
16 import '../universe/selector.dart' show
17 Selector;
15 18
16 import 'operators.dart'; 19 import 'operators.dart';
17 import 'send_resolver.dart'; 20 import 'send_resolver.dart';
18 import 'send_structure.dart'; 21 import 'send_structure.dart';
19 import 'tree_elements.dart'; 22 import 'tree_elements.dart';
20 23
21 part 'semantic_visitor_mixins.dart'; 24 part 'semantic_visitor_mixins.dart';
22 25
23 /// Mixin that couples a [SendResolverMixin] to a [SemanticSendVisitor] in a 26 /// Mixin that couples a [SendResolverMixin] to a [SemanticSendVisitor] in a
24 /// [Visitor]. 27 /// [Visitor].
(...skipping 5820 matching lines...) Expand 10 before | Expand all | Expand 10 after
5845 /// C() : this._(42); 5848 /// C() : this._(42);
5846 /// } 5849 /// }
5847 /// 5850 ///
5848 R errorUnresolvedThisConstructorInvoke( 5851 R errorUnresolvedThisConstructorInvoke(
5849 Send node, 5852 Send node,
5850 Element element, 5853 Element element,
5851 NodeList arguments, 5854 NodeList arguments,
5852 Selector selector, 5855 Selector selector,
5853 A arg); 5856 A arg);
5854 } 5857 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/resolution/resolution_result.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