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

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

Issue 1278503004: Revert "Move dart2jslib parts into separate libraries." (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 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 '../constants/expressions.dart'; 7 import '../constants/expressions.dart';
8 import '../dart2jslib.dart' show invariant; 8 import '../dart2jslib.dart' show invariant, MessageKind;
9 import '../dart_types.dart'; 9 import '../dart_types.dart';
10 import '../elements/elements.dart'; 10 import '../elements/elements.dart';
11 import '../messages.dart' show MessageKind;
12 import '../tree/tree.dart'; 11 import '../tree/tree.dart';
13 import '../universe/universe.dart'; 12 import '../universe/universe.dart';
14 import '../util/util.dart' show Spannable, SpannableAssertionFailure; 13 import '../util/util.dart' show Spannable, SpannableAssertionFailure;
15 import 'access_semantics.dart'; 14 import 'access_semantics.dart';
16 import 'operators.dart'; 15 import 'operators.dart';
17 import 'resolution.dart'; 16 import 'resolution.dart';
18 import 'send_structure.dart'; 17 import 'send_structure.dart';
19 18
20 part 'semantic_visitor_mixins.dart'; 19 part 'semantic_visitor_mixins.dart';
21 part 'send_resolver.dart'; 20 part 'send_resolver.dart';
(...skipping 5133 matching lines...) Expand 10 before | Expand all | Expand 10 after
5155 /// C() : this._(42); 5154 /// C() : this._(42);
5156 /// } 5155 /// }
5157 /// 5156 ///
5158 R errorUnresolvedThisConstructorInvoke( 5157 R errorUnresolvedThisConstructorInvoke(
5159 Send node, 5158 Send node,
5160 Element element, 5159 Element element,
5161 NodeList arguments, 5160 NodeList arguments,
5162 Selector selector, 5161 Selector selector,
5163 A arg); 5162 A arg);
5164 } 5163 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/resolution/secret_tree_element.dart ('k') | pkg/compiler/lib/src/resolved_visitor.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698