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

Side by Side Diff: pkg/compiler/lib/src/elements/elements.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
« no previous file with comments | « pkg/compiler/lib/src/dump_info.dart ('k') | pkg/compiler/lib/src/elements/modelx.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 elements; 5 library elements;
6 6
7 import '../compiler.dart' show 7 import '../compiler.dart' show
8 Compiler, 8 Compiler,
9 isPrivateName; 9 isPrivateName;
10 import '../constants/constructors.dart'; 10 import '../constants/constructors.dart';
11 import '../constants/expressions.dart'; 11 import '../constants/expressions.dart';
12 import '../dart_types.dart'; 12 import '../dart_types.dart';
13 import '../diagnostic_listener.dart'; 13 import '../diagnostics/diagnostic_listener.dart';
14 import '../diagnostics/messages.dart' show MessageKind;
14 import '../diagnostics/source_span.dart' show 15 import '../diagnostics/source_span.dart' show
15 SourceSpan; 16 SourceSpan;
16 import '../diagnostics/spannable.dart' show 17 import '../diagnostics/spannable.dart' show
17 Spannable; 18 Spannable;
18 import '../messages.dart' show MessageKind;
19 import '../resolution/resolution.dart'; 19 import '../resolution/resolution.dart';
20 import '../ordered_typeset.dart' show OrderedTypeSet; 20 import '../ordered_typeset.dart' show OrderedTypeSet;
21 import '../scanner/scannerlib.dart' show 21 import '../scanner/scannerlib.dart' show
22 Token, 22 Token,
23 isUserDefinableOperator, 23 isUserDefinableOperator,
24 isMinusOperator; 24 isMinusOperator;
25 import '../script.dart'; 25 import '../script.dart';
26 import '../tree/tree.dart'; 26 import '../tree/tree.dart';
27 import '../util/util.dart'; 27 import '../util/util.dart';
28 28
(...skipping 1619 matching lines...) Expand 10 before | Expand all | Expand 10 after
1648 bool get isDeclaredByField; 1648 bool get isDeclaredByField;
1649 1649
1650 /// Returns `true` if this member is abstract. 1650 /// Returns `true` if this member is abstract.
1651 bool get isAbstract; 1651 bool get isAbstract;
1652 1652
1653 /// If abstract, [implementation] points to the overridden concrete member, 1653 /// If abstract, [implementation] points to the overridden concrete member,
1654 /// if any. Otherwise [implementation] points to the member itself. 1654 /// if any. Otherwise [implementation] points to the member itself.
1655 Member get implementation; 1655 Member get implementation;
1656 } 1656 }
1657 1657
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/dump_info.dart ('k') | pkg/compiler/lib/src/elements/modelx.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698