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

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

Issue 1286143003: Move diagnostic_listener.dart and messages.dart to the diagnostics folder (Closed) Base URL: https://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 '../dart_types.dart'; 8 import '../dart_types.dart';
9 import '../diagnostics/invariant.dart' show 9 import '../diagnostics/invariant.dart' show
10 invariant; 10 invariant;
11 import '../diagnostics/messages.dart' show
12 MessageKind;
11 import '../diagnostics/spannable.dart' show 13 import '../diagnostics/spannable.dart' show
12 Spannable, 14 Spannable,
13 SpannableAssertionFailure; 15 SpannableAssertionFailure;
14 import '../elements/elements.dart'; 16 import '../elements/elements.dart';
15 import '../messages.dart' show
16 MessageKind;
17 import '../tree/tree.dart'; 17 import '../tree/tree.dart';
18 import '../universe/universe.dart'; 18 import '../universe/universe.dart';
19 19
20 import 'access_semantics.dart'; 20 import 'access_semantics.dart';
21 import 'operators.dart'; 21 import 'operators.dart';
22 import 'resolution.dart'; 22 import 'resolution.dart';
23 import 'send_structure.dart'; 23 import 'send_structure.dart';
24 24
25 part 'semantic_visitor_mixins.dart'; 25 part 'semantic_visitor_mixins.dart';
26 part 'send_resolver.dart'; 26 part 'send_resolver.dart';
(...skipping 5133 matching lines...) Expand 10 before | Expand all | Expand 10 after
5160 /// C() : this._(42); 5160 /// C() : this._(42);
5161 /// } 5161 /// }
5162 /// 5162 ///
5163 R errorUnresolvedThisConstructorInvoke( 5163 R errorUnresolvedThisConstructorInvoke(
5164 Send node, 5164 Send node,
5165 Element element, 5165 Element element,
5166 NodeList arguments, 5166 NodeList arguments,
5167 Selector selector, 5167 Selector selector,
5168 A arg); 5168 A arg);
5169 } 5169 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/resolution/resolution.dart ('k') | pkg/compiler/lib/src/scanner/scannerlib.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698